RE: [flexcoders] Icon in the Panel bar

2005-10-03 Thread dfatta
Title: Message You'll have to write a custom class for this. It's a real pain...using the Embed() function won't do it. Darius -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Simard, GhislainSent: Monday, October 03, 2005 11:12

RE: [flexcoders] Calls to CFCs

2005-09-29 Thread dfatta
Title: Message I wrote a blurb on how to integrate Flex and CFCs. It might be of some help. http://www.cflex.net/showfiledetails.cfm?ObjectID=303 Darius -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg JohnsonSent:

[flexcoders] ColdFusion Flex: How to integrate CFCs, Flex, RemoteObjects, etc.? My Guide for Newbies...

2005-09-13 Thread dfatta
Hi, It's amazing what desperation will do...also in a way, sad, that I had to try so long to get relatively simple functionality to work between CF and Flex. In almost 10 years or programming, this is easily one of the most frustrating challenges I've ever encountered. To say there's a

RE: [flexcoders] Referencing results from NetConnection Debugger

2005-08-31 Thread dfatta
That was it!! One day, my brain will inevitably explode from a syntax error...:-) Many thanks! Darius -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]On Behalf Of Kelly RSent: Wednesday, August 31, 2005 12:01 PMTo:

RE: [flexcoders] Referencing results from NetConnection Debugger

2005-08-31 Thread dfatta
Ahhh...That makes more sense...Thanks!! -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]On Behalf Of KellySent: Wednesday, August 31, 2005 4:21 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Referencing results from NetConnection

RE: [flexcoders] CFC debugging netConnectionDebugger

2005-08-25 Thread dfatta
N I C E ...This is a huge advancement forward in debugging Flex with CFC...I'm beginning to see the light...;-) But, (there's always a 'but')...I'm not using Application.cfc, but Application.cfm...should I just define the following in the cfc? // error trapping

RE: [flexcoders] Is it possible to return multiple recordsets to Flex from one Remote Object call

2005-08-19 Thread dfatta
for this invaluable resource. Best regards, Darius Flex: private function getObject():Void{var aperson :Object = new Object();aperson.username="dfatta";aperson.CCode= "37";aperson.CFlag="No";aperson.COAFlag = "No

RE: [flexcoders] Calling ArrayStructures in CFCs from Flex

2005-08-15 Thread dfatta
Hi Malcolm, Thanks for your advice. Jeff's solutions worked well if you want to take a look. I'm going to try to post my completed solution on some site. Darius -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]On Behalf Of MalcolmSent:

RE: [flexcoders] Calling ArrayStructures in CFCs from Flex

2005-08-12 Thread dfatta
Title: Message Thanks, Jeff. That helps... I'm still stuck on how to handle the return recordset from the cfc. If case sensitivity doesn't matter, how do you recommend dynamically getting all the data into the structure? cfoutput query="qGetUpdateAuthorization" cfset stItem =

RE: [flexcoders] Calling ArrayStructures in CFCs from Flex

2005-08-11 Thread dfatta
Title: Message Jeff, Great example! It almost works for me except the cfc I call from Flex is a facade to my cfc query. The cfc query returns a variable that needs to be converted to an array or whatever before being put into a structure. Do you have any ideas how to do this? Many

RE: [flexcoders] Overlay container on panels

2005-07-28 Thread dfatta
Title: Message Thanks, Sree. That helps enormously. I'm still a bit confused by the HBox and VBox components. Should one treat the HBox as a row (i.e., tr), and a VBox as a cell (i.e., td)? For instance, if I want two panels to be side by side, do I put them in one HBox with two nested

RE: [flexcoders] Overlay container on panels

2005-07-27 Thread dfatta
I thought this would do it but I'm still getting the same problem. I have one canvas tag that wraps all my other code. I'm scratching my head on this one... If you could take a second look, I've included the modified code below: Also, a general layout question. Is it good practice to

RE: [flexcoders] Flex and CFCs -- problems displaying recordsets in datagrids

2005-07-23 Thread dfatta
Thanks for the advice, Tariq. I ordered the book last week and am looking forward to giving it a read. Does the book give examples on how to create a result handler? In terms of CFCs, I'm converting a MVC Fusebox 4 coldfusion app to a Flex interface. Since the application is allready very

RE: [flexcoders] Flex and CFCs -- problems displaying recordsets in datagrids

2005-07-22 Thread dfatta
Hi Allen, I'm very interested in learning how you achieved this. I continue to be confused by all varying syntax one can use to access data using AMF. It looks like your approach is certainly a best practice. Do you have an example you could share of your cfc, mxml, and actionscript. I

RE: [flexcoders] Flex and CFCs -- problems displaying recordsets in datagrids

2005-07-22 Thread dfatta
Hi Tarik, Please ignore my previous messages. I was able to get it working. I misunderstood the capitalization advice. I had capitalized the entire field, when only the first letter needed to be. A couple of follow-up questions, if you don't mind: I see contrary advice on how to