[flexcoders] Re: VideoDisplay - video is playing, but without audio

2010-03-08 Thread joyh2002
I don't observe the patterns you described. Here is a link with some info: https://bugs.adobe.com/jira/browse/SDK-17016 Maybe checking out the memory usage of your app? I tried re-using objects instead of creating and destroying them. It seems working fine for me now. Joy --- In flexcoders@y

[flexcoders] Re: VideoDisplay

2009-02-27 Thread spinglittery
For a complete example project you can use check out http://www.flashcomguru.com/index.cfm/2009/1/15/FLVPlayback-2_5-component-in- Flex. Maybe have a look at: www.video-flash.de for a good open source player. Or google... There are lots out there. With examples of how to load the video (I use

[flexcoders] Re: VideoDisplay play/pause button

2008-09-06 Thread sleekdigital
I found the problem... The Button class has a default click handler that does this... if (toggle) { setSelected(!selected); event.updateAfterEvent(); } So after the binding set the selected property to false, this handler would set it back to true again.

[flexcoders] Re: VideoDisplay play/pause button

2008-09-06 Thread sleekdigital
Sure I could use 2 separate buttons, but it I'd like to use one button and toggle it. It should work... in fact it does work with progressive download. I want to know why it doesn't work with streaming and if there is a simple way to fix it. --- In flexcoders@yahoogroups.com, "Igor Costa" <[EMAI

[flexcoders] Re: VideoDisplay autobandwidth and FMS3

2008-08-18 Thread celumbra
--- In flexcoders@yahoogroups.com, "celumbra" <[EMAIL PROTECTED]> wrote: > > I am looking for examples of using the autobandwidth property of Flex's > VideoDisplay and > FMS3's new support for automatically calculating bandwidth. Anyone done this? > I found a number of examples here: http://www

[flexcoders] Re: VideoDisplay volume problem

2007-05-29 Thread beecee1977
Have you looked at the reply in this thread? Anyway, here's another thread on same: http://tech.groups.yahoo.com/group/flexcoders/message/75277 If you don't want to subclass, another trick that might help is setting the volume to some random value before setting it to the value you want. (I t

[flexcoders] Re: VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread beecee1977
That did the trick thanks. For when I get a chance I should really log a bug... anyone got the url for that handy? For anyone else with this problem, so long as you know you'll be ALWAYS calling load() before play(), having done a close() this will do the job: package libraries.utility {

Re: [flexcoders] Re: VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread Daniel Freiman
mx_internal is easy to access because it's just a namespace. Simply import mx.core.mx_internal. After the imports type the line: use namespace mx_internal; There should be a complete discussion if you just search through the mailing list archives for 'mx_internal' specifically or you can just

[flexcoders] Re: VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread beecee1977
P.S. If it's any easier to access an mx_internal variable than a private variable (when sub-classing/extending a control) that'll work too! Cheers Bill --- In flexcoders@yahoogroups.com, "beecee1977" <[EMAIL PROTECTED]> wrote: > > Hi, > > I would normally spend more time trying to work this o

Re: [flexcoders] Re: VideoDisplay won't load first frame

2007-02-12 Thread Muzak
2007 6:20 PM Subject: [flexcoders] Re: VideoDisplay won't load first frame Thanks Muzak, Unfortunately that didn't do the trick either... Any other ideas? Brian

[flexcoders] Re: VideoDisplay won't load first frame

2007-02-12 Thread klumikaze
Thanks Muzak, Unfortunately that didn't do the trick either... Any other ideas? Brian --- In flexcoders@yahoogroups.com, "Muzak" <[EMAIL PROTECTED]> wrote: > > Try calling myVidDisplay.load() in the 'ready' event handler instead of the 'creationComplete' event handler. > > regards, > Muzak >