home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / varia / fiasco_1.2 / arexx / unlockgui.rexx < prev    next >
OS/2 REXX Batch file  |  1977-12-31  |  304b  |  20 lines

  1. /* UnlockGUI.rexx
  2.  * Script to unlock the GUI of Fiasco, if other scripts forgot it
  3.  * Copyright © 1995 Nils Bandener
  4.  * $VER: UnlockGUI.rexx 3.1 (1.11.95)
  5.  */
  6.  
  7. /*
  8.  * Fiasco will complain once, if ARexx-Debug is activated.
  9.  */
  10.  
  11. address FIASCO
  12.  
  13. do forever
  14.  
  15.     F_UnlockGUI
  16.  
  17.     if rc ~= 0 then break
  18.  
  19. end
  20.