home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NEXT Generation 34
/
NEXT34.iso
/
pc
/
intro.dir
/
00055_Script_55
< prev
next >
Wrap
Text File
|
1997-08-11
|
413b
|
23 lines
--Finds the cd drive and then launches the specified path
--Requires the FileXtra
on findCD
set dlist to DrivesToList()
put dlist into field "driveList"
set x = count(dlist)
put x
repeat with i = 1 to x
set driveName = getAt(dlist, i)
set test = DriveIsCDROM(driveName)
if test = 0 then
put driveName into field "cdDrive"
end if
end repeat
end