A few hours ago a message went across the world and did a lot of “damage”. It’s subject: “Adobe AIR, Flex Builder 3, and the Flex 3 SDK are now live !”
Yes you heard right:Flex 3 is now final :).
In the following days I will write an article about the differences between Flex 2.1 and […]
Popularity: 28%
When speaking about RIA one of many nice usabilities is that to be able to give feedback to the user when it comes to critical actions like submitting important data, saving work, etc. Let’s have the following example: You log in into a RIA with your user and password, you do changes to your data […]
Popularity: 87%
During 7-9 April 2008 there is a Flex meeting in Milano. Price 360 euros. More details here or here.
I may be there as well :).
Popularity: 28%
Popularity: 28%
Yesterday I had to do a small flex application that resided on a server with php. Since I required a connection to mysql I wanted to use the same class I did before to connect to web-services. But PHP does not support web-services (and WSDL) by default.
So after I did some search on the net […]
Popularity: 74%
If you have a label and you want to show a hand cursor when the mouse is over it you have to set three properties as bellow:
lbl.useHandCursor = true;
lbl.mouseChildren = false;
lbl.buttonMode = true;
where lbl is
public var lbl:Label = new Label();
Job’s done!
Popularity: 27%
Popularity: 27%
Today I found a way to remove the “black line” of a tree which has drag and drop functionality enabled. I did that by skinning. Searching through the help I’ve been crossing over a property named “dropIndicatorSkin” where (as its name is suggesting) the drop line is drawn. So I just re-skinned it.
Here is the […]
Popularity: 42%
This it’s an working example of how you can customize your tab bar navigation.
Popularity: 63%
Two days ago I needed to customize the very first preloader of a flex application (the one that is shown before finishing loading initialization classes of flex). My first impression was that it cannot be changed because I thought is something built in the Flash Player but at the end I found a way using […]
Popularity: 92%
It just hit me!! I missed one very important news for us developers from the free comunity:
Adobe has opened up AMF specification and has announced plans to release the source code of BlazeDS, a messaging and remoting framework based on LiveCycle Data Services.
More information can be found here.
Popularity: 41%
Popularity: 41%
As time passes the applications tend to move from thick software to thin web applications and they need to be platform and browser independent. This has happened because of the need of having applications that work on all platforms/browsers, have an easy way of getting the server side data, have more reach and also […]
Popularity: 20%