home *** CD-ROM | disk | FTP | other *** search
- /* Custom kludge for my personal use to set lister to given size.
- Not for release because this is lame!
- by Leo 'Nudel' Davidson for Gods'Gift Utilities
- email: leo.davidson@keble.oxford.ac.uk www: http://users.ox.ac.uk/~kebl0364 */
-
- options results
- options failat 99
- signal on syntax;signal on ioerr /* Error trapping */
- parse arg DOpusPort source_handle.0
- DOpusPort = Strip(DOpusPort,"B",'" ')
- source_handle.0 = Strip(source_handle.0,"B",'" ')
-
- If DOpusPort="" THEN Do
- Say "Not correctly called from Directory Opus 5!"
- Say "Load this ARexx script into an editor for more info."
- EXIT
- END
- If ~Show("P",DOpusPort) Then Do
- Say DOpusPort "is not a valid port."
- EXIT
- End
- Address value DOpusPort
-
- lister set source_handle.0 position "0/0/360/148"
-
- EXIT
-