Hi,
I'm currently working on fixing a bug in Flexmojos which caused to produce an ambiguous argument list when using multiple namespaces.
Currently Flexmojos used to produce:
-compiler.namespaces.namespace <http://www.adobe.com/2006/mxml> http://www.adobe.com/2006/mxml mx-manifest.xml -compiler.namespaces.namespace library://ns.adobe.com/flex/spark spark-manifest.xml
But want to change that to the alternate "=" and "," notation the error message suggests. So would I convert this to:
-compiler.namespaces.namespace=<http://www.adobe.com/2006/mxml>http://www.adobe.com/2006/mxml,mx-manifest.xml -compiler.namespaces.namespace=library://ns.adobe.com/flex/spark,spark-manifest.xml
or would it become:
-compiler.namespaces.namespace=<http://www.adobe.com/2006/mxml>http://www.adobe.com/2006/mxml,mx-manifest.xml -compiler.namespaces.namespace+=library://ns.adobe.com/flex/spark,spark-manifest.xml
?So the first namespace would have an "=" and each following one would be a "+="?
I sort of couldn't find the spec for this.
Chris
I'm currently working on fixing a bug in Flexmojos which caused to produce an ambiguous argument list when using multiple namespaces.
Currently Flexmojos used to produce:
-compiler.namespaces.namespace <http://www.adobe.com/2006/mxml> http://www.adobe.com/2006/mxml mx-manifest.xml -compiler.namespaces.namespace library://ns.adobe.com/flex/spark spark-manifest.xml
But want to change that to the alternate "=" and "," notation the error message suggests. So would I convert this to:
-compiler.namespaces.namespace=<http://www.adobe.com/2006/mxml>http://www.adobe.com/2006/mxml,mx-manifest.xml -compiler.namespaces.namespace=library://ns.adobe.com/flex/spark,spark-manifest.xml
or would it become:
-compiler.namespaces.namespace=<http://www.adobe.com/2006/mxml>http://www.adobe.com/2006/mxml,mx-manifest.xml -compiler.namespaces.namespace+=library://ns.adobe.com/flex/spark,spark-manifest.xml
?So the first namespace would have an "=" and each following one would be a "+="?
I sort of couldn't find the spec for this.
Chris