home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PowerPlay 1997 March
/
PowerPlay0397.iso
/
T-ONLINE
/
DECODER
/
FORMULAR.DIR
/
00064_Script_64
< prev
next >
Wrap
Text File
|
1997-01-08
|
1KB
|
71 lines
on exitFrame
if rollover(46) then
go "adr"
else if rollover(47) or rollover(48) then
go "Info"
else
nothing
end if
--Stⁿckzahlfelder/ Farbe Anzeigefelder
repeat with a = 12 to 17
if the value of field a of castlib 3 = 0 then
set the forecolor of field (a+6) to 251
set the forecolor of field (a+13) to 251
else
set the forecolor of field (a+6) to 255
set the forecolor of field (a+13) to 255
end if
end repeat
--Feldabfrage
if field "stk1" <> empty then
feld1
else
put "0,00 DM" into field (12 +6)
end if
if field "stk2" of castlib 3 <> empty then
feld2
else
put "0,00 DM" into field (13 +6)
end if
if field "stk3" <> empty then
feld3
else
put "0,00 DM" into field (14 +6)
end if
if field "stk4" <> empty then
feld4
else
put "0,00 DM" into field (15 +6)
end if
if field "stk5" <> empty then
feld5
else
put "0,00 DM" into field (16 +6)
end if
if field "stk6" <> empty then
feld6
else
put "0,00 DM" into field (17 +6)
end if
summe
go the frame
end