(AS2) 如何从类内部访问符号扩展动画剪辑?
我创建了一个影片剪辑符号并导出到actionscript,我创建了.as文件:
class BRIQUE extends MovieClip
{
function BRIQUE()
{
graphics._x=10;
}
}
“图形”是在我的符号内的舞台上导入的图像,但它似乎无法以这种方式访问(我收到错误),但它可以工作在as3中是这样,那么在as2中正确的方法是什么?
谢谢
I created a movieclip symbol and exported to actionscript, I created the .as file:
class BRIQUE extends MovieClip
{
function BRIQUE()
{
graphics._x=10;
}
}
"graphics" is an image imported on the stage inside my symbol, but it seems not to be accessible this way (I get an error), nevertheless it works this way in as3 then what is the right way in as2 ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在AS3中,Flash中有一个选项,类似于“自动声明我的类中舞台上的每个实例”,因此Flash会自动添加
public vargraphics:MovieClip
。我认为在 AS2 中你必须手动执行此操作。并且请为变量使用不同的名称 -
graphics
是内置的东西。in AS3 there is an option in Flash that says something like "automatically declare every instance on stage in my class" so Flash adds the
public var graphics:MovieClip
automatically. i think in AS2 you have to do this manually.AND please use a different name for the variable -
graphics
is an built-in thing.