Re: [Flashcoders] web video

2010-03-03 Thread Valentin Schmidt
Valentin Schmidt wrote: > in case you want to follow my suggestion and simply use programmatical > ASCuepoints of hardcoded cuepopints, here same simple sdemo code that > works fine: I'm sorry, I was very distracted :-) once more: ... use programmatical ASCuepoints instead of hardcoded cuepoints,

Re: [Flashcoders] web video

2010-03-03 Thread Valentin Schmidt
in case you want to follow my suggestion and simply use programmatical ASCuepoints of hardcoded cuepopints, here same simple sdemo code that works fine: import fl.video.*; var myFLV:FLVPlayback = new FLVPlayback(); myFLV.source = "test.flv"; myFLV.addASCuePoint({time:0.5, name:"cp1"}); myFLV.addA

Re: [Flashcoders] web video

2010-03-03 Thread Bob Wohl
r(MetadataEvent.CUE_POINT, doThis); >>> function doThis(e:Event):void{ >>> } >>> ... >>> On Wed, Mar 3, 2010 at 9:45 AM, Gustavo Duenas < >>> gdue...@leftandrightsolutions.com> wrote: >>> >>>> it might start automatically >&g

Re: [Flashcoders] web video

2010-03-03 Thread Karl DeSaulniers
automatically? --Original Message-- From: Gustavo Duenas Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] web video Sent: Mar 2, 2010 6:40 PM Hi coders I know that I can control a flv from as3, but there is a way to do

Re: [Flashcoders] web video

2010-03-03 Thread Gustavo Duenas
play or does it start automatically? --Original Message-- From: Gustavo Duenas Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] web video Sent: Mar 2, 2010 6:40 PM Hi coders I know that I can control a flv from as3

Re: [Flashcoders] web video

2010-03-03 Thread Gustavo Duenas
when it starts and when it hits 45 seconds call your function. Are your users pressing play or does it start automatically? --Original Message-- From: Gustavo Duenas Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders

Re: [Flashcoders] web video

2010-03-03 Thread Valentin Schmidt
Valentin Schmidt wrote: > Sam Brown wrote: >> you can embed cuepoints in the flv and listen for them to cue events. Most >> reliable way to embed them is via the Adobe Media Encoder > > there is no need to embedd such end cuepoints into the file, you can as > well add them programmatically at runt

Re: [Flashcoders] web video

2010-03-03 Thread Valentin Schmidt
Sam Brown wrote: > you can embed cuepoints in the flv and listen for them to cue events. Most > reliable way to embed them is via the Adobe Media Encoder there is no need to embedd such end cuepoints into the file, you can as well add them programmatically at runtime (using the addASCuePoint metho

Re: [Flashcoders] web video

2010-03-03 Thread Sam Brown
45 seconds >> call your function. >> >> Are your users pressing play or does it start automatically? >> >> >> --Original Message-- >> From: Gustavo Duenas >> Sender: flashcoders-boun...@chattyfig.figleaf.com >> To: Flash Coders List >>

Re: [Flashcoders] web video

2010-03-03 Thread Gustavo Duenas
Sender: flashcoders-boun...@chattyfig.figleaf.com To: Flash Coders List ReplyTo: Flash Coders List Subject: [Flashcoders] web video Sent: Mar 2, 2010 6:40 PM Hi coders I know that I can control a flv from as3, but there is a way to do the opposite? I mean I have a video (flv) in one movie clip

Re: [Flashcoders] web video

2010-03-02 Thread Nathan Mynarcik
Coders List Subject: [Flashcoders] web video Sent: Mar 2, 2010 6:40 PM Hi coders I know that I can control a flv from as3, but there is a way to do the opposite? I mean I have a video (flv) in one movie clip, when the video reaches the second 45, can I trigger an event? is that possible?, if so

Re: [Flashcoders] web video

2010-03-02 Thread Karl DeSaulniers
Google "AS3 cue points" Karl Sent from losPhone On Mar 2, 2010, at 6:40 PM, Gustavo Duenas > wrote: Hi coders I know that I can control a flv from as3, but there is a way to do the opposite? I mean I have a video (flv) in one movie clip, when the video reaches the second 45, can I trigge

Re: [Flashcoders] web video

2010-03-02 Thread Karl DeSaulniers
I think cue points are your friend on this one. You have to put cue points in your video then reference the cue points in your AS. Karl Sent from losPhone On Mar 2, 2010, at 6:40 PM, Gustavo Duenas > wrote: Hi coders I know that I can control a flv from as3, but there is a way to do the

Re: [Flashcoders] web video

2010-03-02 Thread Eric E. Dolecki
Use cuePoints... Google that. Each triggers an event. Thanks, Eric On Mar 2, 2010, at 7:40 PM, Gustavo Duenas > wrote: Hi coders I know that I can control a flv from as3, but there is a way to do the opposite? I mean I have a video (flv) in one movie clip, when the video reaches the secon

[Flashcoders] web video

2010-03-02 Thread Gustavo Duenas
Hi coders I know that I can control a flv from as3, but there is a way to do the opposite? I mean I have a video (flv) in one movie clip, when the video reaches the second 45, can I trigger an event? is that possible?, if so there is a tutorial pointing to that in the internet? Regards,