Skip to main content
Home Forums Silverlight Programming Programming with JavaScript Embed silverlight into PowerPoint 2007
1 replies. Latest Post by Allen Chen – MSFT on October 21, 2009.
(0)
moovinta...
Member
0 points
2 Posts
10-16-2009 6:46 AM |
I have opened up the developer tab in powerpoint and I want to embed a silverlight player which looks at a URL. Everytime I try to insert a "Microsoft Silverlight" I get this system error. &H80040110 (-2147221232).
Could I just use media player?? Will that find a Silverlight Codec?
Allen Ch...
Star
13862 points
1,803 Posts
10-21-2009 5:41 AM |
Hi,
Is my understanding correct that you have a page like http://silverlight.services.live.com/invoke/64474/Encode/iframe.html that has one Silverlight Media Player and you want to show it on a slide of Powerpoint?
If so you can add "Microsoft Web Browser" instead of "Microsoft Silverlight" in Powerpoint.
Then you can add a command button to navigate the browser control to the page you want to view:
Dim varURL As Variant
varURL = "http://silverlight.services.live.com/invoke/64474/Encode/iframe.html" Slide1.WebBrowser1.Navigate varURL
For more information please refer to:
http://support.microsoft.com/kb/291926
If my understanding is wrong, please correct me and clarify your requirement.