What you are asking has nothing to do with SWFObject, so you are asking on
the wrong list (hence me trying to figure out what it was you were trying to
do in the first place).

A general forum like Kirupa or actionscript.org (or the French equivalents)
would be you best bet.

However - here is a simple 2 line function which will work for you (at least
to scrub a video file / image sequence using horizontal  mouse movements (it
will not loop the video))


this.onEnterFrame = function()
{
var goframe : Number = Math.round(_xmouse/(Stage.width/vidmc._totalframes));
vidmc.gotoAndStop(goframe)
}


// this assumes you have a moivieclip called vidmc on stage and that
vidmc contains
more than one frame (of the imported / embedded FLV / image sequence etc)

It works, but I will not be supplying any further help on this if you don't
understand what is happening etc.


Aran


On Mon, Apr 25, 2011 at 10:12 AM, Georges <[email protected]> wrote:

> Hi Aran
>
>  How can I better explain ! ;-) I try,
>
>  Yes I want to use swftools to create a swf file that can be
> manipulated by hand.
>
>  What I can not do this: incorporate video and my action script in the
> same file.
>
> Have you look the example on the page http://bigfrere.free.fr/swftools/
>
>  What I want to do is the right image
>
>  Is it more explicit ?
>
>  Thank for the reply
>
> Georges
>
> --
> You received this message because you are subscribed to the Google Groups
> "SWFObject" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/swfobject?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"SWFObject" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/swfobject?hl=en.

Reply via email to