This content has been marked as final.
Show 3 replies
-
1. Re: Any reason why my code isn't executing the "stop" action?
hemanth kumar r Feb 11, 2014 11:08 PM (in response to rossfranks)Script below should work:
sym.getComposition().getStage().getSymbol("_001").getSymbol("_002").$("_003"). bind('mouseenter',function(e){
e.preventDefault();
$(this).unbind('mouseenter');
sym.getComposition().getStage().getSymbol("_001").getSymbol("_002").getSymbol("_003"). stop("over");
});
-
2. Re: Any reason why my code isn't executing the "stop" action?
rossfranks Feb 12, 2014 2:17 PM (in response to hemanth kumar r)Thanks rhemanthkumar,
so .$ should only be referenced in the last mention of a symbol, all others should be .getSymbol ?
-
3. Re: Any reason why my code isn't executing the "stop" action?
hemanth kumar r Feb 12, 2014 9:02 PM (in response to rossfranks)bind is a jquery function applied on a element ,so the last is a jqueryselector where as others have 'getsymbol' animate API's



