[flexcoders] VideoDisplay help

2007-03-02 Thread john
do you know how can access the onMetaData, from VideoDisplay component. 
i use the VideoDisplay to play a stream flv file from a FVS, and i have problem 
with this component from Flex on buffering percent left from 100%, and with 
metadata :(

i search for information on doc's flex, googleing on the net... but don't find 
a userful article or tutorial in this way: VideoDisplay + streaming file from 
FMS.

thx
 

~
~~ ( John - Lost in Design ) ~
~



- Original Message 
From: Tom Chiverton [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, March 2, 2007 3:20:54 PM
Subject: Re: [flexcoders] Re: MenuBar Question (Relating to Styles)

On Friday 02 Mar 2007, nextadvantage wrote:
 Try setting the menu bar color: to white in the style explorer and
 you will see that it changes the bar color text to white and the drop
 down text to white making it un-readable. Aaron

Even if you change the background color to be not-white ? :-)
Play with it till you get something you like.

-- 
Tom Chiverton
Helping to authoritatively integrate high-end eyeballs
On: http://thefalken.livejournal.com



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links










 

Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com

Re: [flexcoders] VideoDisplay help

2007-03-02 Thread Muzak
I'm afraid the metadata is missing in the VideoDisplay component, or better 
yet, they forgot (?) a piece of code in the VideoDisplay 
class.

[Event(name=metadataReceived, type=mx.events.MetaDataEvent)]

and

 [Bindable(metadataReceived)]

You can listen to the metadataRecieved event through actionscript though, 
without modifying the VideoDisplay.as (which isn't a good 
idea anyways)

videoInstance.addEventListener(metadatReceived, metadataReceivedHandler)

uses:
 mx.events.MetadataEvent;

But the MetadataEvent class does not have a static property for 
metadataReceived.
Well it does, but's it's put under the mx_internal namespace :(

 mx_internal static const METADATA:String = metadataReceived;

Not sure why Adobe didn't make metadata public and bindable..

regards,
Muzak



- Original Message - 
From: john [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Friday, March 02, 2007 4:21 PM
Subject: [flexcoders] VideoDisplay help


do you know how can access the onMetaData, from VideoDisplay component.
i use the VideoDisplay to play a stream flv file from a FVS, and i have problem 
with this component from Flex on buffering percent 
left from 100%, and with metadata :(

i search for information on doc's flex, googleing on the net... but don't find 
a userful article or tutorial in this way: 
VideoDisplay + streaming file from FMS.

thx
 




[flexcoders] VideoDisplay Help

2006-12-01 Thread John Duff
Hoping  someone out there will be able to help me with this.

The VideoDisplay component uses a VideoPlayer object, which doesn't
seem to exist in Actionscript 3. How can it be used in the
VideoDisplay component, and how can I use it? I am writing an app and
want to have the ability to play a flv frame by fram, or jsut to a
frame and know the current frame. All of this funtionality is provided
by the VideoPlayer object, but can't be used in Actionscript 3.

When I finally figured out that the calss didn't actually exist
anymore, I started looking for something else and came across the
MovieClip object which provides all the same functionality. Problem is
I can't find anyway to load an flv, I tried using Netstream and such,
adding to a Video object and trying to add that to the MovieClip but
can't seem to make it work. Any Suggestions?