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
_______________________________________________
[email protected]
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

_______________________________________________
[email protected]
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