home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------------------------------
- :Program. Options.ttx
- :Contents. Set Oberon options with TurboText
- :Author. Kai Bolay [kai] (CED-Version)
- :Address. Snail-Mail: E-Mail:
- :Address. Hoffmannstrasse 168 UUCP: kai@amokle.adsp.sub.org
- :Address. D-7250 Leonberg 1 FIDO: 2:247/706.3
- :Author. Jan Geißler [jan] (Turbotext-Anpassung)
- :Address. Snail-Mail: E-Mail:
- :Address. Hermann-Rombach-Str. 17 Zerberus:J.GEISSLER@DALLAS.ZER
- :Address. D-7120 Bietigheim FIDO: 2:247/706.5
- :History. v1.0 [kai] 12-Mar-92
- :History. v1.0.1 [jan] 06-Jun-92 (+ fixed for use with TurboText)
- :Copyright. FD
- :Language. ARexx
- :Translator. RexxMast
- :Remark. Use AmigaOberon.dfn to get oberon menus & more in TTX!
- ------------------------------------------------------------------------ */
-
- options results
-
- opts = GetClip("OberonOpts")
- empty = (opts = "")
- if empty then opts = "svbcrnotpzmd1238igy"
- /* getstring '"'opts'"' '"Bitte geben sie die Compileroptionen ein"' */
- requeststr PROMPT '"Bitte geben sie die Compileroptionen ein"' '"'opts'"'
- opts = result
- if (opts ~= "RESULT") & ~(empty & (opts = "")) then do
- if ~setclip("OberonOpts",opts) then do
- RequestBool "Fehler:" "Kann Optionen nicht merken"
- exit
- end
- end
-
- opts = GetClip("OLinkOpts")
- empty = (opts = "")
- if empty then opts = "smdi"
- /* getstring '"'opts'"' '"Bitte geben sie die Linkeroptionen ein"' */
- requeststr PROMPT '"Bitte geben sie die Linkeroptionen ein"' '"'opts'"'
- opts = result
- if (opts ~= "RESULT") & ~(empty & (opts = "")) then do
- if ~setclip("OLinkOpts",opts) then do
- RequestBool "Fehler:" "Kann Optionen nicht merken"
- exit
- end
- end
-