Turn CF Debugging On/Off with one click
Well this is how you can do it on your local dev box with one click.
create a cfm page and dump the below code in it which interacts with the coldfusion admin api. Its pretty basic but all it does it hit the debug cfc and check to see what state debugging is and just flips it.
<cfscript>
adminObj = createobject("component","CFIDE/adminapi.administrator");
adminobj.login(url.password);
oadmin =
createObject("component","CFIDE.adminapi.debugging");
if (oadmin.getDebugProperty('enableDebug') eq true) { oadmin.setDebugProperty('enableDebug', false);
}
ELSE {
oadmin.setDebugProperty('enableDebug', true);
}
</cfscript>
Bookmark that into your tool bar and your away.
There are obviously massive security issues with this but just for convenience of development on your local machine this should save you some time.

You can also see some of Dave Shuck's cfeclipse snippets that he created as a result... http://www.daveshuck.com/_ping.cfm?blogID=123
Thanks,
AJL
DK
DK
thinking about it now i would like to look at the possibility of a mac widget as the cfcs are public aren't they.... mmm webservices.
if (oadmin.getDebugProperty('enableDebug') eq true) { oadmin.setDebugProperty('enableDebug', false);
writeoutput('debugging off');
}
ELSE {
oadmin.setDebugProperty('enableDebug', true);
writeoutput('debugging on');
}