There is no way to do this directly in CF. You can do this by switching to basic Java. I stand fixed. Using the showNotes attribute on the <cfpresentation> tag , add HTML notes.
Alternatively, or if this does not work for any reason, you can use the Apache POI to do this, although you may need to use a newer version of poi than the one supplied with your version of coldfusion, which may require additional work .
public static LinkedList<String> getNotes(String filePath) { LinkedList<String> results = new LinkedList<String>();
Conducting complex formatting can be a problem ( bullet points , bold, italics, links, colors, etc.), since you will have to delve deeper into TextRun s, as well as the associated API and drawing, how to create HTML.
source share