/* Open URL in Sputnik Usage: rx open_in_sputnik.rexx URL To integrate in IBrowse: 1. Open Preferences->Settings...->GUI->FAB Menus 2. Drag&drop "Custom" entry from left to right to "Page" list 3. Edit new entry - Name: Open in Sputnik, Action: ARexx, enter path to script location in left input string, enter %u to rightmost input string 4. Click "OK" and try right mouse button over the pages :) Save the settings if you like. */ /* Config - edit next line for your needs */ sputnik_location = "Utils:Internet/Sputnik/Sputnik" /* End of config */ PARSE ARG url IF ~SHOW( "P", "SPUTNIK.1" ) THEN DO ADDRESS COMMAND "run >NIL: " sputnik_location ADDRESS COMMAND "WaitForPort SPUTNIK.1" END ADDRESS "SPUTNIK.1" OPENURL url EXIT