Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
heybluez #1
ActionScript vs. MXML
Hello. Just curious if there is any difference in building components with
straight Actionscript as opposed to a mix of MXML and Actionscript? What I
mean is does one compile/run faster than another? Thanks, Michael
heybluez Guest
-
How does on Sharing data between main.mxml and a renderer.mxml
I have a value set in my main mxml file. public var calDate:Date = new Date(); How can I use this value in my renderer mxml file? if... -
synchronous actionscript vs mxml
Hi for making synchronous call with java method from as file i got example from http://www.adobe.com/devnet/flex/articles/flexfaq.html link 31Q. But... -
using MXML in ActionScript
Hello, There are many chapters describing how to use 'ActionScript in MXML' but I have found none about the opposite : how to perform the... -
Opening .mxml components via ActionScript
I am working on a dynamic TabBar that will populate a datagrid under each tab with reports from a document archive. I want to build my datagrid in a... -
HTTPService Proxy in ActionScript doesn't work but doesin MXML
I have an http service defined in MXML to use the proxy services and it works fine. However if I create the http service in an action script it... -
-
Dave Wolf #3
Re: ActionScript vs. MXML
sshwsfc11 wrote:
Flex takes the MXML and generates ActionScript from the mx tags. So in> I guess AS will take a better speed
the end, it all becomes ActionScript. The question is whether you
believe you own AS is faster then the code generated AS.
Dave Wolf
Cynergy Systems
[url]http://www.cynergysystems.com[/url]
Dave Wolf Guest
-
ntsiii #4
Re: ActionScript vs. MXML
Any speed diference will be minor and occur only when the app is compiled, and
will have no effect at the client. Remember that the Flex server takes the
mxml and builds AS classes out of everything anyway.
It is more a matter of which is best from a functionality and ease of
development standpoint.
I use mxml components if I want to combine several standard components, since
that is much easier than dynamically creating components. It is conceptually
easier to understand as well, and is probably easier to maintain for a
mid-level developer.
I use AS components if I want to modify the functionality of a single
component.
Tracy
ntsiii Guest



Reply With Quote

