home *** CD-ROM | disk | FTP | other *** search
Wrap
/* $VER: 1.0 Words autoconfig macro */ OPTIONS RESULTS /* enable return codes */ if (LEFT(ADDRESS(), 6) ~= "GOLDED") then /* not started by GoldEd ? */ address 'GOLDED.1' 'LOCK CURRENT' /* lock GUI, gain access */ OPTIONS FAILAT 6 /* ignore warnings */ SIGNAL ON SYNTAX /* ensure clean exit */ /* ------------------------ INSERT YOUR CODE HERE: ------------------- */ 'REQUEST BODY="A new API client has been installed.|Do you want to have this client added|to the list of active clients ?" BUTTON="_START NEW CLIENT|no"' if (RESULT = 1) then do 'REQUEST HIDE=TRUE' 'API FIND="SpellIT"' if (RC > 0) then do 'API ADD="GOLDED:API/SpellIT/SpellIT HASH=DEUTSCH.HASH"' end 'REQUEST STATUS="Waiting for ISpell startup ..."' 'RUN WAITPORT ispell' 'REQUEST STATUS="" HIDE=FALSE BODY="API client has been added - save|new configuration ?" BUTTON="_SAVE|no"' if (RESULT = 1) then 'PREFS SAVE' 'REQUEST BODY="Append ISpell menu to your current menu ?" BUTTON="_APPEND|no"' if (RESULT = 1) then do 'QUERY CAT' if (RESULT = "deutsch") then 'MENUS APPEND CONFIG="golded:api/spellit/presets/spellit_D.men"' else 'MENUS APPEND CONFIG="golded:api/spellit/presets/spellit_E.men"' 'SET USER=19 VALUE=TRUE' 'SET USER=20 VALUE=TRUE' 'REQUEST BODY="Menu has been changed - save|new configuration ?" BUTTON="_SAVE|no"' if (RESULT = 1) then 'PREFS SAVE' end 'REQUEST BODY="Append ISpell keyboard shortcuts to your|current keyboard bindings ?" BUTTON="_APPEND|no"' if (RESULT = 1) then do 'BIND OVERLAY CONFIG="golded:api/spellit/presets/spellit.key"' 'REQUEST BODY="Keyboad bindings have been changed - save|new configuration ?" BUTTON="_SAVE|no"' if (RESULT = 1) then 'PREFS SAVE' end end /* ---------------------------- END OF YOUR CODE --------------------- */ 'UNLOCK' /* VERY important: unlock GUI */ EXIT SYNTAX: SAY "Sorry, error line" SIGL ":" ERRORTEXT(RC) ":-(" 'UNLOCK' EXIT