SamuelSpitnale
Programmer
I am trying to open another window inside of a director movie, and play an .AVI file. Here is the script I have set up:
on mouseDown
open window "DrawingTheGun01"
end
on beginNewMovie chapter1Drawing
global newWindow
set newWindow to window "DrawingTheGun01"
set newWindow.rect to rect(0, 0, 250, 200)
set newWindow.DrawingTheGun01 to chapter1Drawing
set newWindow.titleVisible to FALSE
open newWindow
end beginNewMovie
Whenever I play the movie, and click on the button to open the movie, it asks me where the file is located. When I select the .AVI file, it says the file is not a director file. I don't want the .AVI file to be a directof file. Is there anyway I can open a movie in a window, and have it be an .AVI file?
on mouseDown
open window "DrawingTheGun01"
end
on beginNewMovie chapter1Drawing
global newWindow
set newWindow to window "DrawingTheGun01"
set newWindow.rect to rect(0, 0, 250, 200)
set newWindow.DrawingTheGun01 to chapter1Drawing
set newWindow.titleVisible to FALSE
open newWindow
end beginNewMovie
Whenever I play the movie, and click on the button to open the movie, it asks me where the file is located. When I select the .AVI file, it says the file is not a director file. I don't want the .AVI file to be a directof file. Is there anyway I can open a movie in a window, and have it be an .AVI file?