home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-Online 1996 June
/
PCOnline_06_1996.iso
/
mrmore
/
mrmore.dir
/
00024_Script_24
< prev
next >
Wrap
Text File
|
1996-04-11
|
936b
|
36 lines
on enterFrame
set the visible of sprite 21 = false -- fⁿr Internet-Button
end
-- Einlesen der Seite
on exitFrame
global gnFirstSprite, gnLastSprite, gnHilite, glSoundList, gbSpeaker, gsThisFrame, gnMusicSprite
global gbPlayTheMusic
set gnLastSprite = gnFirstSprite
repeat while the Castnum of sprite gnLastSprite <> 0
set gnLastSprite = gnLastSprite + 1
end repeat
set gnLastSprite = gnLastSprite - 1
repeat with i = gnFirstSprite to gnLastSprite
set the puppet of sprite i = true
end repeat
set the puppet of sprite gnHilite = true
unload
if gbSpeaker = true then
StopSound(1)
set gbSpeaker = false
end if
set n = count(glSoundList)
repeat with i = 1 to n
if GetAt(glSoundList, i) = gsThisFrame then exit
end repeat
set gbSpeaker = true
append glSoundList, gsThisFrame
SafeSound(1, "mod\" & char 1 to 8 of gsThisFrame)
end