In CF9 I want to save a presentation to PPT but I would like to retain the 
notes 
so the person who downloads it can see them in PowerPoint. Any suggestions.
 
 
This code doesn't save the slide notes.
 
 
<cfpresentation title="myPresentation" shownotes="yes" format="ppt" 
destination="#expandPath('.')#/mynewppt#cftoken#.ppt" overwrite="yes">
 
 
    <cfloop from="1" to="6" index="i">
        <cfpresentationslide title="Title Slide #i#" notes="Test Note Slide 
#i#">
       <cfoutput>
            <h3>Slide #i#</h3>   
           </cfoutput>
        </cfpresentationslide>
    </cfloop>
 
    <cfpresentationslide title="Summary" duration="10">
        <h3>Summary</h3>
            <ul>
                <li>Projected Sales</li>
                <li>Challenges Ahead</li>
                <li>Long Term Goals</li>
            </ul>
    </cfpresentationslide>
 
 
 
</cfpresentation>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338295
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to