Zeeshan Rang
Zeeshan Rang

Reputation: 19885

Flex3 VideoDisplay to Flex4 VideoDisplay

My Flex3 VideoDisplay is shown below:

<extensions:SmoothVideo
        id="vidWin"
        volume="1"
        playheadUpdateInterval="10"
        playheadUpdate="onPlayheadUpdate();"
        bufferTime="0.5"
        width="320" height="240"            
        metadataReceived="onMetaData( event );"/>

How do I change is to Flex 4 videoDisplay: as the Flex4 component does not have property for metadataReceived and playheadUpdateInterval and bufferTime.

Thanks in advance

Best ~Z~

Upvotes: 1

Views: 598

Answers (1)

Dennis Jaamann
Dennis Jaamann

Reputation: 3565

Take a look at the Adobe LiveDocs

I'm afraid that according to this there is no equivalent for what you are looking for.

Maybe you can have a look at Adobe's Open Source Media Framework for this or just keep on using the <mx:VideoDisplay> component within your spark application since flex 4 is backwards compatible.

Cheers

Upvotes: 1

Related Questions