home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 1 / boot-disc-1996-08.iso / bootcd.dir / 00470_Script_470 < prev    next >
Text File  |  1996-07-02  |  782b  |  17 lines

  1. on mouseUp
  2.   global gThisExecutable
  3.   --gThisExecutable is set by clicking on one of the programs listed
  4.   --in the Workbench subcategory field on screen
  5.   
  6.   if voidP(gThisExecutable) or (gThisExecutable = EMPTY) then exit
  7.   put "About to open the app" && gThisExecutable
  8.   if the machineType = 256 then open gThisExecutable
  9.   else alert "On PC this would open the DOS app at:" && gThisExecutable
  10.   --Reset Install button to unhilited, since the hilited selection in the field
  11.   --will automatically unhilite also, and since user probably doesn't need
  12.   --to install twice.  User can always reselect the line in the field
  13.   --to do it again.
  14.   set the memberNum of sprite 12 = the number of member "Workbench Install"
  15.   set gThisExecutable = EMPTY
  16.   updateStage
  17. end