You know you can trace your code and look to result in output panel. But how test your program if you see to .swf file in browser? Please read more about Flashbug first.
And lets create simple program and test it with Flashbug in Firefox.
Create package:
package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;
public class Main extends MovieClip
{
//constructor
public function Main():void
{
trace(”i want check [...]
