home *** CD-ROM | disk | FTP | other *** search
- property S, locy, origin
- global movefactor
-
- on getPropertyDescriptionList
- description = [:]
- addProp(description, #locy, [#default: 1, #format: #integer, #comment: "locy"])
- return description
- end
-
- on beginSprite me
- S = me.spriteNum
- origin = the locV of sprite S
- end
-
- on slideup me
- set the locV of sprite S to origin
- y = origin
- thestop = locy + movefactor
- repeat while y > thestop
- y = y - movefactor
- set the locV of sprite S to y
- updateStage()
- end repeat
- end
-
- on slidedown me
- y = the locV of sprite S
- repeat while y < origin
- y = y + movefactor
- set the locV of sprite S to y
- updateStage()
- end repeat
- end
-
- on transon me
- set the locV of sprite S to locy
- puppetTransition(27, 3, 1, 1)
- end
-
- on transoff me
- set the locV of sprite S to origin
- puppetTransition(27, 3, 1, 1)
- end
-