OpenRequester "SimpleReq","Kommentar","","Textloader Meldung...","Ich kann den Textloader","Font nicht finden. Bitte","zuerst Installieren!","Sonst lade ich TOPAZ/8!"
OpenRequester "SimpleReq","Kommentar","","Textloader Information...","!Herzlich Willkommen!","Schicken Sie mir eine","Postkarte für die Registration!","!!! ES LOHNT SICH !!!"
Let AutorInfo = "Pascal Gisin"||Char(10)||"Fiechtenweg 11"||Char(10)||"CH-4147 Aesch"||Char(10)||""||Char(10)||"Tel: 079/322'23'53"||Char(10)||"Fax: 079/0'322'23'53"||CHAR(10)||"Dedicated To ALL AMIGIANS OF THE WORLD"
Let Autor=AskForResponse(AutorInfo, "Textloader Info...", "Alles klar!")
EndScript
EndObject
TextMenu "SystemInfo..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "SystemInfo..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "?"
EndScript
Occurred
If Hilfsmodus = TRUE
OpenRequester "HelpReq","Card_1","","Mit diesem Menüpunkt, erhalten Sie","Interresannte Infos über Speicher-,","Chip-, Fast und Ihre Systemkonfigurationen!"," "," "
Else
GotoCard "Systeminfos..."
EndIf
EndScript
EndObject
TextMenu "Trennstrich4"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Laden..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Laden..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "L"
EndScript
Occurred
SetFileRequestMode REGULARMODE ,REJECTICONS
Let Laden=AskForFilename(TheoriginDirectory,"ASCII/FTXT Datei laden...","155","39","340","180")
Let NeueDatei=Laden
If NeueDatei<>NOTHING
If NOT MATCH (FileType(NeueDatei),"Unknown","FTXT")
Do "Beep"
SetWindowTitle "Kann die Datei"|||NeueDatei|||"nicht laden"
Else
SetWindowTitle "Lade Dokument..."
LoadDocument NeueDatei,"TheDoc"
IfError
Else
SetWindowTitle "Dateiname"|||NeueDatei
EndIf
EndIf
EndIf
EndScript
EndObject
TextMenu "Laden, Bild..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Laden, Bild..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "!"
EndScript
Occurred
SetFileRequestMode REGULARMODE ,REJECTICONS
Let Datei=AskForFileName(Bild, "Bild auswählen! Zum laden...","155","39","340","180")
If Datei <> ""
Let Bild = Datei
GotoCard "BildAnzeiger"
EndIf
EndScript
EndObject
TextMenu "LadenBild(PP)"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "LadenBild(PP)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
If exists("Sys:c/PPshow")
Dos "Run >NIL: <Nil: Sys:c/PPshow"
Else
Let Fehler=AskForResponse("Leider konnte PPSHOW nicht gefunden werden!","Anzeigeproblem...","Schade")
If Fehler=1
DisableObject "LadenBild(PP)"
EndIf
EndIf
EndScript
EndObject
TextMenu "TrennstrichX1"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Einfügen..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Einfügen..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "E"
EndScript
Occurred
SetFileRequestMode REGULARMODE ,REJECTICONS
Let Einfügen=AskForFilename("","Text beim Cursor einfügen...","155","39","340","180")
Let Newfile = Einfügen
If newfile<>nothing
If Not Match(FileType(newfile),"Unknown","FTXT")
SetWindowTitle "Kann File nicht Laden """||newfile||""""
Else
SetWindowTitle "Lade einzufügender Text....."
InsertDocument newfile,"TheDoc"
IfError
Do "Fehlerroutine"
Else
Let FileToGet=newfile
SetWindowTitle "FileName :"""||FileToGet||""""
EndIf
EndIf
EndIf
EndScript
EndObject
TextMenu "TrennstrichX9"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Suchen..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Suchen..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "S"
EndScript
Occurred
Do "S"
EndScript
EndObject
TextMenu "Suchen fortsetzen..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Suchen fortsetzen..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "W"
EndScript
Occurred
Do "SF"
EndScript
EndObject
TextMenu "TrennstrichX7"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Speichern, ASCII"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Speichern, ASCII"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "A"
EndScript
Occurred
SetFileRequestMode SAVEFILEMODE ,NONE
Let SichernAscii=AskForFileName(TheCurrentDirectory,"Text in ASCII sichern...","155","39","340","180")
SetWindowTitle "Textloader Editor, von Pascal Gisin"
EndScript
EndObject
TextMenu "Speichern"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Speichern"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "T"
EndScript
Occurred
Let Abfrage = AskForResponse("Dieser Text wird dort gespeichert,"||Char(10)||"wo er geladen wurde. Ist das,"||Char(10)||"so in Ordnung?","Textloader Informiert...","Aber natürlich|Hab mich verdrückt")
If Abfrage =1
SaveAllChangedBuffers
If error
Do "FehlerRoutine"
If Abfrage =0
EndIf
EndIf
EndIf
EndScript
EndObject
TextMenu "TrennstrichX2"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Löschen, TEXT"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Löschen, TEXT"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "T"
EndScript
Occurred
OpenRequester "SimpleReq","JaNein","Löschen","Textloader Meldung...","Möchten Sie wirklich","den ganzen Text","für immer löschen?","???"
EndScript
EndObject
TextMenu "Löschen, ZEILE"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Löschen, ZEILE"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "Z"
EndScript
Occurred
WorkWithDocument "TheDoc"
Clear LINE
EndScript
EndObject
TextMenu "TrennstrichX3"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Cursor, Textanfang... "
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor, Textanfang... "
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ":"
EndScript
Occurred
WorkWithDocument "TheDoc"
MoveCursorTo STARTOF DOCUMENT
EndScript
EndObject
TextMenu "Cursor, Textende..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor, Textende..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ";"
EndScript
Occurred
WorkWithDocument "TheDoc"
MoveCursorTo ENDOF DOCUMENT
EndScript
EndObject
TextMenu "Cursor, EineZeile"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Neue Zeile"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "D"
EndScript
Occurred
NewLine
EndScript
EndObject
TextMenu "TrennstrichX4"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Drucken..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Drucken..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "P"
EndScript
Occurred
OpenRequester "SimpleReq","JaNein","Drucken","Textloader Meldung...","Wollen Sie wirklich","dieses Dokument","jetzt Ausdrucken lassen?"," "
EndScript
EndObject
TextMenu "TrennstrichX5"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Beenden..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Beenden..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "Q"
EndScript
Occurred
OpenRequester "SimpleReq","JaNein","Ende","Textloader Frage...","Möchten Sie Ihr Dokument, vor","dem beenden noch sichern ???","",""
EndScript
EndObject
TextMenu "HTML Information"
Definition
AttachTo MENU ," WWWEdit "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "HTML (Infos)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument ("SchabloneInfo"),"TheDoc"
EndScript
EndObject
TextMenu "Schablone öffnen..."
Definition
AttachTo MENU ," WWWEdit "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "HTML (Text)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument ("Schablone1"),"TheDoc"
EndScript
EndObject
TextMenu "Systemuhr..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Systemuhr..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "U"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Utilities/Clock" ; Run the application
EndScript
EndObject
TextMenu "Taschenrechner..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Taschenrechner..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "C"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Tools/Calculator" ; Run the application
EndScript
EndObject
TextMenu "Tastaturbelegung..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Tastaturbelegung..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "K"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Tools/KeyShow" ; Run the application
EndScript
EndObject
TextMenu "Farbeneinsteller..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Farbeneinsteller..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "+"
EndScript
Occurred
If exists("sys:Tools/Colors")
Dos "Run >Nil: <Nil: Sys:Tools/Colors" ; Run the application
ElseIf exists("sys:Prefs/Palette")
Dos "Run >Nil: <Nil: Sys:Prefs/Palette"
Else
Let Error =askforResponse("Programm existiert nicht!","Textloader Fehler...","")
EndIf
EndScript
EndObject
TextMenu "HD-Toolbox..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "HD-Toolbox..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "%"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Tools/HDToolbox" ; Run the application
EndScript
EndObject
TextMenu "Cli-Fenster..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Cli-Fenster..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "$"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:System/Cli" ; Run the application
EndScript
EndObject
TextMenu "Trennstrich6"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "MenuItem_4"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Multiview..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "0"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Utilities/Multiview"
If error
Do "Fehlerroutine"
EndIf
EndScript
EndObject
TextMenu "DruckerPrefs..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "DruckerPrefs..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "1"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Printer" ; Run the application
EndScript
EndObject
TextMenu "Zeiteinsteller..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Zeiteinsteller..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "2"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Time" ; Run the application
EndScript
EndObject
TextMenu "Sprache(Locale)..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Sprache(Locale)..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "3"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Locale" ; Run the application
EndScript
EndObject
TextMenu "Screenmodeprefs..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Screenmodeprefs..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "4"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/ScreenMode" ; Run the application
EndScript
EndObject
TextMenu "PrinterGfx..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "PrinterGfx..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "5"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/PrinterGfx" ; Run the application
EndScript
EndObject
TextMenu "Fonteinsteller..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Fonteinsteller..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "6"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Font" ; Run the application
EndScript
EndObject
TextMenu "Eigener Screen öffnen"
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Eigener Screen öffnen"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
GotoCard "Hauptfenster2"
EndScript
EndObject
TextMenu "Palette..."
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Palette..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "X"
EndScript
Occurred
OpenRequester "Palette","Palette"
EndScript
EndObject
TextMenu "Speicher..."
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Speicher..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "M"
EndScript
Occurred
OpenRequester "Avail","Avail"
EndScript
EndObject
IntervalTimer "TitelUhr"
Definition
Duration 0,1,0 ; Minutes, Seconds, Jiffies
EndScript
Occurred
Do "TitelUhr"
EndScript
EndObject
TextMenu "Sicherheitskopie anlegen (2)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie anlegen (2)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetWindowTitle "Speichere den Text nun in die RAM, unter Ablage (2)"
SetWindowTitle "Textloader Editor, von Pascal Gisin"
EndScript
EndObject
TextMenu "-------------------------"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "topaz",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (1)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (1)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:1BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (2)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (2)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:2BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (3)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (3)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:3BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (4)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (4)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:4BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "OnlineHelp..."
Definition
AttachTo MENU ," Help "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "OnlineHelp..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "O"
EndScript
Occurred
If EXISTS ("sys:Utilities/Amigaguide")
Dos "Run >Nil: <Nil: Sys:Utilities/Amigaguide Textloader.guide" ; Run the application
Else
If EXISTS ("sys:Utilities/Multiview")
Dos "Run >Nil: <Nil: Sys:Utilities/Multiview Textloader.guide" ; Run the Aplic.
Else
If EXISTS ("sys:c/Amigaguide")
Dos "Run >Nil: <Nil: Sys:c/Amigaguide Textloader.guide"
Else
OpenRequester "SimpleReq","Kommentar","","Textloader Meldung...","Leider konnte ich die","Textloader OnlineHelp nicht","starten. Benötige Amigaguide, oder","Multiview für die Ausgabe!"
EndIf
EndIf
EndIf
EndScript
EndObject
TextMenu "MenuItem_1"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Pointer..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "7"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/Pointer" ; Run the application
EndScript
EndObject
TextMenu "MenuItem_2"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Sound..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "8"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/Sound" ; Run the application
EndScript
EndObject
TextMenu "MenuItem3"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "PrinterPostscript..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "9"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/PrinterPS" ; Run the application
EndScript
EndObject
TextMenu "Trennstrich?"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
AKey "KeyInput_1"
Definition
QualifiersPressed NONE
KeyPressed F7
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
AKey "KeyInput_2"
Definition
QualifiersPressed NONE
KeyPressed F8
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
AKey "KeyInput_3"
Definition
QualifiersPressed NONE
KeyPressed F9
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
AKey "KeyInput_4"
Definition
QualifiersPressed NONE
KeyPressed F10
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
TextMenu "NoFastMem"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "NoFastMem"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:system/NoFastMem"
If error
Do "Fehlerroutine"
EndIf
EndScript
EndObject
TextMenu "Rexxmast"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Rexxmast"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:system/Rexxmast"
If error
Do "Fehlerroutine"
EndIf
EndScript
EndObject
TextMenu "CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Zeichen Total..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing"
EndScript
EndObject
TextMenu "Copy_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor wo..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing2"
EndScript
EndObject
TextMenu "Copy_2_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor auf Feld..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing3"
EndScript
EndObject
TextMenu "Copy_3_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor auf Zeile..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing4"
EndScript
EndObject
TextMenu "Copy_4_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Zeilen Total..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing5"
EndScript
EndObject
TextMenu "MenuItem_3"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 4,2,JAM2 ; PenA, PenB, DrawMode
Text "------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Copy_5_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Verfügbarer Chip Ram..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing6"
EndScript
EndObject
TextMenu "Copy_6_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Verfügbarer Fast Ram..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing7"
EndScript
EndObject
TextMenu "GesamtMemory"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Total Ram..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing9"
EndScript
EndObject
TextMenu "Copy_of_MenuItem_3"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 4,2,JAM2 ; PenA, PenB, DrawMode
Text "------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Copy_7_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "System Version..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing8"
EndScript
EndObject
TextMenu "Farbenwahl"
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Farben wahl..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
EndObject
TextMenu "Wb"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Wb"
MenuFlags CHECKABLE CHECKIT
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",true
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,170,170,170
SetRGB 1,0,0,17
SetRGB 2,255,255,255
SetRGB 3,102,136,187
EndScript
EndObject
TextMenu "WBold"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "WBold"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",true
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,0,85,170
SetRGB 1,255,255,255
SetRGB 2,0,0,34
SetRGB 3,255,136,0
EndScript
EndObject
TextMenu "Violetexotic"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Violett exotic"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",true
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,187,187,187
SetRGB 1,0,0,0
SetRGB 2,255,255,255
SetRGB 3,204,0,153
EndScript
EndObject
TextMenu "blacky"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "blacky bounce"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",true
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,0,0,0
SetRGB 1,255,255,255
SetRGB 2,85,170,170
SetRGB 3,204,51,85
EndScript
EndObject
TextMenu "Banana"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Banana split"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",true
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,170,170,170
SetRGB 1,0,0,0
SetRGB 2,187,85,17
SetRGB 3,221,221,0
EndScript
EndObject
TextMenu "Pescafruit"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Pescafruit"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",true
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,170,170,170
SetRGB 1,0,0,0
SetRGB 2,255,17,68
SetRGB 3,238,136,0
EndScript
EndObject
TextMenu "GreenApple"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "GreenApple"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",true
SetObjectState "SpacyTint",false
SetRGB 0,153,153,153
SetRGB 1,0,0,0
SetRGB 2,238,170,51
SetRGB 3,0,136,0
EndScript
EndObject
TextMenu "Spacytint"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Spacytint"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",true
SetRGB 0,255,255,255
SetRGB 1,238,0,187
SetRGB 2,0,0,0
SetRGB 3,17,204,102
EndScript
EndObject
AKey "OnlineHelp"
Definition
QualifiersPressed NONE
KeyPressed HELP
EndScript
OnDown
If EXISTS ("sys:Utilities/Amigaguide")
Dos "Run >Nil: <Nil: Sys:Utilities/Amigaguide Textloader.guide" ; Run the application
Else
If EXISTS ("sys:Utilities/Multiview")
Dos "Run >Nil: <Nil: Sys:Utilities/Multiview Textloader.guide" ; Run the Aplic.
Else
If EXISTS ("sys:c/Amigaguide")
Dos "Run >Nil: <Nil: Sys:c/Amigaguide Textloader.guide"
Else
OpenRequester "SimpleReq","Kommentar","","Textloader Meldung...","Leider konnte ich die","Textloader OnlineHelp nicht","starten. Benötige Amigaguide, oder","Multiview für die Ausgabe!"
EndIf
EndIf
EndIf
EndScript
EndObject
* End of Card "Hauptfenster"
*************
*************
* Card "Hauptfenster2"
BeforeAttachment ; used to be OnStartup
LoadSubDeck "SimpleReq","SimpleReq"
LoadSubDeck "SuchReq","SuchReq"
LoadSubDeck "ConiPalette","Palette"
LoadSubDeck "ConiAvail","Avail"
If exists ("sys:fonts/personal/8")
Else
OpenRequester "SimpleReq","Kommentar","","Textloader Meldung...","Ich kann den Textloader","Font nicht finden. Bitte","zuerst Installieren!","Sonst lade ich TOPAZ/8!"
OpenRequester "SimpleReq","Kommentar","","Textloader Information...","!Herzlich Willkommen!","Schicken Sie mir eine","Postkarte für die Registration!","!!! ES LOHNT SICH !!!"
Let AutorInfo = "Pascal Gisin"||Char(10)||"Fiechtenweg 11"||Char(10)||"CH-4147 Aesch"||Char(10)||""||Char(10)||"Tel: 079/322'23'53"||Char(10)||"Fax: 079/0'322'23'53"||CHAR(10)||"Dedicated To ALL AMIGIANS OF THE WORLD"
Let Autor=AskForResponse(AutorInfo, "Textloader Info...", "Alles klar!")
ScreenTo FRONT
EndScript
EndObject
TextMenu "SystemInfo..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "SystemInfo..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "?"
EndScript
Occurred
If Hilfsmodus = TRUE
OpenRequester "HelpReq","Card_1","","Mit diesem Menüpunkt, erhalten Sie","Interresannte Infos über Speicher-,","Chip-, Fast und Ihre Systemkonfigurationen!"," "," "
Else
GotoCard "Systeminfos..."
EndIf
EndScript
EndObject
TextMenu "Trennstrich4"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Laden..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Laden..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "L"
EndScript
Occurred
SetFileRequestMode REGULARMODE ,REJECTICONS
Let Laden=AskForFilename(TheoriginDirectory,"ASCII/FTXT Datei laden...","155","39","340","180")
Let NeueDatei=Laden
If NeueDatei<>NOTHING
If NOT MATCH (FileType(NeueDatei),"Unknown","FTXT")
Do "Beep"
SetWindowTitle "Kann die Datei"|||NeueDatei|||"nicht laden"
Else
SetWindowTitle "Lade Dokument..."
LoadDocument NeueDatei,"TheDoc"
IfError
Else
SetWindowTitle "Dateiname"|||NeueDatei
EndIf
EndIf
EndIf
EndScript
EndObject
TextMenu "Laden, Bild..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Laden, Bild..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "!"
EndScript
Occurred
SetFileRequestMode REGULARMODE ,REJECTICONS
Let Datei=AskForFileName(Bild, "Bild auswählen! Zum laden...","155","39","340","180")
If Datei <> ""
Let Bild = Datei
GotoCard "BildAnzeiger"
EndIf
EndScript
EndObject
TextMenu "LadenBild(PP)"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "LadenBild(PP)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
If exists("Sys:c/PPshow")
Dos "Run >NIL: <Nil: Sys:c/PPshow"
Else
Let Fehler=AskForResponse("Leider konnte PPSHOW nicht gefunden werden!","Anzeigeproblem...","Schade")
If Fehler=1
DisableObject "LadenBild(PP)"
EndIf
EndIf
EndScript
EndObject
TextMenu "TrennstrichX1"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Einfügen..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Einfügen..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "E"
EndScript
Occurred
SetFileRequestMode REGULARMODE ,REJECTICONS
Let Einfügen=AskForFilename("","Text beim Cursor einfügen...","155","39","340","180")
Let Newfile = Einfügen
If newfile<>nothing
If Not Match(FileType(newfile),"Unknown","FTXT")
SetWindowTitle "Kann File nicht Laden """||newfile||""""
Else
SetWindowTitle "Lade einzufügender Text....."
InsertDocument newfile,"TheDoc"
IfError
Do "Fehlerroutine"
Else
Let FileToGet=newfile
SetWindowTitle "FileName :"""||FileToGet||""""
EndIf
EndIf
EndIf
EndScript
EndObject
TextMenu "TrennstrichX9"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Suchen..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Suchen..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "S"
EndScript
Occurred
Do "S"
EndScript
EndObject
TextMenu "Suchen fortsetzen..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Suchen fortsetzen..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "W"
EndScript
Occurred
Do "SF"
EndScript
EndObject
TextMenu "TrennstrichX7"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Speichern, ASCII"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Speichern, ASCII"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "A"
EndScript
Occurred
SetFileRequestMode SAVEFILEMODE ,NONE
Let SichernAscii=AskForFileName(TheCurrentDirectory,"Text in ASCII sichern...","155","39","340","180")
SetWindowTitle "Textloader Editor, von Pascal Gisin"
EndScript
EndObject
TextMenu "Speichern"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Speichern"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "T"
EndScript
Occurred
Let Abfrage = AskForResponse("Dieser Text wird dort gespeichert,"||Char(10)||"wo er geladen wurde. Ist das,"||Char(10)||"so in Ordnung?","Textloader Informiert...","Aber natürlich|Hab mich verdrückt")
If Abfrage =1
SaveAllChangedBuffers
If error
Do "FehlerRoutine"
If Abfrage =0
ScreenTo FRONT
EndIf
EndIf
EndIf
ScreenTo FRONT
EndScript
EndObject
TextMenu "TrennstrichX2"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Löschen, TEXT"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Löschen, TEXT"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "T"
EndScript
Occurred
OpenRequester "SimpleReq","JaNein","Löschen","Textloader Meldung...","Möchten Sie wirklich","den ganzen Text","für immer löschen?","???"
EndScript
EndObject
TextMenu "Löschen, ZEILE"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Löschen, ZEILE"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "Z"
EndScript
Occurred
WorkWithDocument "TheDoc"
Clear LINE
EndScript
EndObject
TextMenu "TrennstrichX3"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Cursor, Textanfang... "
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor, Textanfang... "
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ":"
EndScript
Occurred
WorkWithDocument "TheDoc"
MoveCursorTo STARTOF DOCUMENT
EndScript
EndObject
TextMenu "Cursor, Textende..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor, Textende..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ";"
EndScript
Occurred
WorkWithDocument "TheDoc"
MoveCursorTo ENDOF DOCUMENT
EndScript
EndObject
TextMenu "Cursor, EineZeile"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Neue Zeile"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "D"
EndScript
Occurred
NewLine
EndScript
EndObject
TextMenu "TrennstrichX4"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Drucken..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Drucken..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "P"
EndScript
Occurred
OpenRequester "SimpleReq","JaNein","Drucken","Textloader Meldung...","Wollen Sie wirklich","dieses Dokument","jetzt Ausdrucken lassen?"," "
EndScript
EndObject
TextMenu "TrennstrichX5"
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Beenden..."
Definition
AttachTo MENU ,"Editormenü"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Beenden..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "Q"
EndScript
Occurred
OpenRequester "SimpleReq","JaNein","Ende","Textloader Frage...","Möchten Sie Ihr Dokument, vor","dem beenden noch sichern ???","",""
EndScript
EndObject
TextMenu "HTML Information"
Definition
AttachTo MENU ," WWWEdit "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "HTML (Infos)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument ("SchabloneInfo"),"TheDoc"
EndScript
EndObject
TextMenu "Schablone öffnen..."
Definition
AttachTo MENU ," WWWEdit "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "HTML (Text)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument ("Schablone1"),"TheDoc"
EndScript
EndObject
TextMenu "Systemuhr..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Systemuhr..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "U"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Utilities/Clock" ; Run the application
EndScript
EndObject
TextMenu "Taschenrechner..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Taschenrechner..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "C"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Tools/Calculator" ; Run the application
EndScript
EndObject
TextMenu "Tastaturbelegung..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Tastaturbelegung..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "K"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Tools/KeyShow" ; Run the application
EndScript
EndObject
TextMenu "Farbeneinsteller..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Farbeneinsteller..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "+"
EndScript
Occurred
If exists("sys:Tools/Colors")
Dos "Run >Nil: <Nil: Sys:Tools/Colors" ; Run the application
ElseIf exists("sys:Prefs/Palette")
Dos "Run >Nil: <Nil: Sys:Prefs/Palette"
Else
Let Error =askforResponse("Programm existiert nicht!","Textloader Fehler...","")
EndIf
EndScript
EndObject
TextMenu "HD-Toolbox..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "HD-Toolbox..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "%"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Tools/HDToolbox" ; Run the application
EndScript
EndObject
TextMenu "Cli-Fenster..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Cli-Fenster..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "$"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:System/Cli" ; Run the application
EndScript
EndObject
TextMenu "Trennstrich6"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "MenuItem_4"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Multiview..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "0"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Utilities/Multiview"
If error
Do "Fehlerroutine"
EndIf
EndScript
EndObject
TextMenu "DruckerPrefs..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "DruckerPrefs..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "1"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Printer" ; Run the application
EndScript
EndObject
TextMenu "Zeiteinsteller..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Zeiteinsteller..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "2"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Time" ; Run the application
EndScript
EndObject
TextMenu "Sprache(Locale)..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Sprache(Locale)..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "3"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Locale" ; Run the application
EndScript
EndObject
TextMenu "Screenmodeprefs..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Screenmodeprefs..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "4"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/ScreenMode" ; Run the application
EndScript
EndObject
TextMenu "PrinterGfx..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "PrinterGfx..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "5"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/PrinterGfx" ; Run the application
EndScript
EndObject
TextMenu "Fonteinsteller..."
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Fonteinsteller..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "6"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:prefs/Font" ; Run the application
EndScript
EndObject
TextMenu "Workbench Screen nutzen"
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Workbench Screen nutzen"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
GotoCard "Hauptfenster"
EndScript
EndObject
TextMenu "Palette..."
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Palette..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "X"
EndScript
Occurred
OpenRequester "Palette","Palette"
EndScript
EndObject
TextMenu "Speicher..."
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Speicher..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "M"
EndScript
Occurred
OpenRequester "Avail","Avail"
EndScript
EndObject
IntervalTimer "TitelUhr"
Definition
Duration 0,1,0 ; Minutes, Seconds, Jiffies
EndScript
Occurred
Do "TitelUhr"
EndScript
EndObject
TextMenu "Sicherheitskopie anlegen (2)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie anlegen (2)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetWindowTitle "Speichere den Text nun in die RAM, unter Ablage (2)"
SetWindowTitle "Textloader Editor, von Pascal Gisin"
EndScript
EndObject
TextMenu "-------------------------"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "topaz",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (1)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (1)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:1BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (2)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (2)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:2BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (3)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (3)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:3BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "Sicherheitskopie einfügen (4)"
Definition
AttachTo OBJECT ,"Speichern, Backup »"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "Sicherheitskopie einfügen (4)"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
LoadDocument "ram:4BackupTextloader","TheDoc"
EndScript
EndObject
TextMenu "OnlineHelp..."
Definition
AttachTo MENU ," Help "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "OnlineHelp..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "O"
EndScript
Occurred
If EXISTS ("sys:Utilities/Amigaguide")
Dos "Run >Nil: <Nil: Sys:Utilities/Amigaguide Textloader.guide" ; Run the application
Else
If EXISTS ("sys:Utilities/Multiview")
Dos "Run >Nil: <Nil: Sys:Utilities/Multiview Textloader.guide" ; Run the Aplic.
Else
If EXISTS ("sys:c/Amigaguide")
Dos "Run >Nil: <Nil: Sys:c/Amigaguide Textloader.guide"
Else
OpenRequester "SimpleReq","Kommentar","","Textloader Meldung...","Leider konnte ich die","Textloader OnlineHelp nicht","starten. Benötige Amigaguide, oder","Multiview für die Ausgabe!"
EndIf
EndIf
EndIf
EndScript
EndObject
TextMenu "MenuItem_1"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Pointer..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "7"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/Pointer" ; Run the application
EndScript
EndObject
TextMenu "MenuItem_2"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Sound..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "8"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/Sound" ; Run the application
EndScript
EndObject
TextMenu "MenuItem3"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "PrinterPostscript..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey "9"
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:Prefs/PrinterPS" ; Run the application
EndScript
EndObject
TextMenu "Trennstrich?"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 0,1,NORMAL ; PenA, PenB, DrawMode
Text "-------------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
AKey "KeyInput_1"
Definition
QualifiersPressed NONE
KeyPressed F7
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
AKey "KeyInput_2"
Definition
QualifiersPressed NONE
KeyPressed F8
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
AKey "KeyInput_3"
Definition
QualifiersPressed NONE
KeyPressed F9
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
AKey "KeyInput_4"
Definition
QualifiersPressed NONE
KeyPressed F10
EndScript
OnDown
Do "AusserFunktion"
EndScript
EndObject
TextMenu "NoFastMem"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "NoFastMem"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:system/NoFastMem"
If error
Do "Fehlerroutine"
EndIf
EndScript
EndObject
TextMenu "Rexxmast"
Definition
AttachTo MENU ," Workbench "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 3,2,JAM2 ; PenA, PenB, DrawMode
Text "Rexxmast"
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Dos "Run >Nil: <Nil: Sys:system/Rexxmast"
If error
Do "Fehlerroutine"
EndIf
EndScript
EndObject
TextMenu "CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Zeichen Total..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing"
EndScript
EndObject
TextMenu "Copy_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor wo..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing2"
EndScript
EndObject
TextMenu "Copy_2_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor auf Feld..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing3"
EndScript
EndObject
TextMenu "Copy_3_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Cursor auf Zeile..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing4"
EndScript
EndObject
TextMenu "Copy_4_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Zeilen Total..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing5"
EndScript
EndObject
TextMenu "MenuItem_3"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 4,2,JAM2 ; PenA, PenB, DrawMode
Text "------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Copy_5_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Verfügbarer Chip Ram..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing6"
EndScript
EndObject
TextMenu "Copy_6_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Verfügbarer Fast Ram..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing7"
EndScript
EndObject
TextMenu "GesamtMemory"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Total Ram..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing9"
EndScript
EndObject
TextMenu "Copy_of_MenuItem_3"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 4,2,JAM2 ; PenA, PenB, DrawMode
Text "------------------------"
MenuFlags NONE
Highlight NONE
ShortCutKey ""
EndScript
EndObject
TextMenu "Copy_7_of_CursorPosition"
Definition
AttachTo MENU ," Statistik "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "System Version..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
Do "Timing8"
EndScript
EndObject
TextMenu "Farbenwahl"
Definition
AttachTo MENU ," PrefsTools "
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Farben wahl..."
MenuFlags NONE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
EndObject
TextMenu "Wb"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Wb"
MenuFlags CHECKABLE CHECKIT
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",true
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,170,170,170
SetRGB 1,0,0,17
SetRGB 2,255,255,255
SetRGB 3,102,136,187
EndScript
EndObject
TextMenu "WBold"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "WBold"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",true
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,0,85,170
SetRGB 1,255,255,255
SetRGB 2,0,0,34
SetRGB 3,255,136,0
EndScript
EndObject
TextMenu "Violetexotic"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Violett exotic"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",true
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,187,187,187
SetRGB 1,0,0,0
SetRGB 2,255,255,255
SetRGB 3,204,0,153
EndScript
EndObject
TextMenu "blacky"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "blacky bounce"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",true
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,0,0,0
SetRGB 1,255,255,255
SetRGB 2,85,170,170
SetRGB 3,204,51,85
EndScript
EndObject
TextMenu "Banana"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Banana split"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",true
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,170,170,170
SetRGB 1,0,0,0
SetRGB 2,187,85,17
SetRGB 3,221,221,0
EndScript
EndObject
TextMenu "Pescafruit"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Pescafruit"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",true
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",false
SetRGB 0,170,170,170
SetRGB 1,0,0,0
SetRGB 2,255,17,68
SetRGB 3,238,136,0
EndScript
EndObject
TextMenu "GreenApple"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "GreenApple"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",true
SetObjectState "SpacyTint",false
SetRGB 0,153,153,153
SetRGB 1,0,0,0
SetRGB 2,238,170,51
SetRGB 3,0,136,0
EndScript
EndObject
TextMenu "Spacytint"
Definition
AttachTo OBJECT ,"Farbenwahl"
Font "personal",8 ; FontName, PointSize
PrintStyle PLAIN ,2,3 ; Style, Pen1, Pen2
TextColors 1,2,JAM2 ; PenA, PenB, DrawMode
Text "Spacytint"
MenuFlags CHECKABLE
Highlight COMPLEMENT
ShortCutKey ""
EndScript
Occurred
SetObjectState "Wb",false
SetObjectState "WBold",false
SetObjectState "Violetexotic",false
SetObjectState "blacky",false
SetObjectState "banana",false
SetObjectState "PescaFruit",false
SetObjectState "GreenApple",false
SetObjectState "SpacyTint",true
SetRGB 0,255,255,255
SetRGB 1,238,0,187
SetRGB 2,0,0,0
SetRGB 3,17,204,102
EndScript
EndObject
AKey "OnlineHelp"
Definition
QualifiersPressed NONE
KeyPressed HELP
EndScript
OnDown
If EXISTS ("sys:Utilities/Amigaguide")
Dos "Run >Nil: <Nil: Sys:Utilities/Amigaguide Textloader.guide" ; Run the application
Else
If EXISTS ("sys:Utilities/Multiview")
Dos "Run >Nil: <Nil: Sys:Utilities/Multiview Textloader.guide" ; Run the Aplic.
Else
If EXISTS ("sys:c/Amigaguide")
Dos "Run >Nil: <Nil: Sys:c/Amigaguide Textloader.guide"
Else
OpenRequester "SimpleReq","Kommentar","","Textloader Meldung...","Leider konnte ich die","Textloader OnlineHelp nicht","starten. Benötige Amigaguide, oder","Multiview für die Ausgabe!"
Let Info = AskForResponse("Die empfohlene Konfiguration ist:"||Char(10)||"OS3.1, 2mb-ChipRAM und FastRAM!"||Char(10)||"Programmiert mit CanDo 2.01 und 2.51!"||Char(10)||" "||Char(10)||" Textloader is a fine Product!","Textloader Infos...","")