home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global ktout
- set ktout to 0
- set the keyDownScript to "volume"
- preLoadCast(31, 45)
- preLoadCast(2, 4)
- end
-
- on volume
- if the key = "2" then
- set the soundLevel to the soundLevel + 1
- end if
- if the key = "1" then
- set the soundLevel to the soundLevel - 1
- end if
- end
-
- on kroll
- if rollOver(15) then
- go("deviceL")
- exit
- end if
- if rollOver(16) then
- go("deviceM")
- exit
- end if
- if rollOver(17) then
- go("deviceR")
- exit
- end if
- end
-
- on devLRoll
- if not rollOver(15) then
- sound stop 2
- set the volume of sound 1 to 255
- go("mflash2")
- exit
- end if
- if the mouseDown then
- puppetSound(2, cast "clik")
- updateStage()
- go(1, "DevL00.dir")
- exit
- end if
- end
-
- on devMRoll
- if not rollOver(16) then
- sound stop 2
- set the volume of sound 1 to 255
- go("mflash2")
- exit
- end if
- if the mouseDown then
- preLoadCast(101)
- puppetSound(2, cast "clik")
- updateStage()
- go("goM")
- exit
- end if
- end
-
- on devRRoll
- if not rollOver(17) then
- sound stop 2
- set the volume of sound 1 to 255
- go("mflash2")
- exit
- end if
- if the mouseDown then
- puppetSound(2, cast "clik")
- updateStage()
- go(1, "DevR00.dir")
- exit
- end if
- end
-