I have a class which has an internal class for an Object definition:

class DrawRecord{
        public var rect:Rectangle;
        public var color:uint;
        public var alpha:Number;
        public var columnRect:Rectangle;
}

This class has a subclass which sets one of the properties in this value object 
(i.e. columnRect). Internal classes are only available in the same file. Is 
there any trick to make the class definition available to the subclass without 
making the type definition a full blown public class in its own file?

Thanks,
Harbs

Reply via email to