In Adobe Flash, I added dynamic text on top of some buttons. However, the dynamic text in front of the buttons blocks my mouse and I cannot click on the button. Is there any way (Any Actionscript 3.0 code I can write, etc.?) I can get the program to allow me to click through the text and onto the button? I also cannot change the dynamic text to static because I programmed my system to change the text based on certain conditions.
Asked
Active
Viewed 98 times
0
-
Please add some code so we can help you. – Mehul Desai Jun 23 '17 at 04:43
-
1[Related Question](https://stackoverflow.com/questions/1365089/how-to-click-through-a-display-object-in-flash-with-as3) Basically you need to turn off `mouseChildren` and `mouseEnabled` on the textfield. – Jun 23 '17 at 05:13
-
Thanks. That solved my problem. – Gary Lu KOTH Jun 23 '17 at 14:03