home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format 117
/
af117a.adf
/
archives
/
af117a1.lzx
/
Fiasco_2.2
/
ARexx
/
unlockgui.frx
< prev
next >
Wrap
Text File
|
2009-01-29
|
517b
|
35 lines
/* UnlockGUI.frx
* Script to unlock the GUI of Fiasco, if other scripts forgot it
* Copyright © 1995-1997 Nils Bandener
* $VER: UnlockGUI.frx 6.3 (6.10.97)
*/
/*
* Fiasco will complain once, if ARexx-Debug is activated.
*/
/*
* Find Fiasco port
*/
ports = show("Ports")
do i = 1 to words(ports)
if abbrev(word(ports, i), "FIASCO.") then
do
Address Value word(ports, i)
do forever
UnlockGUI
if rc ~= 0 then break
end
break
end
end