up vote 7 down vote favorite
6
share [g+] share [fb]

I found a lot of interesting info in the 'hidden features of...' series. I'm a AS3 developer so I want to add this question about AS3 as well for all the flash/flex developers out there. So, what are the lesser-known but useful features of AS3 and Flex framework that you know ?

link|improve this question
I've been meaning to get back into Flex development lately. Going to keep an eye on the responses here! – Jeff L Jul 9 '09 at 13:54
Should be CW as per 'hidden features' – alex Jul 9 '09 at 21:59
feedback

3 Answers

up vote 7 down vote accepted

About AS3

Well the coolest hidden feature with flash player 10 was the hidden alchemy opcodes. But that has nothing to do with AS3 in fact. Although to my understanding alchemy comes with a special AS3 compiler that allows inline assembly for that matter.

In fact, AS3 actually is pretty boring compared to AS2, which was fully packed of really great hidden features, that allowed you to change the whole API at runtime.

Apart from some hidden or sparsely documented metatags, there is not too much, and really nothing useful.

  • With an older version of the flex SDK, there was a funny feature, that if you embedded fonts, the first font was also available under the ID of foobar, but yeah, that's really not useful

  • There's a few hidden classes and interfaces. You can get most things with an SWC-reader, for example, there are some undocumented classes in the flash.html package, and there are some inaccessible internal classes such as flash.utils.SetIntervalTimer which is in fact used to implement setInterval.

  • There is this very funky global object, which is supposedly removed in AS3. It's not. It's just hard to get a reference to it.

    var global:Object;
    var f:Function = function ():void {
        global = this;
    }
    f();
    

    But it is nothing like _global in AS2. It doesn't allow you to traverse the package structure or such. And also it behaves quite strangely.

    var object:Object = new Object();
    trace(getQualifiedClassName(object));//Object
    trace(getQualifiedClassName(global));//global - huh? What's that?
    trace(global.constructor == object.constructor);//true ... this seems a little strange considering the fact, that they come from different classes
    
    trace(describeType(global));
    trace(describeType(object));
    

    The last two statements generate following two XMLs:

    <type name="global" base="Object" isDynamic="true" isFinal="true" isStatic="false">
      <extendsClass type="Object"/>
      <constant name="Main" type="Main"/>
    </type> 
    
    <type name="Object" isDynamic="true" isFinal="false" isStatic="false">
      <method name="hasOwnProperty" declaredBy="Object" returnType="Boolean" uri="http://adobe.com/AS3/2006/builtin">
        <parameter index="1" type="*" optional="true"/>
      </method>
      <method name="isPrototypeOf" declaredBy="Object" returnType="Boolean" uri="http://adobe.com/AS3/2006/builtin">
        <parameter index="1" type="*" optional="true"/>
      </method>
      <method name="propertyIsEnumerable" declaredBy="Object" returnType="Boolean" uri="http://adobe.com/AS3/2006/builtin">
        <parameter index="1" type="*" optional="true"/>
      </method>
    </type>
    

    You cannot resolve that global class either. However, the global object is 4 bytes bigger in memory, then an empty object, which is 24 bytes in size. Now 4 bytes seems like a 32 bit address, but who nows, where that points to :D [/edit]

    One cool thing, that was never really talked about a lot, since flash player was announced, is flash player's UDP p2p-ability with NAT-punchthrough, enabled through an update in the player core, when going to version 10. This is also probably due to the fact, there has not yet been an official release of stratus, which is still beta. However, this in not a real language or API feature. It is some magic happening behind the scenes. The API stays the same (well except that you cannot use Remote Shared Objects).

    And then, there are the hidden treasures of the mm.cfg. But again, this is a flash player feature, not an AS3 feature.

    So I guess, if you are waiting for a "wow, how cool, why didn't they document that" feature, I'm rather pessimistic.

    Adobe tries to really sell all features of the flash player. At the same time, they want it to stay safe. So they cannot really have tons of hidden APIs built in to the flash player. Also, the VM is open source and the compiler is. And the open source community has been very successfull in finding any possibilities the flash player offered, be it inclusion of malicious code to use it as a security loop hole, or simply discovering features, that did not seem to be scriptable with AS. The only bigger hidden thing there was recently, were the alchemy opcodes, as I said, which were included long before the release of alchemy.

About Flex

Honestly, I don't know. I am not that much of a Flex crack. However Flex is written in AS3 and open source. So it's virtually impossible to actually hide too many things. Some classes are excluded from documentation using [ExludeClass] (I did some debugging on the remoting package because it did not interface to well with some home made PHP) But most of them are not of particular interest. Simply some internals that are hidden, so your mind does not get blown even more by this quite bloated framework.

link|improve this answer
feedback

Custom metaData tags are really cool, we use them for all sorts, making inputs readOnly, defining validation rules, calculation rules etc.

What this means is that the code stays generic, for the validation example for instance the actual property defines validation rules it is subject to so we never have to set any rules concretely i.e. in code or mxml. Really good feature well worth investigating.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.