Category: ColdFusion

VC Star Article - Front and Center

Dan Short recordingWhile I was in Ojai recording the Dreamweaver 8 Beyond the Basics title for lynda.com there were some reports from the Ventura County Star writing an article on lynda.com. They wanted to take a few photos of someone doing a recording, and they ended up using a shot of me on the front page of the Business section of their February 15th article. See mom and dad, I really do do real work :). Click the image for a larger version.

Read the article here (requires free registration).

6 comments | Posted by Daniel Short on Feb 17, 2006 at 12:00 AM | Categories: (X)HTML - Books - ColdFusion - CSS - Dreamweaver -

CFDUMPing the Variables scope

Don't ask me why I never tried this before... I've always just done a <cfoutput>#myVar#</cfoutput> when I needed to find out what a local variable value was. This often meant scattering them all over my page to figure out what piece of code I got wrong... I finally decided I'd just try dumping the local variable scope, and wallah voila! I get a full dump of every local variable on the page, including queries, available functions, the whole bit. I don't know why I never tried that before...

<cfdump var="#Variables#" label="Local Variables" />
2 comments | Posted by Daniel Short on Feb 16, 2006 at 12:00 AM | Categories: ColdFusion - Dreamweaver -

Dreamweaver CFC Bean Generator

I've been using Jon Block's wonderful online CFC generator for a while, but I always secretly hoped that he was going to create a Dreamweaver extension for it. I decided it was going to happen (he's more likely a CFEclipse user ;), so I did a quick google and found the CFC Bean Generator on the Exchange (thanks for posting about it Rob!)

I got it installed, and everything is working wonderfully. I went in and edited the js file to suit my own style a bit more (I don't like using single quotes for attributes, which is what the extension generates) by replacing all single quotes with double quotes, and changing the way variables are initially set. But Adam (the author) is definitely saving me a ton of time, and I can now generate my CFCs at 30,000 feet without having to worry about having any pages saved locally to do it through a browser. I just generated a very compact 300 line CFC in a matter of a minute and a half. Ya just can't beat it...

2 comments | Posted by Daniel Short on Feb 15, 2006 at 12:00 AM | Categories: ColdFusion - Dreamweaver -