[flexcoders] Flex 3 Dialog Boxes ...

2009-01-12 Thread SJF
Hello All, I'm using Flex 3 and working on pure actionscript projects (i.e: File New ActionScript Project). I often have issues with numerous dialog boxes and parts of the interface within Flex (see images below): http://img339.imageshack.us/img339/512/60793305bx2.gif

[flexcoders] RE: PHP Remoting and value objects

2009-01-26 Thread SJF
Try: var testVO:TestVO = e.result.serverInfo.initialData as TestVO; (depending on how you've constructed your data for return from php) Also, throw a breakpoint into your app where the remote comes back - then take a look inside the *result* object. You'll have the *result.serverInfo* object,

[flexcoders] Re: Flex RegExp issues ...

2009-02-09 Thread SJF
I haven't read into this thread, but here is a link to a great RegExp online app. built by Grant Skinner: http://www.gskinner.com/RegExr/

[flexcoders] Re: Flex + RSS samples ...

2009-02-09 Thread SJF
Chapter 3 of the book Adobe Air - Create : Modify : Reuse has a good little RSS Air app: http://www.wrox.com/WileyCDA/WroxTitle/Adobe-AIR-Create-Modify-Reuse.productCd-0470182075,descCd-DOWNLOAD.html

[flexcoders] try, catch, finally ...

2009-03-03 Thread SJF
Technically, it's good practice/professional to use try-catch-finally blocks in your actionscript logic. This ensures a robust, easily debugg-able application. However, can anyone comment if they actually use try-catch-finally or whether anyone is for or against it's use. I ask because I've

[flexcoders] Another on try-catch-finally ...

2009-03-03 Thread SJF
I have a head-cold (hence the possibly obvious answer to this question) and a block of code as such: function checkResponder(e:Event = null):void { try { bPollingDatabase = true; updateListArray(); } catch (err:Error) { // } } Now considering there is no code in the 'catch' block,

[flexcoders] ExternalInterface ...

2009-03-28 Thread SJF
I have an ExternalInterface call in my application that looks like this: ExternalInterface.call(BrowserScriptsJS.GET_BROWSER_INFO);

[flexcoders] Flex Builder Actionscript Projects ...

2009-04-03 Thread SJF
Does anyone have a link to reference material or information about Flex Builder Actionscript Projects? Specifically the config file with default filename of .actionScriptProperties ? I can't find any information about this on the web, and my Flex Builder application doesn't allow me to edit these