Friday, December 18, 2009

CF Builder Beta 3 Released

CF Builder Beta 3 has been posted on Adobe Labs. Check it out.

http://labs.adobe.com/technologies/coldfusionbuilder/

Tuesday, October 6, 2009

ColdFusion Builder Docs

Hi, Find here the docs for ColdFusion Builder(beta)

Using Adobe ColdFusion Builder -
http://help.adobe.com/en_US/ColdFusionBuilder/Using/index.html

Installing Adobe ColdFusion Builder -
http://help.adobe.com/en_US/ColdFusionBuilder/Installing/index.html

ColdFusion 9 Documentation

Hi, The ColdFusion 9 Documentation is available online, check out the
following links.

Installing Adobe ColdFusion 9 -
http://help.adobe.com/en_US/ColdFusion/9.0/Installing/index.html

Adobe ColdFusion 9 CFML Reference -
http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/index.html

Configuring and Administering Adobe ColdFusion 9 -
http://help.adobe.com/en_US/ColdFusion/9.0/Admin/index.html

Developing Adobe ColdFusion 9 Applications -
http://help.adobe.com/en_US/ColdFusion/9.0/Developing/index.html

ColdFusion 9 ActionScript Language Reference -
http://help.adobe.com/en_US/AS3LCR/ColdFusion_9.0/

ColdFusion 9 Released!!!

Adobe has released the latest version of ColdFusion 9. Check out here...

http://www.adobe.com/products/coldfusion/

Also, check out the ColdFusion Builder beta — An Eclipse based IDE for
ColdFusion development that is deeply integrated with ColdFusion 9.

http://labs.adobe.com/technologies/coldfusionbuilder/

Monday, July 13, 2009

ColdFusion Builder (Bolt) Public Beta Released

Adobe® ColdFusion® Builder™ is the highly-anticipated first ColdFusion IDE offered by Adobe. Adobe ColdFusion Builder is an Eclipse based IDE for ColdFusion development that is deeply integrated with ColdFusion 9. Now you can manage your entire ColdFusion development cycle from concept to production all in one easy to use tool.

ColdFusion Builder is now available as part of public beta. Check out http://labs.adobe.com/technologies/coldfusionbuilder/

ColdFusion 9 Public Beta Released

ColdFusion 9 is now available as part of public beta.

Check out http://labs.adobe.com/technologies/coldfusion9/


Wednesday, March 18, 2009

cfpdf add watermark example

With the cfpdf tag you can add/delete watermarks for pdf's.

Here is a very simple example to add a water mark to a pdf.

<cfpdf
action = "addwatermark"
source = "c:\temp\source1.pdf"
image = "c:\temp\image1.jpg"
foreground = "yes"
isBase64 = "yes"
overwrite = "yes"
pages = "1"
password = "mypwd"
rotation = "45"
showonprint = "yes">
destination = "c:\temp\desti1.pdf"
>