我正在使用Adobe Edge Animate,我希望调用sym.playReverse();或者sym.play(1000);在屏幕上的sym。$(“sam”)通过javascript引导来调整大小。你能帮忙吗?
答案 0 :(得分:0)
你的问题有些混乱。你想在一个符号上调用sym.playReverse()吗?或者它是舞台内的“sam”符号?
假设您想在舞台内名为“sam”的符号上调用playReverse()。
假设您的作文名称是EDGE-12345678。 Javascript代码:
$(window).resize(function() {
// Replace with your composition name. You read it in the proerties of the Stage.
var composition = AdobeEdge.getComposition("EDGE-12345678");
var stage = composition.getStage();
// Get the sam symbol, child of stage.
var symbolSam = stage.getSymbol("sam");
symbolSam.playReverse();
});