ya u can use video display , but if your using fms/rtmp combination it is better to use Video object then attach netstream to it. It will give more control to functionality / interactivity and offcourse errors. It is good idea to control the played video form FMS server side using streams instead of using client side logic. For streams part u can refer to this http://www.adobe.com/devnet/flashmediaserver/articles/learning_fms2_excerpt/learning_fms2_ch09.pdf
On Feb 1, 2008 1:17 PM, greg h <[EMAIL PROTECTED]> wrote: > Hi Don, > > In a Flex/AIR app, the simplest way to do load video is using the > component <mx:VideoDisplay> > > You can just copy the example in the docs here: > > http://livedocs.adobe.com/labs/flex3/langref/mx/controls/VideoDisplay.html#includeExamplesSummary > > Note that as written, the doc example is for a progressive download via > http. Specifically note the value being passed on the source= property: > source="assets/phone.flv" > Since no protocol is specified in this example, http is implied by the > relative reference to the flv file. (This same, simple component also > supports streaming. If the flv was being streamed the protocol RMTP would > need to be included in the URI passed to the source= property.) > > If you copy the example in the docs into your project, you will need the > absolute path to the example flv file. So just replace the URI passed to > the source= property to the following: > source=" > http://examples.adobe.com/flex2/inproduct/sdk/explorer/controls/assets/phone.flv > " > > Of course, you can also specify any valid URI to any valid flv (including > your own ;-) > > Please post back if you have any follow-up questions. > > hth, > > g > > -- Regards, Yogesh

