通过jQuery访问Adobe Edge Animate实例

时间:2013-03-06 02:16:03

标签: jquery jquery-animate adobe-edge

我试图在Edge动画之外做两件事。

场景 3名男孩处于闲置状态。

动作

  • 点击任何一个男孩。
  • 用'封闭的'嘴巴PNG替换'打开的'嘴巴PNG。

我试图通过

在我的HTML页面中使用jQuery绑定每个字符
$(this).on('click', function (){ 
   //Close the mouth
});

我正在使用的代码来自文档(关于如何通过jQuery访问动画实例的描述有限)。

var comp = AdobeEdge.getComposition("act0_introduction");
var stage = comp.getStage();
console.log("Stage: "+stage);

我通过Chrome收到的错误是: Uncaught TypeError: Object #<Object> has no method 'getComposition'

1 个答案:

答案 0 :(得分:0)

尝试使用jQuery.noConflict

 $.noConflict();
jQuery(document).ready(function($) {
// Code that uses jQuery's $ can follow here.
});
// Code that uses other library's $ can follow here.