Hi, i got a problem while i want to shift rect shape in proper position at first beginning, but i can't make it:
Symbol.bindElementAction(compId, symbolName, "document", "compositionReady", function(sym, e) {
// insert code to be run when the composition is fully loaded here
sym.getComposition().getStage().$("small_scene_rect").css({"position":"absolute","display ":"block","left":"10px","top":"10px","width":"100px","height":"100px"}); // worked
});
//Edge binding end
Symbol.bindSymbolAction(compId, symbolName, "creationComplete", function(sym, e) {
// insert code to be run when the symbol is created here
sym.getComposition().getStage().$("small_scene_rect").css({"position":"absolute","display ":"block","left":"10px","top":"10px","width":"100px","height":"100px"}); // not worked
});
//Edge binding end
I really need your help, thanks!