peteloaf
11-19-2009, 09:14 AM
Hi there. i am trying to make a small video gallery, and i'm running into problems.
what i have is the first frame of the movie has buttons linking to the corresponding frame for the video.
the video is on a movieclip, i basically opened a new movie clip, and used the import video function in flash CS$pro and chose progressive download.
the video works fine, as do the buttons initially, however once the clip is loaded it seems to disable the back button.
back button code is :
back_btn.addEventListener(MouseEvent.MOUSE_DOWN, backbut);
function backbut(event:MouseEvent):void {
gotoAndStop("home");
}
exactly the same bar the name of the button, function, and target frame as the buttons that load the movie.
it's not a problem with the video not unloading per se, as it's not fullscreen and i'd be able to see if the buttons were underneath it. is this an issue with the automatic video import function and if so, is there a better way to do it?
what i have is the first frame of the movie has buttons linking to the corresponding frame for the video.
the video is on a movieclip, i basically opened a new movie clip, and used the import video function in flash CS$pro and chose progressive download.
the video works fine, as do the buttons initially, however once the clip is loaded it seems to disable the back button.
back button code is :
back_btn.addEventListener(MouseEvent.MOUSE_DOWN, backbut);
function backbut(event:MouseEvent):void {
gotoAndStop("home");
}
exactly the same bar the name of the button, function, and target frame as the buttons that load the movie.
it's not a problem with the video not unloading per se, as it's not fullscreen and i'd be able to see if the buttons were underneath it. is this an issue with the automatic video import function and if so, is there a better way to do it?