Hi, 

For the old PowerPoint version I can detect if a Slide contains hyperlinks by 
using (sort of) this code:

org.apache.poi.hslf.usermodel.SlideShow ppt = new SlideShow(fileInputStream);
Slide[] slides = ppt.getSlides();
TextRun[] txts = slides[j].getTextRuns();
Hyperlink[] links = txts[k].getHyperlinks();

But what is the method for doing this for files made in PPT 2007 and later?

Should I use the low level org.apache.poi.xslf.XSLFSlideShow or XMLSlideShow?







---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to