[flexcoders] Re: Not sure what to do here...

2008-06-02 Thread mr_delphi_developer
It does get data back from the server, it sends the error message, The result handler is entered because that is where it sows the error dialog.

[flexcoders] Re: Not sure what to do here...

2008-05-30 Thread mr_delphi_developer
Anyone able to help out here?

[flexcoders] Not sure what to do here...

2008-05-29 Thread mr_delphi_developer
I used the Build Application from Database and have everything going great. However, I added the capability to send two parameters to do some security checking in the initial HTTPService send. Now, when either of those two params fail the check, I am returning an error in the $toret array:

[flexcoders] Setting focus to a control upon applicationComplete

2008-05-29 Thread mr_delphi_developer
private function initApp():void { teamID.setFocus(); teamID.setSelection(0,0); } The entry caret is NOT shown in the control AND input is not focused to the control. Any ideas??

[flexcoders] Disable button if field is empty

2008-05-21 Thread mr_delphi_developer
I have this input field and button. mx:TextInput id=team_pin maxChars=4 displayAsPassword=true editable=true enabled=true width=55 / mx:Button label=Get Roster click=empRO.loadAll.send(); enabled=false id=GetRosterBtn/ I don't want the button enabled until the team_pin has 4 characters.

[flexcoders] Re: Drilldown ideas

2008-05-21 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, markgoldin_2000 [EMAIL PROTECTED] wrote: If a user wants to drilldown into a dataGrid's cell what could have been the best approach? Popup windows? Other ideas? If popup it is, can I completely get rid of a blur affect when popup window is shown? Thanks

[flexcoders] Re: Disable button if field is empty

2008-05-21 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On Wed, May 21, 2008 at 8:06 PM, mr_delphi_developer [EMAIL PROTECTED] wrote: I have this input field and button. mx:TextInput id=team_pin maxChars=4 displayAsPassword=true editable=true enabled=true width=55

[flexcoders] Debugging Flex3-AMFPHP

2008-05-19 Thread mr_delphi_developer
I'm trying to get my head wrapped around how to use AMFPHP with Flex3 using Michale Rameriz's tutorial here: http://www.howtoforge.com/amfphp_adobe_flex2_sdk I've got a lot of the gotchas worked out but I get nothing back from the DB, the statusbar just says Transferring data from localhost when

[flexcoders] Re: Debugging Flex3-AMFPHP

2008-05-19 Thread mr_delphi_developer
I have HTTPLook which is an HTTP Capture application. --- In flexcoders@yahoogroups.com, actionscript_czar [EMAIL PROTECTED] wrote: A very good tool for helping you debug any AMF source is Service Capture. It is an inexpensive tool that has saved me hours of time by being able to read

[flexcoders] Re: Using XMLList as dataprovider to DataGrid and Adding rows

2008-05-09 Thread mr_delphi_developer
--- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: Right. That's too much code to analyze, but generally, if you plan to update a dataProvider programatically, do not use XMLList or Array,as they do not dispatch the necessary events to update the UI. With XML, use

[flexcoders] Re: Using XMLList as dataprovider to DataGrid and Adding rows

2008-05-09 Thread mr_delphi_developer
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mr_delphi_developer Sent: Friday, May 09, 2008 10:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using XMLList as dataprovider to DataGrid and Adding rows

[flexcoders] Using XMLList as dataprovider to DataGrid and Adding rows

2008-05-07 Thread mr_delphi_developer
In the code below, I'm having trouble figuring out how to add rows to the grid. I have found only one tutorial and using it's techniques doesn't seem to work. Can anyone help out here? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute