Hello there,
I declared a namespace at the top of my mxml file Radio.mxml;
xmlns:jour="components.journal.*"
I now have another mxml file Journal.mxml is under the components/journal folder,the Radio.mxml is at the root folder which contains the components folder.
Now I want to access the Journal.mxml in the Radio.mxml using the name space,how could I do that,I've tried
var a = new jour.Journal();
but it seems not right,could anyone help a little bit?Many thanks.