Hi. In my program, I have Flash set to stop on a certain frame. Now, if the user clicks anything or anywhere except for one button, I want Flash to continue playing. How do I tell Flash that I want it to continue playing -unless- if the user clicks on anything except for btn_keyboard?
I tried:
var oMouseListener:Object = new Object();
Mouse.addListener(oMouseListener)
if (oMouseListener.onMouseUp != btn_keyboard.onMouseUp) {
play();
}
But it doesn’t work, and I’m not sure if I’m even anywhere near the right coding. Hahaha. Thanks so much for your help! It’s highly appreciated!