Packages cannot be nested

Hi Everyone,

Need your help. I am a novice in ActionScript 3.0. I am trying to use the sample code from AS 3.0 tutorial but it return me an error “Packages cannot be nested”. How can I fix it?

Here’s the sample code: fla file format.

package
{
import flash.display.Sprite;

public class ClickExample extends Sprite
{
    public function ClickExample()
    {
        var child:ChildSprite = new ChildSprite();
        addChild(child);
    }
}

}

import flash.display.Sprite;
import flash.events.MouseEvent;

class ChildSprite extends Sprite
{
public function ChildSprite()
{
graphics.beginFill(0xFF0000);
graphics.drawRect(0,0,100,100);
graphics.endFill();
addEventListener(MouseEvent.CLICK, clickHandler);
}

private function clickHandler(event:MouseEvents):void
{
trace("clickHandler detected an event of type: " + event.type);
trace("the this keyword refers to: " + this);
}
}

Thanks,
Roger :slight_smile: