this.movieClip_1.addEventListener("click", fl_MouseClickHandler.bind(this));
function fl_MouseClickHandler()
{
movieClip_1.fillColor = color.green;
}
I am a beginner here and I am unable to find any online resources which can allow me to learn the script which is required for making HTML5 content via Adobe Animate.
In my above code, I try to change the colour of the movieclip on a MouseClick event. However, I do not think I have the right syntax.
Thank you.