How to debug or look at all the actions that are running?
Hello everyone I was wondering if there was any way to look at these flash tours with some kind of code viewer. What I would like to see is all the actions that are being performed and any small errors happening along the way. I'm running into these problems where random things disappear like the move up or down button.... Is it my browser? In any case, I would like to know the best way to debug these things....
I've heard other people use firebug netTab, and I don't see how it's useful...
you can use "trace" function to show that action is running.
just use trace(ACTION_NAME);
in action body at the end for example.
Open a log window, and you will see, which action is running.
Hope it help