home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd2.bin
/
bbs
/
gfx
/
jcgraph-1.21.lha
/
JcGraph
/
Rexx
/
AssignF8.rex
< prev
next >
Wrap
OS/2 REXX Batch file
|
1992-10-05
|
480b
|
18 lines
/* AssignF8.rex */
/* ------------ */
/* Description: This script pops a file requester asking for an ARexx */
/* script path. It will then assign it to the F8 key so */
/* that the next time you hit F8, it will be executed. */
options results
address 'JCGRAPH'
'requestfile title=Assign_Script_to_F8 path=JcGraph:rexx'
HisAssign=result
if RC == 0 then do
'keyboard key=F8 cmd=' || HisAssign
'requestnotify F8 was assigned to ' HisAssign
end