home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Creative Review 35
/
Creative-Review-CD-ROM-24.iso
/
mac
/
IMAGE
/
CRMAY97.dir
/
00306_Script_306
< prev
next >
Wrap
Text File
|
1997-04-09
|
1KB
|
48 lines
on enterFrame
showObjects("1,2,3,4,5,6,7,8")
inkOut("8")
end
on exitFrame
global dest
if dest = "Film Play" then
put 1 into startFilm
set the visible of sprite 14 to true
set the movieRate of sprite 14 to 1
else
put 0 into startFilm
end if
put "none" into dest
hideObjects("17,18,19,20,21,22,46,47,48")
rollOver1("18,Forward,19,Play,20,Pause,21,Stop,22,Rewind,46,Contents,47,Help,48,Quit")
rollOverInk("8,17,none")
if ((the movieTime of sprite 14 = 0 and startFilm = 0) or (the movieTime of sprite 14 = the duration of member the memberNum of sprite 14)) then
set the movieTime of sprite 14 to 0
go to "Film"
else
go the frame
end if
end
on mouseUp
global dest
if (dest = "Contents" or dest = "Help" or dest = "Quit") then
set the movieRate of sprite 14 to 0
updateStage
unPuppet("8")
go to dest
end if
if dest = "Forward" then
set the movieRate of sprite 14 to 2
else if dest = "Play" then
set the movieRate of sprite 14 to 1
else if dest = "Stop" then
set the movieRate of sprite 14 to 0
set the movieTime of sprite 14 to 0
go to "Film"
else if dest = "Pause" then
set the movieRate of sprite 14 to 0
else if dest = "Rewind" then
set the movieRate of sprite 14 to -2
end if
end