CC Animate HTML5 Canvas - Change (z-index) on hover
Using an "addEventListener" for "mouseover" I am trying to chnage the (z-index) move to the front this.ball_ani_1 when mouseover of this.ball_ani_1.ball_graphic_outer_frame1.ball_graphic_text.hotspot
this.ball_ani_1.ball_graphic_outer_frame1.ball_graphic_text.hotspot.addEventListener("mouseover", ballMouseOver1.bind(this));
function ballMouseOver1()
{
this.setChildIndex( ball_ani_1, this.numChildren()-1);
}
Any help much appriciated 🙂
