home *** CD-ROM | disk | FTP | other *** search
- >actor CONTROLS
- ;
- ; FORWARD / BACK / RESET Control for E-Card's
- ;
- ; TO USE:
- ; Compose a card using Visual Workshop
- ; Add frames with a hold time of 999 (for user input)
- ; Return to frame 1 and select FILE | ADD OBJECT
- ; Navigate to the TOOLS directory and select CONTROLS.C95
- ; ** This must be 1st object you add so it will be #1 **
- ;
- ; Text Panels 2-9 are cleared by this control.
- ; Use Panels 0-1 for Title or other constant information.
- ;
- #CONTROLS
- >click 0 0 30 30 context loop #gotbak
- >click 40 0 70 30 context loop #gotfwd
- >click 65 0 90 30 0 loop #gotstart
- >pause 99
- CONTROLS.GIF
- >repeat 9999
-
- #gotfwd
- >text 2
- >text 3
- >text 4
- >text 5
- >text 6
- >text 7
- >text 8
- >text 9
- >resume 0
- >loop #CONTROLS
-
- #gotbak
- >text 2
- >text 3
- >text 4
- >text 5
- >text 6
- >text 7
- >text 8
- >text 9
- >back 0
- >loop #CONTROLS
-
- #gotstart
- >text 0
- >text 1
- >text 2
- >text 3
- >text 4
- >text 5
- >text 6
- >text 7
- >text 8
- >text 9
- >loop #START
-
- >end CONTROLS
- #START
-
-