D2W and Roundtable with Joel Hooks & Nick Joyce – JXLTV Episode #006

JXL TV Episode 6
		


Announcements:

References:

This entry was posted in jxltv and tagged , , , , , , , , , , , , . Bookmark the permalink.

3 Responses to D2W and Roundtable with Joel Hooks & Nick Joyce – JXLTV Episode #006

  1. limscoder says:

    It was great to meet you guys in ATL!
    Actionscript + Python Rocks

    Clarification of terms:

    Python is a strongly typed and dynamic language.

    In Python a variable can hold an object of any type (dynamic), and objects cannot be cast to other types (strong).

    Actionscript is exactly the opposite: loosely typed and static.

    In Actionscript a variable can only hold an object of the defined type (static), and objects can be cast to other types (loose).

  2. Inspirational post, I’m looking forward to getting some RL questions answered at 360|Flex and meeting everyone. I’m calling Joel out (lol), I emailed him in January and didn’t get a response to this question… How is dynamic mediator registration handled in RL?

  3. JesterXL says:

    @Steven The AIR example has one way to do this. Since AIR has no native events on when Windows are created, you basically have to manually create Mediator’s for the Window’s if you so choose. Example code here:

    http://github.com/robotlegs/robotlegs-demos-Bundle/blob/master/WheresWindow/src/org/robotlegs/demos/whereswindow/controller/CreateNewWindowCommand.as