This content has been marked as final.
Show 2 replies
-
1. Re: can I use this
joel_pau Jun 12, 2014 9:33 AM (in response to smenegassi)Hi,
I translate code.
sym.play(); ==> the current symbol is played.
sym.deleteSymbol(); ==> the current symbol is deleted.
As this means the current value, you’ve got your this. This is sym.
The equivalent of this is sym.
sym.$("this").hide(); ==> it means you want to hide a symbol.
sym.getSymbolElement().hide(); Current symbol is hidden.
You can use this when you browse an array, an object..., when you use $.each, $.ajax
Now, events. Edge Animate provides you e.target.
$(e.target).hide(); ==> current target is hidden.
Now using the Edge this: sym.$(e.target).hide();
-
2. Re: can I use this
smenegassi Jun 12, 2014 9:35 AM (in response to joel_pau)Thank you !
Very clear explanation.... light in the darkness !
Thank you again and bonne soirée.
sergio




