=====SWF bestanden in PowerPoint===== Zie:[[http://www.indezine.com/products/powerpoint/ppflash3.html|Inserting Flash Within PowerPoint]] \\ =====Templates===== [[http://office2010.microsoft.com/en-us/templates/CT010336615.aspx|Example slide effects with instructions]] Has 165 PowerPoint 2010 (2007 compatible) PowerPoint templates.\\ [[http://blogs.office.com/b/office_blog/archive/2009/10/29/watch-ppt157-everything-in-this-video-is-a-powerpoint-template.aspx|The Microsoft Office Blog - Watch “ppt157: Everything in this video is a PowerPoint Template”]] has a page with a Silverlight video and links to the different templates. \\ =====Change the spell-checking language on a PowerPoint presentation===== Use this: Option Explicit Public Sub ChangeSpellCheckingLanguage() Dim j As Integer, k As Integer, scount As Integer, fcount As Integer scount = ActivePresentation.Slides.Count For j = 1 To scount fcount = ActivePresentation.Slides(j).Shapes.Count For k = 1 To fcount If ActivePresentation.Slides(j).Shapes(k).HasTextFrame Then ActivePresentation.Slides(j).Shapes(k) _ .TextFrame.TextRange.LanguageID = msoLanguageIDEnglishAUS End If Next k Next j End Sub With this: [[http://msdn.microsoft.com/en-us/library/aa432635.aspx|MSDN - Office 2007 - MsoLanguageID Enumeration]] Source: [[http://superuser.com/questions/55034/change-the-spell-checking-language-on-a-powerpoint-presentation/55391#55391|Super User - Change the spell-checking language on a PowerPoint presentation]]