Howdy all,
I am a NOOB, (kind a feels like being at an AA meeting),
Working on a slideshow gallery page for work (Lumber Yard w/ installed sales). Wanting to show off work of both our loyal contractors and our product, I designed a page to show off 5 movie clips (using the FLVPlayback Component), controlled by 5 buttons. The intention was that as the user clicks from button to button the action script would remove current movie from stage and memory and replace it with the new movie clip. I’ve seen some of the treads regarding removal of video but as of now nothing has paned out. But being a noob I’m most likely making mistakes trying to apply those fixes…
Here is my
import fl.video.FLVPlayback;
var vid:FLVPlayback = new FLVPlayback();
addChild(vid);
// sets Stage video placement X 260 Y 130
vid.x=260;
vid.y=130;
// sets Video clip size W 994 x H 665.1
vid.width=994;
vid.height=665.1;
vid.source="moreVidTest_10_2.flv";
vid.skin="SkinUnderAllNoFullNoCaption.swf";
vid.skinBackgroundColor=0x996600;
vid.skinBackgroundAlpha=0.0;
vid.autoPlay=true;
vid.autoRewind=true;
any thoughts would be great…
:beard: