documentProperties.setHyperlinkBase can not work for PPT

The slides 16.1.0 used. I want to use below code to modify the documentProperties of presentation.
However, I find the documentProperties.setHyperlinkBase can not work on the SaveFormat.Ppt. After presentation generated, the value of hyperlink base always empty.
SaveFormat.Pptx can generated proper value, but I cannot used this option due to my customer still using old power point version.
I also try to create a presentation based on a template which hyperlink base already been set, however, when I generate the new docproperties.ppt, the value re-set as empty value.

//Create an instance of Presentation class
Presentation presentation = new Presentation();

//Create a reference to IDocumentProperties object associated with Presentation
IDocumentProperties documentProperties = presentation.getDocumentProperties();

// Set the built in properties
documentProperties.setTitle ("IBM BlueworksLive Blueprint Presentation");
//
documentProperties.setHyperlinkBase("https://www.blueworkslive.com");
documentProperties.setComments ( "Generated by IBM BlueworksLive");
documentProperties.setCompany("IBM");

presentation.save(dataPath + "docproperties.ppt", SaveFormat.Ppt);


presentation.save(dataPath + "docproperties.pptx", SaveFormat.Pptx);

Hi Rui,


I have worked with the presentation and I am able to reproduce the issue in generated PPT. A ticket with ID SLIDESJAVA-35461 has been added in our issue tracking system to investigate and resolve the issue. This thread has been associated with the issue so that may notify you once issue will be fixed.

We are sorry for your inconvenience,

The issues you have found earlier (filed as SLIDESJAVA-35461) have been fixed in this update.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.