ActionScript Добавление пользовательского класса в .fla

StackOverflow https://stackoverflow.com/questions/2401073

  •  18-09-2019
  •  | 
  •  

Вопрос

Я упускаю здесь что -то фундаментальное. У меня есть очень простой пользовательский класс, который рисует круг и флажок, и позволяет перетаскивать этот круглый спрайт, только если флажок проверен. Компонент флажки добавляется в библиотеку вручную в моем .fla.

Из панели действий моего проекта .fla:

var ball:DragBall = new DragBall();
addChild(ball);

мой пользовательский класс.

package
{
import fl.controls.CheckBox;
import flash.display.Sprite;
import flash.events.MouseEvent;

public class DragBall extends Sprite
    {
    private var ball:Sprite;
    private var checkBox:CheckBox;

    public function DragBall():void
        {
        drawTheBall();
        makeCheckBox();
        assignEventHandlers();
        }

    private function drawTheBall():void
        {
        ball = new Sprite();
        ball.graphics.lineStyle();
        ball.graphics.beginFill(0xB9D5FF);
        ball.graphics.drawCircle(0, 0, 60);
        ball.graphics.endFill();
        ball.x = stage.stageWidth / 2 - ball.width / 2;
        ball.y = stage.stageHeight / 2 - ball.height / 2;
        ball.buttonMode = true;
        addChild(ball);
        }

    private function makeCheckBox():void
        {
        checkBox = new CheckBox();
        checkBox.x = 10;
        checkBox.y = stage.stageHeight - 30;
        checkBox.label = "Allow Drag";
        checkBox.selected = false;
        addChild(checkBox);
        }

    private function assignEventHandlers():void
        {
        ball.addEventListener(MouseEvent.MOUSE_DOWN, dragSprite);
        ball.addEventListener(MouseEvent.MOUSE_UP, dropSprite);
        }

    private function dragSprite(evt:MouseEvent):void
        {
        if (checkBox.selected) {ball.startDrag();}
        }

    private function dropSprite(evt:MouseEvent):void
        {
        if (checkBox.selected) {ball.stopDrag();}
        }
    }
}

Компиляция из .fla приводит к следующей ошибке, которую я не понимаю

 TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at DragBall/drawTheBall()
    at DragBall()
    at DragBall_fla::MainTimeline/frame1()
Это было полезно?

Решение

Проблема здесь в том, что вы пытаетесь получить доступ к сцене, прежде чем он будет доступен для этого класса. Лучший способ сделать это - добавить слушателя событий в свой конструктор для event.ded_to_stage, а затем, как только это событие произойдет, устанавливая x и y относительно сцены.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top