Search Results

0
votes
1answer
184 views

Can ASDoc in Flex create documentation for packages/namespaces?

As the title says - is it possible to document my ActionScript packages / namespaces using the ASDoc comments and the included asdoc command line tool? …
6
votes

Converting string to uint in actionscript / Flex

Color is not a property, it is a style. You need to define the style like this: [Style(name="labelColor", type="uint", format="Color" )] (enclose it in tag if you …
5
votes

Flex / Air obfuscation

The procedure suggested by maclema will not really stop any attacker from obtaining the source - the "wrapper application" will need to be unencrypted so the attacker will be able to find out that …
1
vote

How do I make a custom Flex component for a gap-fill exercise?

You need a container that supports flow layout. It's not part of the standard Flex framework but you can find some working implementation …
9
votes

Why should I use Flex?

Here is my experience: you really need to consider 2 things separately - development and the end-user experience. Flex shines in the first area: ActionScript is a nice mixture of Java …
1
vote

Rails and Flex

Flex is certainly worth considering in your scenario. Generally, Flex is more mature development platform than AJAX is so if your server-side data are exposed via some reasonable interface (web ser …
0
votes

Suggestions on using Flex with WCF and Linq to Entities.

You have several options for communicating between Flex application and your WCF service. Flex supports both SOAP web services and REST-like web services so you can choose which approach fits you b …
6
votes

Possible to use Flex Framework/Components without using MXML?

This is a very simple app that does only the basic bootstrapping in MXML. This is the MXML: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adob …
1
vote

Are there any good programs for actionscript/flex that’ll count lines of code, number of functions, files, packages,etc…

Simple tool called LocMetrics can work for .as files too... …
1
vote

How to tell when an MXML component has totally finished creation?

In some complex cases, like when your component is considered "finished" only when some data has been retrieved via HTTP or something like that, custom event is your best bet. …