home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- go(the frame)
- end
-
- on mouseDown
- pictureType()
- end
-
- on pictureType
- global oldClickon, gPrintTypeList
- repeat with channel = 2 to 6
- if the clickOn = channel then
- puppetSound(getAt(gPrintTypeList, channel))
- set the visible of sprite (channel + 10) to 1
- updateStage()
- case channel of
- 5:
- go("CANCEL")
- 6:
- go("OK")
- otherwise:
- if oldClickon = channel then
- nothing()
- else
- set the visible of sprite (oldClickon + 10) to 0
- set oldClickon to channel
- end if
- end case
- exit repeat
- end if
- end repeat
- end
-