0

我正在使用 Adob​​e Edge Animate,我希望调用 sym.playReverse(); 或 sym.play(1000); 在屏幕上的 sym.$(“sam”) 上,通过使用 javascript 引导来调整大小。你能帮我吗?

4

1 回答 1

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();
});
于 2013-07-24T12:32:20.700 回答