home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 21
/
cdromtoday-21.iso
/
pc
/
multbird
/
helpme.dir
/
00008_Script_8
< prev
next >
Wrap
Text File
|
1995-06-27
|
2KB
|
81 lines
on startMovie
global downSprite
------------------------------------------------------------------------
-- This de-activates the timeout script
------------------------------------------------------------------------
set the timeoutScript to "doTimeOut()"
------------------------------------------------------------------------
------------------------------------------------------------------------
-- This is the channel where the down buttons will activate
------------------------------------------------------------------------
set downSprite = 47
puppetSprite downSprite,TRUE
preloadCast "backDown"
preloadCast "back"
-----------------------------------------------------------------------
cursor -1
end startMovie
on stopMovie
global downSprite
puppetSprite downSprite,FALSE
unloadCast "backDown"
unloadCast "back"
end stopMovie
------------------------------------------------------------------------
-- CODE FOR DOWN BUTTONS
------------------------------------------------------------------------
on questionDown
global downSprite
sound stop 1
puppetSound "back"
set the castNum of sprite downSprite = the number of cast "?Down"
set the loch of sprite downSprite = 46
set the locv of sprite downSprite = 459
updateStage
repeat while soundBusy(1)
--
end repeat
puppetSound 0
set the loch of sprite downSprite = -100
set the locv of sprite downSprite = -100
updateStage
end questionDown
on backDown
global downSprite
sound stop 1
puppetSound "back"
set the castNum of sprite downSprite = the number of cast "backDown"
set the loch of sprite downSprite = 619
set the locv of sprite downSprite = 459
updateStage
repeat while soundBusy(1)
--
end repeat
puppetSound 0
set the loch of sprite downSprite = -100
set the locv of sprite downSprite = -100
updateStage
end backDown
------------------------------------------------------------------------
------------------------------------------------------------------------
-- CODE FOR TIMEOUT SCRIPT
------------------------------------------------------------------------
on doTimeOut
set the timeoUtScript = EMPTY
go "start" of movie "birdDemo.dir"
end doTimeOut
------------------------------------------------------------------------