Flex XML elements vs. code - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:30:06Zhttp://stackoverflow.com/feeds/question/393638http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/393638/flex-xml-elements-vs-code1Flex XML elements vs. codeAssaf2008-12-26T09:05:14Z2008-12-26T15:30:31Z
<p>It's possible within a Flex application, to declare elements, for example a HTTPService elements, both in XML and also in code.</p>
<p>That is, either:
...</p>
<p>or in code:
var hs : HTTPService = ...</p>
<p>My question is when should I prefer which alternative? What are the advantages of having stuff in XML vs. plain old vars in code?</p>
http://stackoverflow.com/questions/393638/flex-xml-elements-vs-code/393879#3938790Answer by Scott Evernden for Flex XML elements vs. codeScott Evernden2008-12-26T15:20:49Z2008-12-26T15:20:49Z<p>Elements are more concise and compact than AS3 code, tho of course ultimately it all becomes the same thing. You can, for example in 'one line' of mxml declare an HTTPService and set several of its properties. In script you'd need to do this in many lines of init code. If you have a lot of global variables this can start to become unruly.</p>
http://stackoverflow.com/questions/393638/flex-xml-elements-vs-code/393889#3938891Answer by cliff.meyers for Flex XML elements vs. codecliff.meyers2008-12-26T15:30:31Z2008-12-26T15:30:31Z<p>MXML is great for doing declarative layouts, much easier to follow than doing everything programmatically in ActionScript. If you are using something like a ServiceLocator to define HTTPService, RemoteObject, etc in your app then declaring them via MXML is also quick and easy. Basically if you want to add anything to an object's displayList quickly and easily, MXML is a great way.</p>