动态对象补间

发布于 2024-10-17 08:09:27 字数 847 浏览 5 评论 0原文

我是 Flash/ActionScript 3 的新手,我正在尝试动态更新补间中的对象。

信息变量将根据按下的按钮而变化。

我目前收到以下错误...

TypeError:错误#1009:无法访问 null 的属性或方法 对象引用。在 fl.transitions::Tween/setPosition() 处 fl.transitions::Tween/设置position() at fl.transitions::Tween() at Map_fla::MainTimeline/frame1()

我不确定我哪里出错了?

import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;

var info:MovieClip;

var myTween:Tween = new Tween(info, "alpha", Strong.easeOut, 1, 0, 2, true);
myTween.stop();

btn_Button.addEventListener(MouseEvent.CLICK, onClick);

btn_Button.addEventListener(MouseEvent.CLICK, onClick2);

function onClick(e:MouseEvent){
    info = mc_England;
    myTween.start();
}

function onClick2(e:MouseEvent){
    info = mc_Scotland;
    myTween.start();
}

I'm new to Flash/ActionScript 3, I'm trying to dynamically update the Object in a Tween.

The info variable will change depending on what button is pressed.

I'm currently getting the error below...

TypeError: Error #1009: Cannot access a property or method of a null
object reference. at fl.transitions::Tween/setPosition() at
fl.transitions::Tween/set position() at fl.transitions::Tween() at
Map_fla::MainTimeline/frame1()

I'm not sure where I'm going wrong?

import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;

var info:MovieClip;

var myTween:Tween = new Tween(info, "alpha", Strong.easeOut, 1, 0, 2, true);
myTween.stop();

btn_Button.addEventListener(MouseEvent.CLICK, onClick);

btn_Button.addEventListener(MouseEvent.CLICK, onClick2);

function onClick(e:MouseEvent){
    info = mc_England;
    myTween.start();
}

function onClick2(e:MouseEvent){
    info = mc_Scotland;
    myTween.start();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘曦 2024-10-24 08:09:27

当您创建补间时,info 为空,这就是您收到空引用错误的原因。将补间的实例化移动到您的点击处理程序中,就可以了。

function onClick(e:MouseEvent){
    applyTween(mc_England);
}

function onClick2(e:MouseEvent){
    applyTween(mc_Scotland);
}

function applyTween(target:MovieClip){
    var myTween:Tween = new Tween(target, "alpha", Strong.easeOut, 1, 0, 2, true);
    myTween.start();
}

info is null when you're creating the tween, that's why you're getting a null reference error. Move the instantiation of the tween into your click handlers and you'll be fine.

function onClick(e:MouseEvent){
    applyTween(mc_England);
}

function onClick2(e:MouseEvent){
    applyTween(mc_Scotland);
}

function applyTween(target:MovieClip){
    var myTween:Tween = new Tween(target, "alpha", Strong.easeOut, 1, 0, 2, true);
    myTween.start();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文