home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
LAUNCH 2
/
LAUNCH.BIN
/
mac
/
SONY
/
HIGHDES.DIR
/
00028_Script_28
< prev
next >
Wrap
Text File
|
1995-06-07
|
761b
|
32 lines
--rollover alien main
on enterframe
ALIENROLL
end
on exitframe
go the frame
end
--------
on ALIENROLL
if rollover(13) then --rollover the rectangular sprite area
if the mouseCast = the castNum of sprite 13 then --rollover the matted sprite area
set the locH of sprite(13) to (the locH of sprite(13) + 5)
updatestage
set the locH of sprite(13) to (the locH of sprite(13) - 5)
updatestage
exit
end if
else if rollover(14) then
if the mouseCast = the castNum of sprite 14 then
set the locV of sprite(14) to (the locV of sprite(14) + 5)
updatestage
set the locV of sprite(14) to (the locV of sprite(14) - 5)
updatestage
exit
end if
end if
end