Flex XML elements vs. code - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:30:06Z http://stackoverflow.com/feeds/question/393638 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/393638/flex-xml-elements-vs-code 1 Flex XML elements vs. code Assaf 2008-12-26T09:05:14Z 2008-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#393879 0 Answer by Scott Evernden for Flex XML elements vs. code Scott Evernden 2008-12-26T15:20:49Z 2008-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#393889 1 Answer by cliff.meyers for Flex XML elements vs. code cliff.meyers 2008-12-26T15:30:31Z 2008-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>