home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DigitalVision: Cats & Dogs
/
DigitalVision: Cats & Dogs - Disc 1.iso
/
pc
/
s_saver
/
dv_onlin.exe
/
dv_onlin.dcr
/
Internal_28_changevolume.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
2000-07-28
|
354 b
|
27 lines
property pSprite
global gsound
on beginSprite me
pSprite = sprite(me.spriteNum)
pSprite.member = "v" & gsound
end
on mouseEnter me
thecursor(#roll)
end
on mouseLeave me
thecursor(#norm)
end
on mouseUp me
t = integer(gsound)
t = t + 1
if t > 7 then
t = 0
end if
gsound = t
changesoundmode()
pSprite.member = "v" & gsound
end