Animate CC:单击按钮时如何访问根阶段

时间:2018-11-19 09:13:30

标签: html5-canvas animate-cc

首先,我使用Adobe Animate CC创建Canvas项目。但是我对操作代码有疑问。

我在舞台上有2个符号。如何访问主影片剪辑上的符号?

var _this = this;

_this.Text.on('click', function(){

_this.gotoAndPlay('sym2');
});

我需要编辑此代码以访问主影片剪辑上的符号:

https://www.dropbox.com/s/9em62bbifwaxqv4/test2.fla?dl=0

1 个答案:

答案 0 :(得分:0)

这似乎是一个范围界定的问题。在test2.fla中,名为Text的对象与名为TradeMarks的对象一起包含。

剪辑中的代码为:

[{ "1": "23" }, { "45": "87" }] -->its going to be uuid

在商标上而不是在根时间轴上查找名为“ sym2”的对象。

我认为您将其更改为以下内容即可得到想要的东西:

def mapped_product(objects)
    mapping = []
    objects.each do |object|
      mapping << {
        object.product_order_id: object.id
      }
    end
end