Showing posts with label CFBuilder. Show all posts
Showing posts with label CFBuilder. Show all posts

Saturday, March 27, 2010

Word Wrap in CFBuilder

Contrary to popular belief, CFBuilder DOES allow word-wrap. It is just a little buried in the menus.

Find it here:

* Open Window --> Preferences --> HTML --> Editors
* Click the Advanced Tab
* Check "Enable Word Wrap"
* Restart CF Builder.

Create CFCs entirely in - "generate script style code"

Maybe one of the coolest new features in CF9 is the ability to create entire CFC's using a <cfscript> style syntax. And, the CFBuilder will help you build the structure of the code when you check the box labeled "generate script style code."

Learn more from Budd Wright.

Here is an example of the basic structure:

component  displayname="jhjh" hint="Sample Utitility" output="false"
{
 property name="x" type="any";

 public any function getX()
 {
  return x;
 }

 public void function setX( required any x )
 {
  x = arguments.x;
 }

 public  function Hello World()
 {

 }

}

Getting Started with the CF Builder

Here is a quick demo on how to get started with the CF Builder.

Monday, March 22, 2010

ColdFusion Builder released

Adobe's new IDE for ColdFusion has been released. I was at a Cleveland ColdFusion User Group (CFUG) meeting last year where Adobe's Product Manager for ColdFusion showed off many of the features and it looks tremendous. It has had two rounds in beta.

Read more about the new Adobe ColdFusion Builder.

PS - It includes a free copy of the Flash Builder Standard!