0
votes
1
vote
Using flex with struts
Go with Flex-BlazeDS option. Simpify the architecture by removing Action servlet, action class and JSP that returns the presentation with a simple POJO that just returns the data to be displayed in …
1
vote
Flex MVC Frameworks
I've seen these kinds of discussions many many times. They usually start with WHICH Flex framework do you use. Not many people ask the question WHY do you even need to use any framework on top of F …
1
vote
How do teams use Flex Builder Pro to develop large applications?
Unless you develop a Hello World application, you should have more than one Flex Builder projects. The main one has the bare minimum of classes, and possibly shared libraries that are required to d …
2
votes
How to implement HTTP Tunneling
Don't reinvent the wheel - use remoting via AMF protocol. AMF an HTTP-based binary format that performs serialization between ActionScript (MXML) and server side languages. Technically, this is HT …
1
vote
How much logic should be included in a Flex MXML attribute?
It's not a good idea to put more than one liner inline. Hard to read, hard to debug.
To make the inline code more readable though, put it inside the curly braces and write it in multiple lines. …
0
votes
Watching a bindable property
Use the class ObjectProxy or its subclass and wrap up the class that has a property you need to watch. In my example, I'm calling a func if someone is changing the property salary giving it a value …
0
votes
How do I make sure the text of an ActionScript TextInput is updated when the Object property defining that text is updated?
Compile your MXML component with the -keep option. Examine the ActionScript code that was generated by mxmlc and do something similar.
You may also do it using the Proxy object - I blogged …
1
vote
Flex printing on OSX pushes image off the page. How can this be fixed?
Switch to PDF generation. There are two ways to do this without having to purchase server-side licenses:
Use our library of Flex components - clear.swc, a part of open source Clear …
