Last week I tried to convert a small flex 2 application to air. It went pretty smooth with some minor exceptions that were fixed fast. So if you have a flex 2 app and did not do anything fancy in it then it all should work fine.
Keep in mind that flex 3 has some modifications […]
Popularity: 43%
One interesting that I have found is the [Transient] metadata . What it does?
It instructs Flex not to serialize the object member (variable/function) when you do a serialize/deserialize of an object.
Here is a quick more in detail code
public class Test
{
private var x: int;
private var y: int;
public function get […]
Popularity: 12%