A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Hi,
Did this work for you? I am having the same issue!
Emily
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm having problem with my Powerpoint presentation with the above error. All Controls/Marco are not working. Can anyone help with this issue.
My computer set up: -
Macbook Pro with bootcamp to use Windows 10.
MS office 365 Home.
Thanks in advance
Sarah
A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Hi,
Did this work for you? I am having the same issue!
Emily
John
Thanks for the information but the same presentation works on my sons PC and all friend as well. I will try your code and let you know later.
I use a Macbook with bootcamp for windows. Can this be a problem? since the same presentation do not work with Control also with Mac version of the office 365.
Thanks
Sarah
Microsoft has blocked Shockwave Flash for security reasons. It can supposedly be reactivated in the registry but it is a very complex process and didn't work for me.
You could maybe (not tested) adapt Steve's code like this to just get the Shockwave Flash
Sub DeleteActiveX()
Dim oSl As Slide
Dim oSh As Shape
Dim x As Long
For Each oSl In ActivePresentation.Slides
For x = oSl.Shapes.Count To 1 Step -1
Set oSh = oSl.Shapes(x)
If oSh.Type = msoOLEControlObject Then
If oSh.OLEFormat.ProgID Like "Shockwave*" Then oSh.Delete
End If
Next
Next
End Sub
Thanks Steve
I tried and it works, all controls were deleted but how do I know which was causing the problem?
A my of mine also check the presentation on my computer. he is sure is the shockwave flash that's the problem.
Powerpoint came up with error "system error &H80004005 (-2147467259). Unspecified error" when he tried to insert a shcokwave flash object.
Could this be part of the problem ? If I need to reinstall shockwave flash then should I use 32 of 64 bits version? Is powerpoint work with 64bits?
Thanks advance
Sarah
You will need to check which controls are embedded in the presentation and then verify against your system. Common controls like the flash control can cause this error to popup but the error message itself is generic to any activex control that needs registration.