home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d9xx
/
d926
/
jcgraph.lha
/
JcGraph
/
Rexx
/
AssignF9.rex
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-07
|
480b
|
18 lines
/* AssignF9.rex */
/* ------------ */
/* Description: This script pops a file requester asking for an ARexx */
/* script path. It will then assign it to the F9 key so */
/* that the next time you hit F9, it will be executed. */
options results
address 'JCGRAPH'
'requestfile title=Assign_Script_to_F9 path=JcGraph:rexx'
HisAssign=result
if RC == 0 then do
'keyboard key=F9 cmd=' || HisAssign
'requestnotify F9 was assigned to ' HisAssign
end