Does anyone know of a decent guide to create a UI without MXML?
I royally dislike mxml for programming and would like to go any other way possible. (Pure Actionscript or Flash Professional for UI)
|
Does anyone know of a decent guide to create a UI without MXML? I royally dislike mxml for programming and would like to go any other way possible. (Pure Actionscript or Flash Professional for UI) |
||||
|
|
You can use Flash Builder to edit the Actionscript part of a Flash Pro project. There's a huge discussion about techniques with example files and everything here. |
|||
|
|
You can use Flex and never write any MXML. However, you may find that becomes counter productive. I create views/skins declaratively in MXML and do everything else in Actionscript. Creating views, populating them with child objects, adding listeners, setting styles, all of this is done in a few simple lines of MXML. Doing the same tasks with Actionscript statements means a lot more typing. The MXML code is more concise, and that gives it a lot more clarity/maintainability in my opinion: MXML:
AS3:
I often create custom components (that I re-use in app views) in pure AS3. I implement the Flex life cycle methods, and then composite these components into an MXML view. I do prefer to write everything in pure Actionscript. The one place I will not do it, however, is in creating views/skins for my applications. I think it's a fair trade off. |
|||||
|
|
As far as I know, Flex is one of the "cleaner" way to go in terms of building Flash UIs. When I use Flash Builder in the past it seemed much more un-intuitive from a programmer's perspective. Also, both Flex and Flash Builder use Actionscript, so you really are not going to get away from that aspect. |
|||||||
|