-
WSJohnWilson
AskWoody LoungerDecember 30, 2012 at 11:00 am in reply to: can’t embed an audio file in either ppt or pps file #1365329If you have a version before 2010 then ONLY wav files can be embedded. There’s no way to embedd wma or midi files.
It is possible with a little trickery to convert to mp3 and then add a wav header.
-
WSJohnWilson
AskWoody LoungerNovember 7, 2012 at 1:53 am in reply to: Change the default size of a shape in Powerpoint 2007 #1355291There’s no way to do this the default size is hard coded. It would be possible to code a “resize me” button on the ribbon to make it a one click fix.
-
WSJohnWilson
AskWoody LoungerIf PowerPoint is in the x86 folder it means that IT is 32 bit but Windows is 64 bit. Maybe you need 64 bit Quicktime if Windows is 64 bit?
-
WSJohnWilson
AskWoody Lounger“great job you folks are doing staging the London games!”
Wait till we pass the US in the medal table!
We are heading for AZ in October (Scottsdale) for the Presentation Summit BTW
-
WSJohnWilson
AskWoody LoungerAmazingly Microsoft designed it that way. Their (flawed IMO) rational was that if you went back to a slide you wouldn’t want the animation (audio is an animation) again.
To get around it place a blank slide BEFORE the slide with sound, give it an auto trantion of zero seconds and make the back link to THIS slide./
-
WSJohnWilson
AskWoody LoungerJuly 20, 2012 at 6:58 am in reply to: default save location for design templates Powerpoint 2007 #1341815I would save as a .thmx file and put it in
C:ProgramFilesMicrosoft OfficeDocument Themes 12 -
WSJohnWilson
AskWoody LoungerDo you know how to use vba code?
In your Excel file press ALT f11
In the code window that opens INSERT > Module
Copy and paste in the code below and hit f5.Note the code is for charts as worksheet objects.
WORK ON A COPY if youre not sure.
‘——copy from here——————-
Sub Charts_PPT()
Dim ocht As ChartObject
Dim ws As Worksheet
Dim pptApp As Object
Dim pptPres As Object
Dim pptSld As Object
Set pptApp = CreateObject(“PowerPoint.Application”)
pptApp.Visible = True
Set pptPres = pptApp.Presentations.Add(msoTrue)
For Each ws In ActiveWorkbook.Worksheets
For Each ocht In ws.ChartObjects
ocht.Copy
Set pptSld = pptPres.Slides.Add(pptPres.Slides.Count + 1,11)
pptPres.Windows(1).View.GotoSlide (pptSld.SlideIndex)
pptSld.Shapes.Title.TextFrame.TextRange = ws.Name & ” ” & ocht.Name
With pptSld.Shapes.Paste
.Align 1, True
.Align 4, True
End With
Next ocht
Next ws
End Sub
‘ ——–to here———————– -
WSJohnWilson
AskWoody LoungerSaving as a pps will not give any security at all! You can just rename it to .ppt OR right click >> New OR just use File > Open to edit the file.
Adding a modify password will give some security and prevent most from editing. An expert will be able to get in in seconds though.
If you don’t need animation you could select everything on each slide , cut and paste special as a PNG. Each slide will then be a non editable image. (If you need to edit make sure you have a copy!)
-
WSJohnWilson
AskWoody LoungerWORK ON A COPY!
I would first goto View slide masterMake the Title Only Layout (about 6 down) look like the slide ie Make the Title placeholder narrower and fill it with blue + set the text size.
Now go back to Normal view and in the home tab change the layout to Title OnlySelect and cut the shape with the text
Add two new text boxes and move to the correct positions. You probably need to change one of the arrows too.
-
WSJohnWilson
AskWoody LoungerMay 30, 2012 at 11:00 am in reply to: Why is it possible to delete the page number on slides? #1334695This is new behaviour in versions 2007 and 2010. Not a good idea IMHO but that’s how it works.
-
WSJohnWilson
AskWoody LoungerJust an aside:
I wonder when you said set the placholders to white you really meant “No Fill”?if so make this change
If oshp.Type = msoPlaceholder Then
oshp.Fill.Visible=msoFalse ‘ change here
If oshp.HasTextFrame Then oshp.TextFrame.TextRange.Font.Color = vbBlack
End If -
WSJohnWilson
AskWoody LoungerYou’ll need to explain a little more
Do you mean all placeholders to have a white background? Or maybe Placeholders and textboxes.
Theme Color = Black – what does that mean?? (or rather what do you think it means. Maybe text is black?In the meantime see if this helps
Sub fixme2()
Dim osld As Slide
Dim oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
If oshp.Type = msoPlaceholder Then
oshp.Fill.ForeColor.RGB = vbWhite
If oshp.HasTextFrame Then oshp.TextFrame.TextRange.Font.Color = vbBlack
End If
Next oshp
Next osld
End Sub -
WSJohnWilson
AskWoody LoungerYou can do this with code:
Sub fixme()
Dim osld As Slide
For Each osld In ActivePresentation.Slides
On Error Resume Next
If osld.Shapes.HasTitle Then _
osld.Shapes.Title.Fill.ForeColor.RGB = vbWhite
Next osld
End Sub -
WSJohnWilson
AskWoody LoungerThe “Microsoft” method does definitely work so there’s something strange going on. I can’t imagine any way it would open a slide show using this procedure.
You do have the full version of 2010 not the free viewer??
You can use the method you outline for 2003 (It shouldn’t be neccessary there either though)
Open PowerPoint – On the HOME tab choose New Slide (drop arrow) >> Reuse slides
Locate the PPSX and right click a thumbnail > Insert All
You should also be able to right click the PPSX and choose NEW
-
WSJohnWilson
AskWoody LoungerInteresting you blame Microsoft for what is basically a badly designed template. it also sounds like your “Textboxes” are actually shapes because textboxes act slightly differently.
Anyway that’s not the point of the post. If you are having difficult selecting the text here’s a couple of tricks which might help.
Double click on a word to select the word
Triple click on a line to select the whole paragraph
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
FBI: Still Usןמע One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
53 seconds ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
5 hours, 17 minutes ago -
Stop the OneDrive defaults
by
CWBillow
49 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
10 hours, 45 minutes ago -
X Suspends Encrypted DMs
by
Alex5723
12 hours, 57 minutes ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
13 hours, 15 minutes ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
13 hours, 52 minutes ago -
OpenAI model sabotages shutdown code
by
Cybertooth
14 hours, 29 minutes ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
2 hours, 39 minutes ago -
Enabling Secureboot
by
ITguy
9 hours, 39 minutes ago -
Windows hosting exposes additional bugs
by
Susan Bradley
22 hours, 23 minutes ago -
No more rounded corners??
by
CWBillow
18 hours, 12 minutes ago -
Android 15 and IPV6
by
Win7and10
7 hours, 57 minutes ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
1 day, 10 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
1 day, 13 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
1 day, 8 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
1 day, 20 hours ago -
May preview updates
by
Susan Bradley
1 day, 8 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
23 hours, 44 minutes ago -
Just got this pop-up page while browsing
by
Alex5723
1 day, 12 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
1 day, 10 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
12 hours, 12 minutes ago -
At last – installation of 24H2
by
Botswana12
2 days, 12 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
8 hours, 59 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
22 hours, 55 minutes ago -
Limited account permission error related to Windows Update
by
gtd12345
3 days, 13 hours ago -
Another test post
by
gtd12345
3 days, 14 hours ago -
Connect to someone else computer
by
wadeer
3 days, 8 hours ago -
Limit on User names?
by
CWBillow
3 days, 11 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.