home *** CD-ROM | disk | FTP | other *** search
-
- ;************************************************
- ;* AnimatED install script v1.2 (8-Apr-97) *
- ;************************************************
-
- ;*************
- ; Set strings
- ;*************
-
- (set #where-prompt
- (cat "Where should I install AnimatED? \n (No directory will be created!)"
- ))
-
- ;*************
- ; Ask dest dir
- ;*************
-
- (set where (askdir (prompt #where-prompt)
- (help @askdir-help)
- (default @default-dest)
- )
- )
-
- (set @default-dest where)
-
- ;***********
- ; Copy font
- ;***********
-
- (copyfiles (source "Fonts") (dest "SYS:Fonts") (all))
- (complete 5)
-
- ;************
- ; Copy files
- ;************
-
- (copyfiles (source "AnimatED") (dest where))
- (copyfiles (source "AnimatED.info") (dest where))
- (complete 40)
- (copyfiles (source "AnimatEDPlay") (dest where))
- (copyfiles (source "AnimatEDPlay.info") (dest where))
- (complete 60)
- (copyfiles (source "AnimatED.guide") (dest where))
- (copyfiles (source "AnimatED.guide.info") (dest where))
- (complete 70)
- (copyfiles (source "AED_OrderForm") (dest where))
- (copyfiles (source "AED_OrderForm.info") (dest where))
- (complete 75)
- (copyfiles (source "ReadMe") (dest where))
- (copyfiles (source "ReadMe.info") (dest where))
- (copyfiles (source "AnimComp.txt") (dest where))
- (copyfiles (source "AnimComp.txt.info") (dest where))
- (complete 80)
-
- ;********************
- ; Ask and copy extras
- ;********************
-
- (set name
- (askbool
- (prompt "\nDo you want to install the example?")
- (help "\n It's up to YOU!")
- )
- )
-
- (if (= name 1)
- (copyfiles (source "Example") (dest (tackon where "Example")) (all))
- )
-
- (complete 95)
-
- (set name
- (askbool
- (prompt "\nDo you want to install the ScriptConvert utility?")
- (help "\n This program is needed to convert AnimatED 1.1\n scripts to the new format.")
- )
- )
-
- (if (= name 1)
- (copyfiles (source "ScriptConvert") (dest where))
- )
- (if (= name 1)
- (copyfiles (source "ScriptConvert.info") (dest where))
- )
-
- (complete 100)
-
- ;****
- ;End
- ;****
-