Hello,

I have an ActionScript 3.0 Class which is:

AppSSL:
-------
package dynaLib.common.classes {

        import mx.core.Application;
        
        public class AppSSL extends Application {}

        ...





I also have an MXML AppMain Application which Inherits from AppSSL:

AppMain:
-------

                
<?xml version="1.0" encoding="utf-8"?>
<cc:AppSSL xmlns:cc="dynaLib.common.classes.*" 
xmlns:mx="http://www.adobe.com/2006/mxml"; layout="absolute">
        <mx:Button x="192" y="449" label="Button"/> 
        
        <mx:Script>
                <![CDATA[
                        
                ...


However, when doing this, Flex complains that it can not find the MX 
comonents any more ( as if it ignores the line 
xmlns:mx="http://www.adobe.com/2006/mxml"; on the subclass ).

Any Help is appreciated...

Why :(


Thank you for all the help,

Sean.


Reply via email to