Help I cant figure out what the problem is.

Here is my code:
package
    import flash.display.MovieClip;
    import flash.events.KeyboardEvent;
    import flash.ui.Keyboard;
    import flash.events.Event;
    public class Main_Character_Two extends MovieClip
        var vx:int;
        var vy:int;
        public function Main_Character_Two()
            init();
        function init():void
            //Initialize variables
            vx = 0;
            vy = 0;
            //Add event listeners
            stage.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown);
            stage.addEventListener(KeyboardEvent.KEY_UP, onKeyUp);
            addEventListener(Event.ENTER_FRAME, onEnterFrame);           
        function onKeyDown(event:KeyboardEvent):void
            if (event.keyCode == Keyboard.LEFT)
                vx = -5;
            else if (event.keyCode == Keyboard.RIGHT)
                vx = +5;
            else if (event.keyCode == Keyboard.UP)
                vy = -5;
            else if (event.keyCode == Keyboard.DOWN)
                vy = +5;
        function onKeyUp(event:KeyboardEvent):void
            if (event.keyCode == Keyboard.LEFT || event.keyCode == Keyboard.RIGHT)
                vx = 0;
            else if (event.keyCode == Keyboard.DOWN || event.keyCode == Keyboard.UP)
                vy = 0;
        function onEnterFrame(event:Event):void
            //Initialize local variables
            var playerHalfWidth:uint = player.width / 2
            var playerHalfHeight:uint = player.height / 2
            var backgroundHalfWidth:uint = backdrop.width / 2;
            var backgroundHalfHeight:uint = backdrop.height / 2;
            //move the background
            backdrop.x += -vx;
            backdrop.y += -vy;
            //Stop the background at stage edges
            if (backdrop.x + backgroundHalfWidth < stage.stageWidth)
                backdrop.x = stage.stageWidth - backgroundHalfWidth;
            else if (backdrop.x - backgroundHalfWidth > 0)
                backdrop.x = 0 + backgroundHalfWidth;
            if (backdrop.y - backgroundHalfHeight > 0)
                backdrop.y = 0 + backgroundHalfHeight;
            else if (backdrop.y + backgroundHalfHeight < stage.stageHeight)
                backdrop.y = stage.stageHeight - backgroundHalfHeight;
This is what it says is my problem,
Fonts should be embedded for any text that may be edited at runtime, other than text with the "Use Device Fonts" setting. Use the Text > Font Embedding command to embed fonts.
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at Main_Character_Two/onEnterFrame()

either backdrop or player don't exist.
to pinpoint which, click file>publish settings>swf and tick permit debugging.  retest.
the new error message(s) will indicate the problematic line number (trying to) reference the non-existant object.

Similar Messages

  • Can't figure out what the problem is, please help!

    Hey, so I have a Mac Mini which I bought nearly 3 years ago. I've been running the latest system 10.6.6, when the issues started. Everything would just unexpectedly quit and occasionally, I'd get the "You need to re-start your computer..." grey screen, also the desktop would refresh itself and not open any folders or anything at all. Finder, Console, Dashboard Client, etc all quit,´and sometimes the nmblookup thing would pop up, but before I could click Allow or Deny, it'd dissappear again.
    I ran the Hardware Test, and four times out of seven it said "No Trouble Found" while three times out of seven it gave me an error code starting with 4MEM. The system profiler, meanwhile, told me that both RAM cards were OK. I did the Hard Drive verification through Utilities and it gave me some problem starting with "Key..." and said it could not be repaired.
    SO, I reformatted the HD as it suggested, deleting everything (I've got it backed up though). Then, I installed Snow Leopard again, and the issues were still present. It would Quit Unexpectedly freeze up, etc. So then I went and erased the hard-drive again, and a new partition was made automatically. After that, I tried installing the original software which came with the computer. Except that after Installation Disk 1 was finished, the computer restarted and then it was just a blue screen. Nothing. It didn't ask for the second disk or aything. I tried again, and in the middle of Disk 2 Installation the grey "You need to re-start..." screen came down. ***. Now, I can't seem to install ANY Mac OS X on my computer, not what it came with, not the Snow Leopard, nothing.
    Again, Hardware Tests tells me everything is ok, and the Hard Drive also says there's nothing to repair. Then what is this? I don't even know what it could be anymore! Please help if you have an idea of what this might be! Unfortunally, at the moment I have no money to send it to the repair so they'd check=/
    Thanks in advance, any help would be greatly apreciated!

    Oh ok, well that was what the test said prior to reformatting the hard drive. Now, it doesn't find any trouble no matter how many times I run it. That's what has me so confused, everything seems to check out and yet...I can't do anything, not even install the software!

  • I can no longer load Google since I upgraded to the new version of fierfox & its definitely not anything to do with my firewall. How do I figure out what the problem is?

    I upgraded to Firefox 4 and every time I try to open the home page with the Google search bar teh connection times out and its unable to connect. If I type any other address in the address bar it will open up the site, it's only Google it won't open. I've worked through every step on the Firefox support page and checked all my settings, run scans for malware, checked the firewall settings etc and even with my firewall, antivirus & spam filters all turned off I still can't open Google. I even uninstalled Firefox 4 and went back to version 3.6.16 but still have the same problem. Will I ever be able to Google again? Is there anything else I can try? Any help would be greatly appreciated!

    https://discussions.apple.com/message/25085868#25085868
    I started a thread in safari maverics, I ment to put it in iOS Safari.  New Thread lists all the steps I've taken.  No I haven't tried another browser.  I've only ever used Safari on my iDevices.

  • Lumia 920: Still trying to figure out what the pro...

    Aside from being very upset about Nokia's not allowing updates for the unbranded 920s, I'm still trying to figure out what the problem is with my camera...
    I had nearly a perfect working phone one and a half week ago. Even though the battery didn't last well and heated up somehow and there are gliches with some apps, the phone and its original apps worked without problem. Once the battery died in the middle of the night but I thought that it was because I didn't plug the charger well enough, it's a little loose anyway. I read about the freezes and restarts in different forums and was wondering what people were talking about, since I didn't have any such kind of problems. I felt myself being lucky.
    Then I got some app updates (Nokia drive+ and a few others), and ever since then my camera hasn't worked properly. When I open the camera app or click the camera button nine out of ten times it just goes back to the home screen or else it freeze the phone. I have tried soft resets and restarts but they mostly don't work, or they might work long enough to take a couple of photos and then stop working, or otherwise it freeze the phone and need to soft reset it. There is no pattens as to when it works and when it doesn't. I have also tried to uninstall some apps but it seemed to have no effect on the condition of the phone. Every app that utilizes the camera won't work ( camera won't work but other functions work), flashlight app won't work.
    Today I decided to hard reset the phone. It's surprisingly easy procedure that took less than 10 min. I did my first hard reset and chose to use my phone's backup files from Skydrive and it went fine, except it didn't do anything to the camera, i.e. it didn't work. My second hard reset I chose to "start from clean table" (or something of such) without any apps installed, and also disabled the automatic update but it didn't do anything either, no working camera. I did the same procedure once more just in case I did something wrong, but it didn't work. The fourth hard reset I restored from Skydrive to have (mostly) everything in order. No working camera either but almost everything else works now.
    It puzzles me. I'd though that if the reason of camera not working is some app updates then start from the clean table would have resloved it. Even after hard reset using camera at the very first possible chance didn't succeed: it worked for a very short moment before it froze the phone, just like before resetting. If I can keep myself from touching the camera the phone itself works (aside from maybe once or twice restartd itself, very rarely anyway). Now I have a phone with a camera I can't use and I don't have a clue what the problem is. I don't think that there are hardware problems because the camera *worked*, and I don't believe that software updates can break it hardware-wise. I have thought of changing it but who can promise that I'll get a phone that works better. Probably I should wait for Microsoft's/Nokia's updates, it just feels like they never come...

    hi mate,
    Sorry to hear you are having such a rough time with your 920. In this case, it might be best to take your phone back to your point of purchase and ask for a replacement, and if they are being less than helpful, to take it to your local Nokia Care point instead: http://nokia.com/support
    I can certainly empathise with you, as a lot of the issues you describe are apparently fixed by the Portico update by Microsoft that was released yesterday to AT&T and Rogers devices but not the rest of the Lumia Windows Phone 8 range unfortunately. Bit of a wait, but hopefully not too long until the update hits.

  • I connected to itunes and it says i have 2.11 GB of space taken up under OTHER , i cant figure out what is taking up so much space can anyone help?

    i connected to itunes and it says i have 2.11 GB of space taken up under OTHER , i cant figure out what is taking up so much space can anyone help?

    I believe the new IOS 8 system takes up 1.3 Gb on it's own.   Then plus anything else you may have loaded.

  • HT1414 i restored my iphone now i cant accept calls or call out whats the problem?

    i restored my iphone now i cant accept calls or call out whats the problem?

    Hey retrothakid,
    Thanks for the question. I understand that you are experiencing issues with your iPhone 4s. The following resource may provide a solution:
    iPhone: Troubleshooting issues making or receiving calls
    http://support.apple.com/kb/TS3406
    Thanks,
    Matt M.

  • I recently received a  WD My Book Studio external Hard drive and am installing it but can't figure out what the difference between wd turbo installer  64 and wd   turbo installer is.  Can someone tell me.  Thanks in advance for all your help.

    I recently received a  WD My Book Studio external Hard drive and am installing it but can't figure out what the difference between wd turbo installer  64 and wd   turbo installer is.  Can someone tell me.  Thanks in advance for all your help.

    Oh ok, well that was what the test said prior to reformatting the hard drive. Now, it doesn't find any trouble no matter how many times I run it. That's what has me so confused, everything seems to check out and yet...I can't do anything, not even install the software!

  • Hi. I cant figure out, what I will get in the creative cloud.

    Hi. I cant figure out, what I will get in the creative cloud. ?? Do I get it all ?? if not wich programs are in it. ? I hope, i can get an answar fast :-)

    Cloud Plans https://creative.adobe.com/plans
    -Special Photography Plan includes Photoshop & Lightroom & Bridge & Mobile Lightroom
    -Special Photography Plan includes 2Gig of Cloud storage (not the 20Gig of the full plan)
    -http://helpx.adobe.com/creative-cloud/faq/mobileapps.html
    -http://helpx.adobe.com/photoshop/kb/differences-photoshop-creative-cloud-photography.html
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html
    -http://www.adobe.com/products/catalog/mobile._sl_id-contentfilter_sl_catalog_sl_mobiledevi ces.html

  • HT1414 In updating my iTunes,I got a message "Service Apple Mobile Device failed to start. verify that you have sufficent priviliges to start system services". Cant figure out what to do

    In updating my iTunes,I got a message "Service Apple Mobile Device failed to start. verify that you have sufficent priviliges to start system services". Cant figure out what to do

    So many people are having this problem! Doehunter's instructions here worked for me!  Hope this helps. https://discussions.apple.com/message/23824640#23824640

  • I have a samsung intensity ll.How do i get rid of a small box with AA off of my main screen?Cant figure out what setting it is.

    How do i get rid of a small box with AA in it on my main screen? cant figure out what setting it is on my samsung intensity ll ?

    Good deal      (the AA stands for Auto Answer, by the way; and I like your avatar  )

  • I cannot figure out what the "other" is that is taking up space on my iPOD.

    Please help! I am in the process of burning my songs to my iPOD and I noticed when I synced it up that I had alot of orange, "other" stuff taking up space. I have a few television shows and am building up my music files. I cannot figure out what the "other" is. When I clicked the tab for photos, it had 23 photos that it pulled from My Pictures. However, I played around with the settings and it said under "photos," (0). However, it still has space that it is taking up.
    I have alot of music to download and I don't want to have 5.38 bytes of used up space for which I don't know what it is.
    Thanks!
    -Josh

    Other can be album artwork, contacts, notes etc. If you feel that the Other is being incorrectly reported you could try restoring your iPod. Just be aware that restoring will erase the hard drive, reload the software and put it back to default settings, so if you have songs on your iPod that aren't on iTunes you will lose them if you have no back up. Once the restore is complete follow the on screen instructions and it should connect to iTunes and give you a prompt to automatically update your library onto the fresh installation. If you want to update manually or using selected playlists choose no and it will default to manual mode and you can choose whatever setting you like: Restoring iPod to factory settings with iTunes 7

  • HT201304 my i phone says its disabled until i die just jokes but for a long time and i cant figure out what to do its my phone

    my i phone says its disabled until i die just jokes but for a long time and i cant figure out what to do its my phone

    Follow the instructions in this support document for a disabled iPhone. iOS: Forgot passcode or device disabled

  • I cant figure out what my user icon is a picture of!!!

    i just reinstalled tiger and i cant figure out what my new icon is a picture of. Any suggestions?
    http://i112.photobucket.com/albums/n183/xxxSinkEmFastxxx/Picture2-3.png

    All user pictures are located in /Library/User Pictures/. Figuring out which is which, is left as an exercise. More than likely, a flower or nature thingy. They'll all open in Preview.

  • I purchased an ITunes card and it has already been redeemed. The store told me it was Apple's problem, but I cant figure out what to do?

    I purchased a ITunes gift card at Hastings. When we tried to load it, is was not able to load b/c it had already been redeemed. I have tried to look on the site to figure out what to do since the store said they could do nothing.

    See here: iTunes Store: Invalid, inactive, or illegible codes
    B-rock

  • My pages documents on my ipad wont sync to icloud. Some documents have had the upload icon on them for over a month. It was all working fine but now I cant figure out what is going on.

    MY pages documents on my ipad wont sync to icloud. Some of the documents have had the upload icon on them for over a month. It was all working fine a month or so ago but I cant figure out why it wont work now.

    Why start a new and very similar thread to your other one which you have not responded to (have you read the replies?)
    I suggest that no response is made to this duplicate thread. 

Maybe you are looking for

  • JSP Execution Problem

    We have implemented a servlet that uses a RequestDispatcher to forward to a JSP. The JSP instantiates an object (passing the Request and Response as parameters) that uses the RequestDispatcher once again to include another JSP. This has been working

  • CS 5 and CS 5.5

    yea im just wonderign whats the difference about them .

  • AIM -- Email Address for Screen Name -- Missing

    At our office we've all set up our AIM screen names using the "Use an existing e-mail address as a Screen Name" option. A new employee started this week and this option is now missing. Is there a way to still do this? Our email addresses are over 16

  • SD : How to trigger Outputs?

    We have made a Z output type ZXXX of Customer PO ack type. The requirement is to trigger this output on the scenarios below and a few other sceniarios 1) Schedule quantity changes 2) Scheduled date changes Can anyone please advice me as to how and wh

  • Making button generating code work in a loop

    I'm trying to generate instances of a movieclip from my library onto the stage and give them all unique variable and instance names so I can control them later and perform certain actions based on the name of the button clicked. I can do it with the