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

  1. on ⁿbertrag4
  2.   put empty into field "produkt4"
  3.   
  4.   set x=the number of chars in field "stk4"
  5.   set y=5-x
  6.   repeat with i=1 to y 
  7.     put " " after field "produkt4"
  8.   end repeat
  9.   put field "stk4" after field "produkt4"
  10.   
  11.   put "  " after field "produkt4"
  12.   
  13.   put "5m VerlΣngerungskabel" after field "produkt4"
  14.   
  15.   repeat while the number of chars in field "produkt4" <35
  16.     put " " after field "produkt4"
  17.   end repeat
  18.   
  19.   put "(1010)    " after field "produkt4"
  20.   put "    9,60 DM" after field "produkt4"
  21.   
  22.   
  23.   if the number of chars in field "gesmtprx4"=7 then
  24.     put "       " & field "gesmtprx4" after field "produkt4"
  25.   end if
  26.   if the number of chars in field "gesmtprx4"=8 then
  27.     put "      " & field "gesmtprx4" after field "produkt4"
  28.   end if
  29.   if the number of chars in field "gesmtprx4"=9 then
  30.     put "     " & field "gesmtprx4" after field "produkt4"
  31.   end if
  32.   if the number of chars in field "gesmtprx4"=10 then
  33.     put "    " & field "gesmtprx4" after field "produkt4"
  34.   end if
  35.   
  36.   set the fontSize of member "produkt4" to 10 
  37.   put field "produkt4" & return after field "bestelltext"
  38. end