home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Inventor Labs: Technology
/
INVENTORLABS_TECHNOLOGY.BIN
/
pc
/
win3_1
/
appfiles
/
launch.dir
/
00001_Script_1
next >
Wrap
Text File
|
1997-07-24
|
1KB
|
44 lines
--mv Setup
global gPathDeliminator
global gQTVRpath
global gAvailbleInv
on Setup
if the machinetype = 256 then set gPathDeliminator = "\"
else set gPathDeliminator = ":"
if the platform = "Windows,32" then openXlib(the pathname & "AppFiles\FILEIO.X32")
else openXlib(the pathname & "AppFiles\FILEIO.X16")
set gQTVRpath = the pathname & "AppFiles" & gPathDeliminator
set gAvailbleInv = #All
end Setup
on GoGallery
if the machinetype = 256 then
set DataFile = new(xtra "fileio")
if objectp( DataFile ) then
set prefpathname = the pathname & "AppFiles\Prefs.txt"
openFile(DataFile, prefpathname, 0)
set dataString = readFile(DataFile)
closeFile(DataFile)
set pDataFile = 0
set CdDrive = dataString & gPathDeliminator
else alert( "Problem locating Inventor Labs Files. Please reinstall from the CD-ROM.")
else set CdDrive = "Invent:"
set GalleryPath = CdDrive & "Files" & gPathDeliminator & "Gallery.dir"
go movie GalleryPath
end GoGallery