1

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~

Zeeshan Rang
  • 19,375
  • 28
  • 72
  • 100

1 Answers1

1

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

Dennis Jaamann
  • 3,547
  • 2
  • 23
  • 42