[flexcoders] Adding Video Object on Stage By Using addchild() With Sound ONLY ( No Video )

2008-01-31 Thread flexawesome
Hey there, I am using as3 to add my video object on Stage, I can hear the sound but not video shows up.. anything wrong? Thank you = private function connectStream():void { //var videoHolder:UIComponent = new UIComponent(); stream = new NetSt

Re: [flexcoders] Adding Video Object on Stage By Using addchild() With Sound ONLY ( No Video )

2008-01-31 Thread YOGESH JADHAV
this.rawchildren.addChild(video); i think you have to use raw child methods for non UI components ( like this video ). On Feb 1, 2008 12:07 AM, flexawesome <[EMAIL PROTECTED]> wrote: > > Hey there, > > I am using as3 to add my video object on Stage, I can hear the sound > but not video shows up.

Re: [flexcoders] Adding Video Object on Stage By Using addchild() With Sound ONLY ( No Video )

2008-01-31 Thread YOGESH JADHAV
this.rawChildren.addChild(video); In case you are copy pasting. On Feb 1, 2008 11:16 AM, YOGESH JADHAV <[EMAIL PROTECTED]> wrote: > this.rawchildren.addChild(video); > > i think you have to use raw child methods for non UI components ( like > this video ). > > > On Feb 1, 2008 12:07 AM, flexaweso