I am having a problem with an swf file that I load.  It is a help 
video.  If I go to the help and watch the video half way through and 
close the window, I try to go back to help and it flashes a lot and 
goes back to the beginning of the video.  It is like it is rewinding 
the video while showing you the frames as it rewinds. 

I am looking for a way to rewind the swf file before we display the 
help again.  I have found some examples, but so far nothing has 
worked.  I am loading the swf on demand to reduce the size of our 
application swf file and only download the swf file if needed.  Here 
is the action script code:

     function init():void
     {
        help.load("/local/en_US/help.swf");
     }

Here is the mxml code:

            <mx:SWFLoader id="help" width="100%" height="100%" 
src="/local/en_US/help.swf" cachePolicy="on" 
maintainAspectRatio="true"/>


Reply via email to