home *** CD-ROM | disk | FTP | other *** search
/ PowerPlay 1997 March / PowerPlay0397.iso / T-ONLINE / DECODER / FORMULAR.DIR / 00010_Script_10 < prev    next >
Text File  |  1997-01-08  |  1KB  |  38 lines

  1. on ⁿbertrag6
  2.   put empty into field "produkt6"
  3.   
  4.   set x=the number of chars in field "stk6"
  5.   set y=5-x
  6.   repeat with i=1 to y 
  7.     put " " after field "produkt6"
  8.   end repeat
  9.   put field "stk6" after field "produkt6"
  10.   
  11.   put "  " after field "produkt6"
  12.   
  13.   put "BTX-Tuner fⁿr Windows" after field "produkt6"
  14.   
  15.   repeat while the number of chars in field "produkt6" <35
  16.     put " " after field "produkt6"
  17.   end repeat
  18.   
  19.   put "(5867)    " after field "produkt6"
  20.   put "   29,00 DM" after field "produkt6"
  21.   
  22.   
  23.   if the number of chars in field "gesmtprx6"=7 then
  24.     put "       " & field "gesmtprx6" after field "produkt6"
  25.   end if
  26.   if the number of chars in field "gesmtprx6"=8 then
  27.     put "      " & field "gesmtprx6" after field "produkt6"
  28.   end if
  29.   if the number of chars in field "gesmtprx6"=9 then
  30.     put "     " & field "gesmtprx6" after field "produkt6"
  31.   end if
  32.   if the number of chars in field "gesmtprx6"=10 then
  33.     put "    " & field "gesmtprx6" after field "produkt6"
  34.   end if
  35.   
  36.   set the fontSize of member "produkt6" to 10 
  37.   put field "produkt6" & return after field "bestelltext"
  38. end