[flexcoders] Re: addChild from String

2006-02-19 Thread pwhite40
Did you ever get an answer on this? I'm running into the same problem with getClassByName(MyCustomClass) blowing up unless I create a dummy instance of it first. Even when I do create a dummy instance first, it only works the first time I call the getClassByName(MyCustomClass) method. After

Re: [flexcoders] Re: problem with cell renderer in ComboBox

2006-02-19 Thread Anatole Tartakovsky
Matt, Is it possible to downgrade ComboBox::dropdown property in the next beta/final release to ListBase so the subclassing/ability to show more complex dropdowns is possible? Also, what are the chances of relaxing base types of the internal properties of the controls a bit (when it does

[flexcoders] Use TextArea as application console - How to automatically scroll to bottom?

2006-02-19 Thread codability
I am using a TextArea to display a console like console :-) inside a Flex app. I am adding text via textArea.text = textArea.text + currentMessage; I want the textArea to scroll down and always show the latest added message. Any hints? -- Flexcoders Mailing List FAQ:

[flexcoders] Flex2: How to access real object in ObjectProxy?

2006-02-19 Thread vmdocua
Hi All, Does anyone know how to access real object being proxied via mx.utils.ObjectProxy? There is ObjectProxy.object property, but it's only visible in the debugger watch. The follwoing test case outputs Real object: null. Is it correct behaviour? ?xml version=1.0 encoding=utf-8?

[flexcoders] Positioning Alert

2006-02-19 Thread Daniel Cascais
I'm trying to position an Alert instance, but I'm not getting any reaction from the Alert and it always appears in its default location in the app. //Code: var myAlert:Alert = Alert.show( Lalalala ); myAlert.move( 15, 16 ); I have done this quite a lot in Flash, for which I am wondering if there

Re: [flexcoders] Use TextArea as application console - How to automatically scroll to bottom?

2006-02-19 Thread Brian Lesser
See: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19784.html Cheers, -Brian codability wrote: I am using a TextArea to display a console like console :-) inside a Flex app. I am adding text via textArea.text = textArea.text + currentMessage; I want the textArea to scroll down and

Re: [flexcoders] Positioning Alert

2006-02-19 Thread Aldo Bucchi
FYI, using myAlert.centerPopUp( blabla ) doesn't do the work either. alert! something's wrong with alert On 2/16/06, Daniel Cascais [EMAIL PROTECTED] wrote: I'm trying to position an Alert instance, but I'm not getting any reaction from the Alert and it always appears in its default location

Re: [flexcoders] Positioning Alert

2006-02-19 Thread stacey
Isn't centerPopUp a method of the PopUpManager? such as : PopUpManager.centerPopUp(myAlert); FYI, using myAlert.centerPopUp( blabla ) doesn't do the work either. alert! something's wrong with alert On 2/16/06, Daniel Cascais lt;[EMAIL PROTECTED]gt; wrote: gt; I'm trying to position an

Re: [flexcoders] Positioning Alert

2006-02-19 Thread JesterXL
In Flex 2, not 1.5. ...is the Alert centered yet? - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, February 19, 2006 10:05 PM Subject: Re: [flexcoders] Positioning Alert Isn't centerPopUp a method of the PopUpManager? such as :

[flexcoders] Re: addChild from String

2006-02-19 Thread pwhite40
I'm using a Tree. Each node from the XML of the tree contains a attribute with the name of the class that is to be instantiated when a change event occurs. The only way for me to use the String typed attribute containing the name of the class to be instantiated, along with a new statement

RE: [flexcoders] ColumnChart question

2006-02-19 Thread Graham, Jason
Flex 1.5 I want the bar that is clicked to go to an alpha of 100% and the other bars to fade, say to an alpha of 60-70%. No, not the entire BarSeries just the selected bar. Thanks.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] ColumnChart question

2006-02-19 Thread Ely Greenfield
- to trigger a series to redraw in Flex 1.5, call invalidate ( In Flex 2, series are standard UIComponents, so you'll invalidate them just like any other component). - but by default, a Column/Bar series in Flex 1.5 renders all items exactly the same. So if you want to render one bar

[flexcoders] Mute sound in a Flex application

2006-02-19 Thread alariccole
Howdy all, Has anyone been successful in muting all sounds in a Flex application? Especially Flex 2? I have tried using the Sound.volume property both as a declared variable and as the embedded in the SoundTransform and SoundEffect classes, but can not seem to be able to adjust the volume of

Re: [flexcoders] Mute sound in a Flex application

2006-02-19 Thread Johannes Nel
i ahve not tried it, but one of my coworkers was complaning about the same thing, and this worked for him in alpha 1On 2/20/06, alariccole [EMAIL PROTECTED] wrote:Howdy all,Has anyone been successful in muting all sounds in a Flex application? Especially Flex 2?I have tried using the