RE: [Flashcoders] cuepoint/flvplayback question

2006-12-12 Thread Van De Velde Hans
You can put a listener on the scrubbing and the change event of the FLV
playback
and retrieve the last cue point with code:

Ex.
public function getLastCuePoint():Object {
var pht:Number = my_FLVPlybk.playheadTime;
for(var i:Number = cuePoint_array.length-1; i=0; i--){
if(pht = cuePoint_array[i].time) return
cuePoint_array[i];
}
return null;
}


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Michael
Appenzellar
Sent: dinsdag 12 december 2006 16:11
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] cuepoint/flvplayback question


Cuepoint question:
I have cuepoints working but they act strange if you move the video seekbar
aroundthe video shows the wrong cuepoint until the video hits the next
cuepointany way to have the cuepoint follow the seekbar position?

flvplayback question:
I have 2 videosI can show the first one and then show the 2nd one fine,
but I don't want to show any player controls, specifically the seekbar
during the first video...I have tried just putting a graphic over the
controls but that didn't work as expected.

 


Michael Appenzellar
Sr. Web Applications Developer


Mirame Interactive

http://www.mirameinteractive.com

301-663-5672 x6413

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] cuepoint/flvplayback question

2006-12-12 Thread Alain Rousseau
Have you tried using MediaDisplay instead of FlvPlayback ? You won't have
any controls showing, only your FLV. 
Or you can adjust your skin parameter of your component :

http://livedocs.macromedia.com/flash/8/main/3480.html#wp3797830


HTH

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Michael
Appenzellar
Sent: 12 décembre 2006 10:11
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] cuepoint/flvplayback question

Cuepoint question:
I have cuepoints working but they act strange if you move the video seekbar
aroundthe video shows the wrong cuepoint until the video hits the next
cuepointany way to have the cuepoint follow the seekbar position?

flvplayback question:
I have 2 videosI can show the first one and then show the 2nd one fine,
but I don't want to show any player controls, specifically the seekbar
during the first video...I have tried just putting a graphic over the
controls but that didn't work as expected.

 


Michael Appenzellar
Sr. Web Applications Developer


Mirame Interactive

http://www.mirameinteractive.com

301-663-5672 x6413

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com


--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.409 / Virus Database: 268.15.16/582 - Release Date: 2006-12-11
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.409 / Virus Database: 268.15.16/582 - Release Date: 2006-12-11
 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com