Where does Flash Builder Plugin seaches for dotted namespace names?
Posted
by
Suzan Cioc
on Stack Overflow
See other posts from Stack Overflow
or by Suzan Cioc
Published on 2012-03-18T17:51:12Z
Indexed on
2012/03/18
17:55 UTC
Read the original article
Hit count: 179
I have the following text in my MXLM sample:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
xmlns:ns1="com.infrared5.asmf.controls.flex.data.*"
xmlns:ns2="com.infrared5.asmf.controls.flex.video.*"
xmlns:ns3="com.infrared5.asmf.controls.flex.net.*"
xmlns:ns4="jedai.controls.flex.data.*"
xmlns:ns5="jedai.controls.flex.video.*"
xmlns:ns6="jedai.controls.flex.net.*">
Last 6 namespaces are defined as some "dotted" name pathes. Where does compiler look for them and in which order?
© Stack Overflow or respective owner