home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 21
/
cdromtoday-21.iso
/
pc
/
multbird
/
wait.dir
/
00006_Script_6
< prev
next >
Wrap
Text File
|
1995-06-27
|
2KB
|
85 lines
on startMovie
global downSprite
set the mouseDownScript to EMPTY
set the timeoutScript to "doTimeOut"
set the timeoutLength to 60 * 60
set downSprite =48
puppetSprite downSprite,TRUE
end startMovie
on stopMovie
set the timeOUtScript to EMPTY
unload
end stopMovie
on playPuppet soundIn
puppetSound soundIn
updateStage
repeat while soundBusy(1)
--
end repeat
puppetSound 0
end
on backDown
global downSprite
sound stop 1
puppetSound "back"
set the castNum of sprite downSprite = the number of cast "returnDown"
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
------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- THIS CODE IS FOR THE REAR WINDOW XOBJECT
-- DO NOT TOUCH
--------------------------------------------------------------------------------
-- RearWindow XObject
-- by David Jackson-Shields
-- vers. 1.0.2 (10/11/93)
--
-- ⌐ 1992-94 by Macromedia, Inc. and David Jackson-Shields
-- All Rights Reserved
on releaseRearWindow
if not(the machineType=256) then
global rwObj
if objectP( rwObj ) then
rwObj( mDispose )
end if
-- You must Close the Xlib if you do not have
-- the XCOD resource installed in the movie with ResEdit:
CloseXLib
end if
end releaseRearWindow
--------------------------------------------------------------------------------