home *** CD-ROM | disk | FTP | other *** search
- /* 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
-
-