home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 14 / AACD14.ISO / Welcome < prev    next >
AmigaDOS Script File  |  2000-09-06  |  7KB  |  242 lines

  1. .key CHECK/K,QUIET/K,VOL/K
  2. .bra {
  3. .ket }
  4.  
  5. ;set echo on
  6.  
  7. ;;; CD to AACD root if run from elsewhere, e.g. AutoRun
  8. cd >NIL: {VOL}
  9. ;;;
  10. ;;; Check argument - exit if Welcome has been run, otherwise ask
  11.     If {CHECK} EQ "YES"
  12.         Assign >NIL: AACD: EXISTS
  13.         If NOT WARN
  14.             Skip ABORT
  15.         Else
  16.             set init `:System/C/RequestChoice "Amiga Active CD" "Some assigns need to be made before we can proceed.*NYou can remove them later with the RemoveCD icon" "OK|Cancel"`
  17.             If $init EQ 0
  18.                 Skip ABORT
  19.                 EndIf
  20.             EndIf
  21.         EndIf
  22. ;;;
  23. ;;; Skip to HTML if Welcome has already been run
  24. Assign >NIL: AACD: EXISTS
  25. If NOT WARN
  26.     Skip HTML
  27.     EndIf
  28. ;;;
  29. ;;; Set up temporary assign
  30. Assign AACDtmp: :
  31. set ReqTitle Welcome to the Amiga Active CD
  32. ;;;
  33. ;;; Check for some system assigns
  34. ; MUI
  35. Assign MUI: EXISTS >NIL:
  36. If WARN
  37.     AACDtmp:System/C/RequestChoice >NIL: "`get ReqTitle`" "Some of the software on this CD requires MUI*NIf you use it regularly you should install MUI to your hard drive.*NThe installer is in the CDTools drawer of this CD" "I see"
  38.     Assign >NIL: MUI: AACDtmp:CDTools/MUI
  39.     Assign >NIL: LIBS: AACDtmp:CDTools/MUI/libs ADD
  40.     EndIf
  41. ; ClassAct
  42. If NOT EXISTS LIBS:window.class
  43.     AACDtmp:System/C/RequestChoice >NIL: "`get ReqTitle`" "Some of the software on this CD requires ClassAct*NIf you use it regularly you should install ClassAct to your hard drive.*NThe installer is in the CDTools drawer of this CD" "I see"
  44.     EndIf
  45. ;;;
  46. ;;; Start arexx if not running
  47. AACDtmp:System/rexxc/rx "address command" >NIL:
  48. If WARN
  49.     AACDtmp:System/System/RexxMast >NIL:
  50.     Wait 3
  51.     EndIf
  52. rx "call addlib('rexxsupport.library',0,-30,0)
  53. ;;;
  54. ;;; Make sure files needed by CD system are available
  55. ; muirexx.library
  56. If NOT EXISTS LIBS:muirexx.library
  57.     Copy >NIL: AACDtmp:CDTools/MUI/Libs/muirexx.library MUI:Libs CLONE
  58. Else
  59.     Version >NIL: muirexx.library 19 9
  60.     If WARN
  61.         Copy >NIL: AACDtmp:CDTools/MUI/Libs/muirexx.library MUI:Libs CLONE
  62.         EndIf
  63.     EndIf
  64. ; icon.mcc
  65. Version >NIL: MUI:Libs/MUI/Icon.mcc 1 1
  66. If WARN
  67.     Copy >NIL: AACDtmp:Icon.mcc MUI:Libs/MUI CLONE
  68.     EndIf
  69. ; MUIRexx
  70. which >NIL: MUIRexx
  71. if WARN
  72.     copy AACDtmp:MUIRexx SYS:Rexxc clone quiet'
  73.     path SYS:Rexxc ADD
  74.     endif
  75. ; AACDfile
  76. If NOT EXISTS C:AACDfile
  77.     Copy >NIL: AACDtmp:System/C/AACDfile C: CLONE QUIET
  78.     EndIf
  79. ; AAShowDir
  80. Version >NIL: REXX:AAShowDir 1 6
  81. If WARN
  82.     Copy >NIL: AACDtmp:CDTools/S/AAShowDir REXX: CLONE
  83.     EndIf
  84. ; AAExtract
  85. Version >NIL: REXX:AAExtract 1 1
  86. If WARN
  87.     Copy >NIL: AACDtmp:CDTools/S/AAExtract REXX: CLONE
  88.     EndIf
  89. ; AAExtract
  90. Version >NIL: REXX:AAGoFetch 1 0
  91. If WARN
  92.     Copy >NIL: AACDtmp:CDTools/S/AAGoFetch REXX: CLONE
  93.     EndIf
  94. ; IDer
  95. Version >NIL: C:IDer 1 6
  96. If WARN
  97.     Copy >NIL: AACDtmp:System/C/IDer C: CLONE
  98.     EndIf
  99. ; FlashFind
  100. which >NIL: FlashFind
  101. If WARN
  102.     copy AACDtmp:System/C/FlashFind C: clone quiet
  103.     Endif
  104. ; AWeb config
  105. If NOT EXISTS ENVARC:AWeb3DEMO
  106.     Makedir >NIL: ENVARC:AWeb3DEMO
  107.     Makedir >NIL: ENV:AWeb3DEMO
  108.     Endif
  109. If NOT EXISTS ENVARC:AWeb3DEMO/Amigactive
  110.     Makedir >NIL: ENVARC:AWeb3DEMO/Amigactive
  111.     Makedir >NIL: ENV:AWeb3DEMO/Amigactive
  112.     Copy AACDtmp:System/Prefs/env-archive/AWeb3DEMO/Amigactive/#? ENVARC:AWeb3DEMO/Amigactive CLONE QUIET
  113.     Copy AACDtmp:System/Prefs/env-archive/AWeb3DEMO/Amigactive/#? ENV:AWeb3DEMO/Amigactive CLONE QUIET
  114.     Endif
  115. If EXISTS ENVARC:AWeb3
  116.     If NOT EXISTS ENVARC:AWeb3/Amigactive
  117.         Makedir >NIL: ENVARC:AWeb3/Amigactive
  118.         Makedir >NIL: ENV:AWeb3/Amigactive
  119.         Copy AACDtmp:System/Prefs/env-archive/AWeb3DEMO/Amigactive/#? ENVARC:AWeb3/Amigactive CLONE QUIET
  120.         Copy AACDtmp:System/Prefs/env-archive/AWeb3DEMO/Amigactive/#? ENV:AWeb3/Amigactive CLONE QUIET
  121.         Endif
  122.     Endif
  123. ;;;
  124. ;;; Give option for setting CD preferences, if not already done
  125. If NOT EXISTS ENV:AACD.prefs
  126.     If NOT EXISTS S:AACD.prefs
  127.         Version >NIL: version 39
  128.         If NOT WARN
  129.             Copy >NIL: AACDtmp:CDTools/S/AACD.prefs ENV:
  130.             Copy >NIL: AACDtmp:CDTools/S/AACD.prefs ENVARC:
  131.             set NoPrefs 1
  132.         Else
  133.             Copy >NIL: AACDtmp:CDTools/S/AACD.prefs_OS2 ENV:AACD.prefs
  134.             EndIf
  135.         EndIf
  136.     EndIf
  137. If NOT EXISTS ENV:AACDfile.prefs
  138.     If NOT EXISTS S:AACDfile.prefs
  139.         Version >NIL: version 39
  140.         If NOT WARN
  141.             Copy >NIL: AACDtmp:CDTools/S/AACDfile.prefs ENV:
  142.             Copy >NIL: AACDtmp:CDTools/S/AACDfile.prefs ENVARC:
  143.             set NoPrefs 1
  144.         Else
  145.             Copy >NIL: AACDtmp:CDTools/S/AACDfile.prefs_OS2 ENV:AACDfile.prefs
  146.             EndIf
  147.         EndIf
  148.     EndIf
  149. If $NoPrefs EQ 1
  150.     set edit `RequestChoice "Amigaactive CD" "AACD has a preferences program to specify*N the tools used to view/hear different types of files.*NWould you like to run it now?" "Yes|No"`
  151.     If $edit EQ 1
  152.         stack 16384
  153.         MuiRexx AACDPrefs port AACDPREFS
  154.     Else
  155.         RequestChoice >NIL: "Amiga Active CD" "You can run AACD preferences at any time.*NEither from its icon or from the Setup page of the documentation." "OK"
  156.         EndIf
  157.     EndIf
  158. ;;;
  159. ;;; Set assigns for programs on this CD and system drawers
  160. Execute AACDtmp:CDTools/S/ThisCD
  161. Assign >NIL: DEVS:    AACDtmp:System/Devs ADD
  162. Assign >NIL: Fonts:   AACDtmp:System/Fonts ADD
  163. Assign >NIL: Libs:    AACDtmp:System/Libs ADD
  164. Assign >NIL: L:       AACDtmp:System/L ADD
  165. Assign >NIL: S:       AACDtmp:CDTools/S ADD
  166. Assign >NIL: REXX:    AACDtmp:CDTools/S ADD
  167. Assign >NIL: LIBS:    AACDtmp:System/Classes ADD
  168.  
  169. ; Make environment variables defined on CD available to system
  170. Failat 21
  171. Assign >NIL: ENV: AACDtmp:System/Prefs/Env-Archive ADD
  172. ; For HappyENV users
  173. If FAIL
  174.     Assign >NIL: ENVARC: AACDtmp:System/Prefs/Env-Archive ADD
  175.     EndIf
  176. ;;;
  177. ;;;Check for NewIcons if not already running
  178. If $NoNewIcons NOT EQ TRUE
  179.     AACDtmp:System/C/isnirunning
  180.     If NOT WARN
  181.         Version >NIL: Version 44
  182.         If Warn
  183.             set RunNI `AACDtmp:System/C/RequestChoice "Amiga Active CD" "This CD is set up for use with NewIcons*NIf you do not run Newicons the icon*Nimages and layout may look strange.*N*NWould you like to run NewIcons now?" "Yes|No"`
  184.             If $RunNI EQ 1
  185.                 Run <>NIL: AACDtmp:System/C/NewIcons
  186.                 EndIf
  187.             EndIf
  188.         EndIf
  189.     EndIf
  190. ;;;
  191. ;;; Change temporary assign to permanent one
  192. If {QUIET} NOT EQ "YES"
  193.     Run >NIL: RequestChoice >NIL: "`get ReqTitle`" "We have set up some assigns to run software from the CD.*N*NIf you wish to remove the CD from the drive, doubleclick the RemoveCD icon,*Notherwise the icon will stay on your Workbench." " OK "
  194.     Endif
  195. Assign AACD: AACDtmp:
  196. Assign AACDtmp:
  197. ;;;
  198. ;;; Do this if this is the first time this CD has been initialised
  199. If `cd` GT $AACDlast
  200.     rx AACD:CDTools/S/UpdateIndices
  201.     setenv ENVARC:AACDNewsFlash 1
  202.     setenv AACDlast `cd`
  203.     copy ENV:AACDlast ENVARC: QUIET
  204.     EndIf
  205. ;;;
  206. ;;; Load HTML - using registered AWeb if available
  207. LAB HTML
  208. If {QUIET} EQ "YES"
  209.     If NOT EXISTS ENVARC:AACDNewsFlash
  210.         Skip END
  211.         EndIf
  212.     EndIf
  213. set Browser AACD:AACD/Information/Browsers/AWeb3/AWebDemo
  214. Assign >NIL: AWeb3: EXISTS
  215. If NOT WARN
  216.     Version >NIL: AWeb3:AWeb-II 3 3
  217.     If NOT WARN
  218.         set Browser AWeb3:AWeb-II
  219.         If NOT EXISTS ENVARC:AWeb3/Amigactive
  220.             Makedir >NIL: ENVARC:AWeb3/Amigactive
  221.             Makedir >NIL: ENV:AWeb3/Amigactive
  222.             copy >NIL: AACD:System/Prefs/Env-Archive/AWeb3DEMO/AmigActive/#? ENVARC:AWeb3/Amigactive clone
  223.             copy >NIL: AACD:System/Prefs/Env-Archive/AWeb3DEMO/AmigActive/#? ENV:AWeb3/Amigactive clone
  224.             EndIf
  225.         EndIf
  226.     EndIf
  227. If $AACDView EQ "Lo-Res"
  228.     Run >NIL: $Browser `cd`Welcome_Lores.html LOCAL CONFIG Amigactive
  229. Else
  230.     Run >NIL: $Browser `cd`Welcome.html LOCAL CONFIG Amigactive
  231.     EndIf
  232. rx CDTools/S/HideButtons.awebrx
  233. If EXISTS ENVARC:AACDNewsFlash
  234.     Run >NIL: rx AACD:CDTools/S/NewsFlash.awebrx
  235.     EndIf
  236. ;;;
  237. ;;; Abort
  238. LAB END
  239. LAB ABORT
  240. ;;;
  241.  
  242.