home *** CD-ROM | disk | FTP | other *** search
- on FIGURECDBEGIN
- set aMov to "Start"
- set aMov to CONVERTCDNUMSTRTOMOVIE(aMov)
- go(1, aMov)
- end
-
- on CONVERTCDNUMSTRTOMOVIE aMov
- set amachine to the machineType
- if amachine = 256 then
- set sepchar to "\"
- set apath to the pathName
- set cnum to the number of chars in apath
- repeat with x = 1 to cnum
- if char x of apath = sepchar then
- set adisk to char 1 to x of apath
- exit repeat
- end if
- end repeat
- set partStr to adisk & "Data" & sepchar
- set diskStr to adisk
- else
- set sepchar to ":"
- set partStr to "MOAG:DATA:"
- set diskStr to "MOAG:"
- end if
- if aMov = "Start" then
- return diskStr & "OPENDATA" & sepchar & "INTRO"
- else
- if aMov = "Help" then
- return diskStr & "OPENDATA" & sepchar & "MOAGBOUT"
- else
- if aMov = "MenuXLib" then
- return diskStr & "DATA" & sepchar & "XLIBS" & sepchar & "REAROBJ"
- else
- if aMov = "FileXLib" then
- return diskStr & "DATA" & sepchar & "XLIBS" & sepchar & "FILEOBJ"
- else
- if aMov = "MemoryXLib" then
- return diskStr & "DATA" & sepchar & "XLIBS" & sepchar & "MEMOBJ"
- else
- return diskStr & "LITESIDE" & sepchar & "OUTLI55"
- end if
- end if
- end if
- end if
- end if
- end
-