Hello all,
Long time reader, first time poster.
I've been using GreenSock for Flash quite happily for a number of years now but we've just had an update to Animate CC and now I can't get it work at all!
For example the following code:
import com.greensock.*;
stop();
function setPage(){
boxOver.addEventListener(MouseEvent.MOUSE_OVER, showInfo);
boxOver.buttonMode = true;
}
setPage();
function showInfo(e:MouseEvent){
boxOver.removeEventListener(MouseEvent.MOUSE_OVER, showInfo);
boxOver.addEventListener(MouseEvent.MOUSE_OUT, hide