Hi,
You Do have a mismatch brace
package com.magnoliamultimedia.views
{
import flash.display.DisplayObject;
import mx.charts.LegendItem;
import mx.core.UITextField;
public class WrappingLegendItem extends LegendItem
{
public function WrappingLegendItem()
{
super();
}
} <--------------- WRONG !!! :)
override protected function createChildren():void{
}
}
Right where the wrong is.
Should be...
package com.magnoliamultimedia.views
{
import flash.display.DisplayObject;
import mx.charts.LegendItem;
import mx.core.UITextField;
public class WrappingLegendItem extends LegendItem
{
public function WrappingLegendItem()
{
super();
}
override protected function createChildren():void{
}
}
}
Mike
On Thu, Oct 9, 2008 at 5:37 PM, Amy <[EMAIL PROTECTED]> wrote:
> --- In [email protected] <flexcoders%40yahoogroups.com>,
> "Michael Schmalle"
> <[EMAIL PROTECTED]> wrote:
> >
> > Hi,
> > You have a brace mismatch in your class/package. :)
>
> Still trying to troubleshoot this. Even just this throws the same
> error:
>
> package com.magnoliamultimedia.views
> {
> import flash.display.DisplayObject;
>
> import mx.charts.LegendItem;
> import mx.core.UITextField;
>
> public class WrappingLegendItem extends LegendItem
> {
> public function WrappingLegendItem()
> {
> super();
> }
>
> }
> override protected function createChildren():void{
>
> }
> }
>
>
>
--
Teoti Graphix, LLC
http://www.teotigraphix.com
Teoti Graphix Blog
http://www.blog.teotigraphix.com
You can find more by solving the problem then by 'asking the question'.