Skip to content

Monthly Archives: April 2007

Proguard as alternative to precompiler

With all the variety of JSRs and their availability on different devices, porting of mobile applications ends up being quite a challenge. The traditional approach is to use precompiler, that is still one of the best options and in my mind is the last tool that I use. What I ended up using to turn [...]

Looks like Flex data binding is not bidirectional

I have a AS3 class Loan that is being fetched from the server and the whole Loan class is marked as [Bindable]
Now in the Form I have a: <mx:TextInput text=”{currenLoan.loanAmount}” />
The problem is that user modifies the text in the textInput, it does not automatically update the variable that the control is bound to. I’m [...]