[flexcoders] Is this possible?

2008-05-06 Thread Phill B
I want to have a Flex app that will run on server A but it will upload and delete images from server B. Is this easy to do or is this going to be a pain in the butt? -- Phil

Re: [flexcoders] Is this possible?

2008-05-06 Thread Phill B
, Flex will just call some remote method. You will have to develop some server (java, php, asp, ...) to do that for your flex app. There's a lot of samples over the internet. -- *De:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *Em nome de *Phill B

[flexcoders] Re: Combobox shows [object OBJECT] solved

2008-04-17 Thread Phill B
OK. I found my problem. it was as easy as adding my fricking labelField. On Thu, Apr 17, 2008 at 10:34 AM, Phill B [EMAIL PROTECTED] wrote: I know I'm missing something here. Problem is I'm still new to Flex so its real hard for me to find it. I have a ColdFusion remote object that returns

[flexcoders] Combobox shows [object OBJECT]

2008-04-17 Thread Phill B
I know I'm missing something here. Problem is I'm still new to Flex so its real hard for me to find it. I have a ColdFusion remote object that returns an array made from a query. The results are fine in a datagrid but just show [object OBJECT] in a combobox. This is the code in Flex. mx:Script

[flexcoders] Need some help with a function.

2008-04-17 Thread Phill B
I have an initialization function that gets ran on creationComplete. The init function calls two functions (RoOne RoTwo) that access a remote object. RoTwo needs the first value in the RoOne returned array. How do i make RoTwo wait for a respons from RoOne? Thanks -- Phil

Re: [flexcoders] Re: Need some help with a function.

2008-04-17 Thread Phill B
@yahoogroups.com flexcoders%40yahoogroups.com, Phill B [EMAIL PROTECTED] wrote: I have an initialization function that gets ran on creationComplete. The init function calls two functions (RoOne RoTwo) that access a remote object. RoTwo needs the first value in the RoOne returned array. How do

[flexcoders] Re: Need some help with charts

2008-04-04 Thread Phill B
I guess I should have asked what the best method to get data from ColdFusion into a Flex chart. Any ideas? On Thu, Apr 3, 2008 at 3:54 PM, Phill B [EMAIL PROTECTED] wrote: I'm trying to make a chart that will show a total for each month. I'm trying to do this with Flex 3 Pro and CF 8

[flexcoders] Re: Need some help with charts

2008-04-04 Thread Phill B
Can anyone at least give me a link to a good tutorial for using ColdFusion, RemoteObject, Flex 3 and charts? I am stumped so any help will be appreciated. Thanks Phil On Fri, Apr 4, 2008 at 11:38 AM, Phill B [EMAIL PROTECTED] wrote: I guess I should have asked what the best method to get data

[flexcoders] Need some help with charts

2008-04-03 Thread Phill B
I'm trying to make a chart that will show a total for each month. I'm trying to do this with Flex 3 Pro and CF 8 Enterprise. I have a CFC that can return the data for the chart in a 2D array or XML by using it as a remote object. The CFC works fine but I cant get the results of the CFC into a

Re: [flexcoders] Re: Where to download Flex 2?

2008-03-04 Thread Phill B
still trying to get the old versions posted on the support site but it may be a few weeks for that to happen. You know Flex Builder 3 can build your 2.0.1 project right? Matt On 3/3/08 8:33 AM, Phill B [EMAIL PROTECTED]philthylabwrk%40gmail.com wrote: Still trying to find a copy of Flex

[flexcoders] Re: Where to download Flex 2?

2008-03-03 Thread Phill B
Still trying to find a copy of Flex 2. I installed the Flex Eclipse plugin and it has become corrupted some how. Any help is appreciated. On Fri, Feb 29, 2008 at 9:45 AM, Phill B [EMAIL PROTECTED] wrote: I need to download a copy of Flex 2 but cant find a link for it on the Adobe site. Anyone

[flexcoders] Where to download Flex 2?

2008-02-29 Thread Phill B
I need to download a copy of Flex 2 but cant find a link for it on the Adobe site. Anyone know what I could find one? -- Phil

[flexcoders] Simple question about remoteObject?

2007-11-26 Thread Phill B
I have a remoteObject component in a RO dir. I want to call to it in another component. How do I go about this? I've searched the web but didn't find anything that helped. I tried using this: mx:Form xmlns:RO=RO.* xmlns:mx=http://www.adobe.com/2006/mxml; in the component that is needs access to

[flexcoders] Re: Simple question about remoteObject?

2007-11-26 Thread Phill B
I guess I'm way off with what I'm trying to do and need step back a little bit. Apparently I'm not even using the remoteObject correctly. On Nov 26, 2007 10:30 AM, Phill B wrote: I have a remoteObject component in a RO dir. I want to call to it in another component. How do I go about

Re: [flexcoders] Re: Newb needs state help

2007-11-15 Thread Phill B
I tried that and I got an error saying the state is undefined. In my nav.mxml file, the menuBar has a click event that sets the currentstate to the view I want. The mainapp.mxml has my view in it. When the click event is fired, it gives me an error stating the state is undefined. Thanks On Nov

[flexcoders] Newb needs state help

2007-11-14 Thread Phill B
I have a component that has a MenuBar in it. When the user clicks a menu item, I want to change the state in the main app. I cant seam to figure out how to do this. I'm guessing that the event isn't being sent up to the top level app. So, how do I make the top level app aware of the event? Thanks

[flexcoders] Components best practices for a newb

2007-10-25 Thread Phill B
I'm putting together my first Flex app and need some help. I have all my code in one mxml file and it is getting hard to read. So, I would like to break out code in to components. Should I put my remoteObjects in a component? Should I break out all of my vars as well? Are there any good