[flexcoders] Development with Remote CF Server

2007-11-08 Thread phall121
I have a developer that normally develops with PHP. I want him to be able to do some coding for us on an application that uses ColdFusion and a backend database that he doesn't have installed on his development machine. Can I set up a second Destination and Channel in our app that will point

[flexcoders] Re: Converting a string to a Class

2007-06-07 Thread phall121
@yahoogroups.com [mailto:flexcoders@yahoogroups.com http://yahoogroups.com ] On Behalf Of phall121 Sent: Wednesday, June 06, 2007 9:06 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Converting a string to a Class Embarrassingly basic

[flexcoders] Re: Selecting which Child Components to add at runtime--Dynamic UI RSL

2007-06-07 Thread phall121
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of phall121 Sent: Wednesday, June 06, 2007 8:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Selecting which Child Components to add at runtime Alex's solution

[flexcoders] Re: Selecting which Child Components to add at runtime

2007-06-06 Thread phall121
Alex's solution to the original challenge of selecting which Child components to add at runtime, worked very well with the adjustments mentioned. However, the function to instantiate add the Child component requires a class parameter dynamically specified at runtime. The mx.ComboBox

[flexcoders] Re: Selecting which Child Components to add at runtime

2007-06-05 Thread phall121
Yes, Alex. You Rock dude(ss)!! For those who may follow and look at this let me add a few notes. I needed to add an import statement to bring in the Container class (done from scratch, this happens automatically): import mx.core.Container; I then updated the combo box array to

[flexcoders] Re: Defining a dynamic UI

2007-06-04 Thread phall121
A very similar issue is now raised in a new thread: Selecting which Child Components to add at runtime ...how to define dynamic children. --- In flexcoders@yahoogroups.com, gary_mangum [EMAIL PROTECTED] wrote: Thanks for the great responses! I see 2 great options here: - Place my array

[flexcoders] Selecting which Child Components to add at runtime

2007-06-04 Thread phall121
I want to add views to a ViewStack at runtime by selecting from an expanding table of Custom Components. As the simplified code below shows, I can figure out how to add any one and hard code it. But the addChild method of the ViewStack seems to require that you know ahead of time which

[flexcoders] Re: textAlign not working for TabBar

2007-06-01 Thread phall121
/ mx:Label x=446 y=140 text=Left Align Specified via CSS color=#ff/ /mx:Application Hope that helps. Juan scalenine.com --- In flexcoders@yahoogroups.com, phall121 phall@ wrote: Great suggestion. I had not thought of this. Unfortunately, though, this didn't work. I

[flexcoders] textAlign not working for TabBar

2007-05-23 Thread phall121
I'm not to get textAlign=left working on the TabBar control. I've searched the archives and find no references to this issue. Is my code flawed in some way that I'm just not catching? mx:TabBar direction=vertical dataProvider={vacCAppList} labelField=app width=300 textAlign=left

[flexcoders] Re: textAlign not working for TabBar

2007-05-23 Thread phall121
you can set that via styling: mx:Style Tab { textAlign:left; } /mx:Style --- In flexcoders@yahoogroups.com, phall121 phall@ wrote: I'm not to get textAlign=left working on the TabBar control. I've searched the archives and find