我试图在Edge动画之外做两件事。
场景 3名男孩处于闲置状态。
动作
我试图通过
在我的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'
答案 0 :(得分:0)
$.noConflict();
jQuery(document).ready(function($) {
// Code that uses jQuery's $ can follow here.
});
// Code that uses other library's $ can follow here.