home *** CD-ROM | disk | FTP | other *** search
- on setPuppetButtons
-
- repeat with x = 112 to 115
- set the puppet of sprite x = true
- set the visible of sprite x = false
- end repeat
-
- end setPuppetButtons
-
- --
-
- on puppetButtonsRollOver
-
- if rollOver(116) then
- set the visible of sprite 112 = true
- set the visible of sprite 113 = false
- set the visible of sprite 114 = false
- set the visible of sprite 115 = false
- else if rollOver(117) then
- set the visible of sprite 112 = false
- set the visible of sprite 113 = true
- set the visible of sprite 114 = false
- set the visible of sprite 115 = false
- else if rollOver(118) then
- set the visible of sprite 112 = false
- set the visible of sprite 113 = false
- set the visible of sprite 114 = true
- set the visible of sprite 115 = false
- else if rollOver(119) then
- set the visible of sprite 112 = false
- set the visible of sprite 113 = false
- set the visible of sprite 114 = false
- set the visible of sprite 115 = true
- else
- set the visible of sprite 112 = false
- set the visible of sprite 113 = false
- set the visible of sprite 114 = false
- set the visible of sprite 115 = false
- end if
-
- end puppetButtonsRollOver