home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- cursor(4)
- set the colorDepth to 8
- put "importing" into field "importStatus"
- if the hilite of cast "backgrounds" = 1 then
- set thePath to the moviePath & "01 backgrounds:"
- repeat with x = 1 to 9
- importFileInto(cast x, thePath & getNthFileNameInFolder(thePath, x))
- set the regPoint of cast x to point(320, 240)
- saveIfNeeded()
- if the width of cast x = 640 then
- put x into field (the number of cast "backgrounds" + 11)
- end if
- end repeat
- end if
- if the hilite of cast "bio - flip pictures" = 1 then
- set thePath to the moviePath & "02 bio - flip pictures:"
- set x to 1
- repeat while getNthFileNameInFolder(thePath, x) <> EMPTY
- importFileInto(cast (x + 27), thePath & getNthFileNameInFolder(thePath, x))
- set the regPoint of cast (x + 27) to point(the width of cast (x + 27) / 2, the height of cast (x + 27) / 2)
- saveIfNeeded()
- put x into field (the number of cast "bio - flip pictures" + 11)
- set x to x + 1
- end repeat
- end if
- if the hilite of cast "photo - thumbnail" = 1 then
- set thePath to the moviePath & "03 photo - thumbnail:"
- set x to 1
- repeat while getNthFileNameInFolder(thePath, x) <> EMPTY
- importFileInto(cast (x + 54), thePath & getNthFileNameInFolder(thePath, x))
- set the regPoint of cast (x + 54) to point(the width of cast (x + 54) / 2, the height of cast (x + 54) / 2)
- saveIfNeeded()
- put x into field (the number of cast "photo - thumbnail" + 11)
- set x to x + 1
- end repeat
- end if
- if the hilite of cast "photo - full screen" = 1 then
- set thePath to the moviePath & "04 photo - full screen:"
- set x to 1
- repeat while getNthFileNameInFolder(thePath, x) <> EMPTY
- importFileInto(cast (x + 126), thePath & getNthFileNameInFolder(thePath, x))
- set the regPoint of cast (x + 126) to point(the width of cast (x + 126) / 2, the height of cast (x + 126) / 2)
- saveIfNeeded()
- put x into field (the number of cast "photo - full screen" + 11)
- set x to x + 1
- end repeat
- end if
- if the hilite of cast "text - text" = 1 then
- set thePath to the moviePath & "05 text - text:"
- set theFile to FileIO(mnew, "read", thePath & getNthFileNameInFolder(thePath, 1))
- set the text of cast 10 to theFile(mReadToken, EMPTY, EMPTY)
- theFile(mdispose)
- if the text of cast 10 <> EMPTY then
- put 1 into field (the number of cast "text - text" + 11)
- end if
- end if
- if the hilite of cast "bio - text" = 1 then
- set thePath to the moviePath & "06 bio - text:"
- set x to 1
- repeat while getNthFileNameInFolder(thePath, x) <> EMPTY
- set theFile to FileIO(mnew, "read", thePath & getNthFileNameInFolder(thePath, x))
- set the text of cast (x + 10) to theFile(mReadToken, EMPTY, EMPTY)
- theFile(mdispose)
- put x into field (the number of cast "bio - text" + 11)
- set x to x + 1
- end repeat
- end if
- if the hilite of cast "photo - text" = 1 then
- set thePath to the moviePath & "07 photo - text:"
- set theFile to FileIO(mnew, "read", thePath & getNthFileNameInFolder(thePath, 1))
- set the text of cast 26 to theFile(mReadToken, EMPTY, EMPTY)
- theFile(mdispose)
- if line the number of lines in field 26 of field 26 = EMPTY then
- delete line the number of lines in field 26 of field 26
- end if
- put the number of lines in field 26 into field (the number of cast "photo - text" + 11)
- end if
- if the hilite of cast "film clips" = 1 then
- set x to 10
- repeat while char 1 of getNthFileNameInFolder(the moviePath, x) <> "c"
- importFileInto(cast (x + 189), the moviePath & getNthFileNameInFolder(the moviePath, x))
- saveIfNeeded()
- put x - 10 into field (the number of cast "film clips" + 11)
- set x to x + 1
- end repeat
- end if
- if the hilite of cast "sound clips" = 1 then
- set n to 212
- repeat while char 1 of getNthFileNameInFolder(the moviePath, x) = "c"
- importFileInto(cast n, the moviePath & getNthFileNameInFolder(the moviePath, x))
- saveIfNeeded()
- put n - 211 into field (the number of cast "sound clips" + 11)
- set x to x + 1
- set n to n + 1
- end repeat
- end if
- if (the hilite of cast "film clips" = 1) or (the hilite of cast "sound clips" = 1) then
- repeat with x = 199 to 223
- if the castType of cast x <> #digitalVideo then
- next repeat
- end if
- set the directToStage of cast x to 1
- set the controller of cast x to 1
- if the width of cast x = 0 then
- set the video of cast x to 0
- end if
- end repeat
- end if
- put "saving" into field "importStatus"
- saveMovie()
- cursor(-1)
- put "done" into field "importStatus"
- end
-
- on saveIfNeeded
- if (the freeBlock / 1024) < 1024 then
- cursor(4)
- put "saving" into field "importStatus"
- saveMovie()
- unLoadCast()
- put "importing" into field "importStatus"
- end if
- end
-