I've create a couple of symbols(buttons) in HTML5 Canvas project in adobe animate, each button triggers an action, i want to create tooltips for these buttons so they would describe what will happen if you press them.
For symbol with instance name "InstanceOne" i've tried something like this:
this.InstanceOne.attr('title', 'Test tooltip');
but it seems there's no attr function for symbols.Is there a quick way to create tooltips via adobe animate or do i need to use mouseover and mouseout events(no idea how to do that)?