home *** CD-ROM | disk | FTP | other *** search
- property fieldName, barTop, barBottom, textTop, textBottom, textSprite, barSprite
- global gScrollChild
-
- on exitFrame me
- gScrollChild = new(script("scrollParent"), fieldName, barTop, barBottom, textTop, textBottom, textSprite, barSprite)
- end
-
- on getPropertyDescriptionList
- description = [:]
- addProp(description, #fieldName, [#default: 0, #format: #field, #comment: "fieldNameToScroll"])
- addProp(description, #barTop, [#default: 0, #format: #integer, #comment: "top locV of grabbable bar"])
- addProp(description, #barBottom, [#default: 0, #format: #integer, #comment: "bottom locV of grabbable bar"])
- addProp(description, #textTop, [#default: 0, #format: #integer, #comment: "top locV of text window"])
- addProp(description, #textBottom, [#default: 0, #format: #integer, #comment: "bottom locV of text window"])
- addProp(description, #textSprite, [#default: 0, #format: #integer, #comment: "sprite of text block to move", #range: [#min: 1, #max: 144]])
- addProp(description, #barSprite, [#default: 0, #format: #integer, #comment: "sprite of grabbable bar", #range: [#min: 1, #max: 144]])
- return description
- end
-