MTASC-2-Firebug improved!

Sebastian Wichmann just send me a patch which makes big improvements of the appearance of mtasc2firebug! There's also some code cleanup! Here's a small preview of what you will get!

  • Grouping!
  • Dump complete nested objects sets.
  • Highlight undefined variables!
  • Thank you Sebastian! Download the new package here!

    2 Comments

    1. Manfred Weber 2007-03-19, 8:52 am

      Add this to Debug.as to trace MovieClips:

      case 'movieclip':
        var _mcs = new Array();
        for(var i in obj){
          _mcs.push({MovieClip:String(obj[i]),Depth:obj[i].getDepth()});//[obj[i].getDepth()]=String(obj[i]);
        }
        jsCommand  = 'console.dir('   JSON.stringify(_mcs)  ');';
        delete _mcs;
        break;
      
    2. Useful links for debugging/tracing your ActionScript Apps « SharpStyle Neutron 2007-04-9, 9:29 pm

      [...] If you are using Firebug (see my post here: Firebug — web development evolved), you might be interested in the following: MTASC-2-Firebug improved! [...]

    Add a Comment