On Wed, Jun 18, 2008 at 9:56 AM, Ian Skinner <[EMAIL PROTECTED]> wrote: > The is a ColdFusion debugger that theoretically does the type of > functionality you are dreaming of.
Yes, just look at the debugger. I use Fusion Debug and love it, but you should be able to get the same thing from the CF8 debugger. Basically you set a 'breakpoint' in your code so that the debugger will know when to trigger. You call the page that will run that code with the breakpoint. Then, in the Eclipse's Debug perspective you get to see all variables that have been defined. You can also see what is just about every scope: application, request, session, server, cgi, url, form, cookie, client, etc. Other parts I really like about it is the ability to work with expressions. You can watch an expression such as IsNumeric(myVariable). More recently I've found myself finding what a variable's or an expression's value is by highlighting it, right clicking and selecting Inspect Expression (Fusion Debug, not sure if that is available in CF debug). Lately I've been working with some threading. The debugger also picks up those as separate threads and shows me what is going on there. -- Matt Williams "It's the question that drives us." ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307672 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

