home *** CD-ROM | disk | FTP | other *** search
- /* rexx test file
- */
-
- ADDRESS 'LARP.01'
-
- /* Usage: PUTS "<text here>" */
-
- CALL ADDLIB('rexxsupport.library',0,-30,0)
- PLACE '0 15'
- SIZE '640 100'
- PUTS "<Seuss> alAUKKA: I need a little proggy. Would ya make it for me?"
- CALL DELAY(30)
- PUTS "<alAUKKA> Seuss: Yeah, what kind?"
- CALL DELAY(50)
- PUTS "<Seuss> alAUKKA: You know, one which uses Arexx(tm) and opens a little window."
- CALL DELAY(30)
- PUTS "<alAUKKA> Seuss: Hey, I got it. Shouldn't be too hard to make..."
- CALL DELAY(90)
- PUTS "<alAUKKA> Seuss: ... Guess I do it in three hours. :)"
-
- /* Usage: PLACE '<x-coordinate> <y-coordinate>' */
-
- CALL DELAY(50)
- PUTS "<alAUKKA> Wanna see our window moving?"
- CALL DELAY(50)
- PUTS "<Seuss> Yeah..."
- PLACE '0 100'
-
- /* Usage: SIZE '<x-size> <y-size>' */
-
- CALL DELAY(50)
- PUTS "<alAUKKA> I don't like this window - it's too small."
- CALL DELAY(50)
- PUTS "<Seuss> I think that too."
- PLACE '0 0'
- SIZE '640 200'
-