Anyone know why it seems impossible to compile an mxml-file like this:
<?xml version="1.0" encoding="utf-8"?>
<mx:Module
xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
width="200" height="200"
backgroundColor="0x00ff00" xmlns:components="com.subotnik.components.*">
<components:AntTestClass/></mx:Module> ...but if I declare the AntTestClass as a variable in the script-tag it works fine? // Fredrik Sandberg

