CFPresentation

One of the tags introduced in ColdFusion 8 is CFPRESENTATION, which allows you to create a Flash-based presentation that is very slick and can take full advantage of many ColdFusion tools.

In my opinion, it’s best not to think of this as a PowerPoint alternative. Instead, it’s a slick way to create online (or offline) presentations where you want to include live content or render slides in a customizable manner.

Please refer below example.

[code:cf]

<cfpresentation title="iSummation Technology LTD">
<cfpresenter name="Naresh"
biography="Naresh is a skilled software developer.">
<cfpresentationslide title="Introduction"
presenter="Naresh"
duration="30">
We are a Software development and IT outsourcing company based in India.
We have worked for over 10 years in custom web & desktop software development..
We work primarily on DotNet & ColdFusion platforms for software development.
Our services include application development & maintenance related activities
for a whole spectrum of applications like ERP software, management software,
ecommerce systems, legacy systems etc.
</cfpresentationslide>
<cfpresentationslide title="Services"
presenter="Naresh"
duration="10" >
• Content Management System (CMS) <br >
• EDocument Management System ( DMS) <br>
• Knowledge Management System (KMS) <br>
• Custom web based application development <br>
• Coldfusion, .Net , Ajax programming / Programmer services <br>
</cfpresentationslide>

</cfpresentation>[/code]

 

DEMO