A while back I released my console as well. It's nothing fancy, but did have
a feature that allows you to individually toggle whether a certain
broadcaster's output would be traced in flash. Additionally, in the live
console, you can filter across specific broadcasters, so that you can look
at output on a per object basis, as well as look at the chronological,
albeit laggy, mess of output from your application.

I guess some doc's would be helpful. If anyone would like, lemme know and
ill take a lil time to run em through asdoc or somethin.

http://chattyfig.figleaf.com/pipermail/flashcoders/2006-June/167515.html

Cheers!
Aaron

On 7/18/06 3:59 PM, "eric dolecki" <[EMAIL PROTECTED]> wrote:

> i have something like XRAY, but you never take snapshots, it works runtime,
> and has special trace statements, allows me to fire functions runtime with
> arguments, interrogate variable values, properties, you name it. It can work
> with multiple SWFS (by switching the target), etc.
> 
> e.d.
> 
> On 7/18/06, Steven Sacks | BLITZ <[EMAIL PROTECTED]> wrote:
>> 
>> Another alternative is to do this:
>> 
>> if (!debug) _global.tt = null;
>> 
>> or
>> 
>> if (debug) {
>>         _global.out = function(m) {
>>                 NetDebug.trace(m);
>>                 _global.tt(m);
>>         }
>> }
>> 
>> And use out() as your trace method which universally works in the IDE,
>> with the RemotingConnection Debugger, and with Xray.
>> 
>> BLITZ | Steven Sacks - 310-551-0200 x209
>> _______________________________________________
>> Flashcoders@chattyfig.figleaf.com
>> To change your subscription options or search the archive:
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>> 
>> Brought to you by Fig Leaf Software
>> Premier Authorized Adobe Consulting and Training
>> http://www.figleaf.com
>> http://training.figleaf.com
>> 
> _______________________________________________
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
> 
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com

-- 
Aaron Buchanan | Flash Developer, Lab-Media | T 909 702 1368


_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to