home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enigma Amiga Life 113
/
EnigmaAmiga113CD.iso
/
software
/
utilities
/
dirscanner
/
rexx
/
jump2marked.dsrx
< prev
next >
Wrap
Text File
|
2000-05-30
|
545b
|
30 lines
/*
$VER:Jump2Marked.dsrx 1.0 (30.5.00) Copyright (c) Nils Görs
bind this script as follows:
Title: Jump2Next sel Title: Jump2prev sel
Path: Jump2Marked.dsrx Path: Rexx/Jump2Marked.dsrx PREV
*/
options results
PARSE ARG args
DSPort = SUBWORD(args,WORDS(args))
IF WORDS(args) > 1 THEN DO
direction = WORD(args,1)
direction = UPPER(direction)
END
address value DSPort
SET LOCKGUI 1
IF direction = "PREV" THEN direction = PREVSEL
ELSE direction = NEXTSEL
GOTO direction
SET LOCKGUI 0