home *** CD-ROM | disk | FTP | other *** search
- ; Script for Installation of ScreenTab V1.12 (28.10.94)
- ; Author: Michael Link
- ; Last change : 30.10.94
-
- (set DIRHELP (cat "You must enter the name of the directory, in which\n"
- "ScreenTab should be installed.\n\n"
- "If you want ScreenTab to be active everytime you\n"
- "start the computer, enter the directory\n"
- "\"SYS:WBStartup\", which is the default directory."
- )
- )
-
- (set vernum (getversion "intuition.library" (resident)))
- (set ver (shiftright vernum 16))
-
- (
- set DIR (
- askdir (prompt (cat "Please enter the destination directory\n"
- "for ScreenTab"))
- (help DIRHELP)
- (default "SYS:WBStartup")
- )
- )
-
- (set @default-dest DIR)
-
- (
- set HOTKEY (
- askstring (prompt (cat "With which key combination shall the\n"
- "preferences be called ?"))
- (help @askstring-help)
- (default "ctrl alt s")
- )
- )
-
- (
- set SWITCHKEY (
- askstring (prompt (cat "With which key combination shall the\n"
- "screen be switched ?"))
- (help @askstring-help)
- (default "LAmiga Tab")
- )
- )
-
- (
- set TOOLPRI (
- askstring (prompt "Enter the task priority for ScreenTab\n")
- (help @askstring-help)
- (default "5")
- )
- )
-
- (tooltype (prompt "Writing Tool-Type HOTKEY")
- (help)
- (dest "ScreenTab")
- (settooltype "CX_POPKEY" HOTKEY)
- )
-
- (tooltype (prompt "Writing Tool-Type SWITCHKEY")
- (help)
- (dest "ScreenTab")
- (settooltype "SWITCHKEY" SWITCHKEY)
- )
-
- (tooltype (prompt "Writing Tool-Type TOOLPRI")
- (help)
- (dest "ScreenTab")
- (settooltype "TOOLPRI" TOOLPRI)
- )
-
- (
- copyfiles (prompt ("Copying ScreenTab to %s" DIR) )
- (help @copyfiles-help)
- (source "ScreenTab")
- (dest DIR)
- (infos)
- )
-
- (if (= (exists "ENVARC:ScreenTab.prefs") 1)
- (if (askbool (prompt (cat "\n\nThere already exists a ScreenTab\n"
- "preferences file.\n"
- "Shall I overwrite it ?"))
- (help)
- (default 0)
- )
- (copyfiles (prompt "Copying preferences file ...")
- (help)
- (source "ScreenTab.prefs")
- (dest "ENVARC:")
- )
- )
- (copyfiles (prompt "Copying preferences file ...")
- (help)
- (source "ScreenTab.prefs")
- (dest "ENVARC:")
- )
- )
-
-