home *** CD-ROM | disk | FTP | other *** search
- property whichanswer, S, ro, m
- global answered
-
- on getPropertyDescriptionList
- description = [:]
- addProp(description, #whichanswer, [#default: "A", #format: #text, #comment: "whichanswer"])
- return description
- end
-
- on beginSprite me
- S = me.spriteNum
- m = the memberNum of sprite S
- ro = member("catbuttonro.TGA")
- end
-
- on mouseEnter me
- if answered then
- pass()
- else
- rocursor()
- set the memberNum of sprite S to ro.memberNum
- end if
- end
-
- on mouseLeave me
- if answered then
- pass()
- else
- regcursor()
- set the memberNum of sprite S to m
- end if
- end
-
- on mouseUp me
- global answered
- if answered then
- pass()
- else
- answered = 1
- updateStage()
- regcursor()
- answer(whichanswer)
- end if
- end
-
- on reset me
- set the memberNum of sprite S to m
- end
-