Extract flash object from ppt

hi,

does the aspose.Slides support extract the flash object from the ppt file?

Best Regard!

Eric

Hi Liu,

Thanks for your interest in Aspose.Slides.

I have observed your requirements and regret to share that at present Aspose.Slides does not support working with flash objects. An issue with ID SLIDESNET-37583 has been added as new feature request in our issue tracking system to further investigate the possibility of implementing requested support. This thread has been linked with the issue so that you may be notified once support will be available.

Many Thanks,

Hi Eric,

Our product team has investigated the issue on their end. Actually, there’s at least one method to access the flash control, by name:

using (Presentation pres = new Presentation(“withFlash.pptm”))
{
IControlCollection controls = pres.Slides[0].Controls;
Control flashControl = null;
foreach (IControl control in controls)
{
if (control.Name == “ShockwaveFlash1”)
{
flashControl = (Control)control;
}
}
}

Can you please provide sample code and scenario along with what is the information you want to extract from flash object. Please share the feedback so that we may further investigate the issue on our end.

Many Thanks,

Hi Eric,

As per my earlier comments can you please share your feedback if the above code was helpful and we may mark issue as resolved.

Many Thanks,

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


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