home *** CD-ROM | disk | FTP | other *** search
- /* FW_Rotate.rexx 1.0 (28.01.95) by NDY's
-
- Creates a series of wrap texts with different colours and slowly changing rotation.
- You should use a different colour for oval fill and border and for the text. */
-
- /* Init */
- OPTIONS RESULTS
- rxport="FinalWrapperPort"
- IF ~Show("P",rxport) THEN EXIT 10
- ADDRESS VALUE rxport
- Lock ON
- Prefs STORE
- Set ZIP 1 /* Make window small */
- oldzip=RESULT
- SIGNAL ON ERROR
-
- /* Main */
- SetState ROT 1
- SetMode ROT 3
- DO i=0 TO 2
- SetMode INK i
- SetVal ROT 20-i*10
- Go
- END
-
- /* Exit */
- ERROR:
- Set ZIP oldzip
- Prefs RESET
- Lock OFF
- EXIT
-