home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- if rollOver(1) then
- repeat with x = 3 to 8
- puppetSprite(x, 1)
- set possibleColor to random(255)
- set the foreColor of sprite x to possibleColor
- updateStage()
- end repeat
- end if
- repeat with x = 3 to 8
- puppetSprite(x, 1)
- set possibleColor to random(255)
- if possibleColor = 47 then
- set the foreColor of sprite x to possibleColor
- else
- if possibleColor = 17 then
- set the foreColor of sprite x to possibleColor
- else
- if possibleColor = 255 then
- set the foreColor of sprite x to possibleColor
- end if
- end if
- end if
- updateStage()
- end repeat
- repeat with y = 9 to 11
- set the locV of sprite y to the locV of sprite y + random(1)
- updateStage()
- end repeat
- end
-
- on exitFrame
- go(the frame)
- end
-