(AS2) 如何从类内部访问符号扩展动画剪辑?

发布于 2024-12-09 23:38:45 字数 253 浏览 1 评论 0原文

我创建了一个影片剪辑符号并导出到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 技术交流群。

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

发布评论

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

评论(1

浪漫之都 2024-12-16 23:38:45

在AS3中,Flash中有一个选项,类似于“自动声明我的类中舞台上的每个实例”,因此Flash会自动添加public vargraphics:MovieClip。我认为在 AS2 中你必须手动执行此操作。

并且请为变量使用不同的名称 - graphics 是内置的东西。

class BRIQUE extends MovieClip
{
  public var mygraphic:MovieClip

  function BRIQUE()
  {
     mygraphic._x=10;
  }
}

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.

class BRIQUE extends MovieClip
{
  public var mygraphic:MovieClip

  function BRIQUE()
  {
     mygraphic._x=10;
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文