Search Results

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 …
0
votes

Ruby to Actionscript3 Bytecode

I don't know of any Ruby->AS3 converters but in the future, Iron Monkey may make it possible to run Ruby on Tamarin (AS3 vir …
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 …
1
vote

ActionScript3 User Interface Components?

Flex framework has a nice, consistent API that I wouldn't consider "bloated" - yes, it's a feature-packed UI framework but basic things like buttons and layout panels don't require any deep knowled …
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... …