unchecking "show scrollbar" on powerpoint 2010

Asked by Danilo Majhenič

Some of our clients have already started to use office 2010.
In powerpoint there is no more the ckechkbox option "Show scrollbar" which needed to be off, for proper presentations on xibo.
Is there any solution?

Question information

Language:
English Edit question
Status:
Answered
For:
Xibo Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Alex Harrington (alexharrington) said :
#1

Does it definitely show the scroll bar with Office 2010? This is definitely full version Office 2010, not PowerPoint viewer?

I don't have access to it to try.

Alex

Revision history for this message
Danilo Majhenič (danilo-majhenic) said :
#2

with client i mean the persons that are editing pptx for the upload on the xibo.
they are now having office 2010 slovenian, which does not have this option: http://dl.dropbox.com/u/1183736/ppt_scrollbar.jpg
Also the english version of ppt inside office 2010 does'nt have it. I check it on my install.
i did create a 5 slides pptx with ppt 2010 english... when uploaded and schueduled to the xibo it plays with scrollbar, also when the pptx is opened wih ppt 2007 it shows the "show scrollbar checked"

Revision history for this message
Alex Harrington (alexharrington) said :
#3

In that case I think your only option is to have somewhere a copy of
Office 2007 or earlier to make that change before upload.

We don't have any control over what Microsoft do with their products.

Alex

This email carries a disclaimer, a copy of which may be read at http://learning.longhill.org.uk/disclaimer

Revision history for this message
Danilo Majhenič (danilo-majhenic) said :
#4

i found out that the only change when making that check box checked is that it gets in the xml one more attribute:
unzipped_pptx_file\ppt\presProps.xml
<p:browse showScrollbar="0"/>

the added
showScrollbar="0"

makes the diference.

Revision history for this message
Alex Harrington (alexharrington) said :
#5

Good - I'm glad you've sorted it out.

Alex

This email carries a disclaimer, a copy of which may be read at http://learning.longhill.org.uk/disclaimer

Revision history for this message
Charles Gonzales (cgonzale-utsi) said :
#6

I'm having this same issue with Powerpoint 2010. There isn't an option to disable scrollbar when setting up the slideshow.

See that this was fixable by doing this:

i found out that the only change when making that check box checked is that it gets in the xml one more attribute:
unzipped_pptx_file\ppt\presProps.xml
<p:browse showScrollbar="0"/>

the added
showScrollbar="0"

But I have no idea what that means. Where is this file? Any ideas?

Revision history for this message
Alex Harrington (alexharrington) said :
#7

If you rename the presentation to be a zip file instead, you can extract its contents and there you'll find the file.

You'll then need to rezip the file and rename back to pptx

Alex

Charles Gonzales <email address hidden> wrote:

Question #130525 on Xibo changed:
https://answers.launchpad.net/xibo/+question/130525

Charles Gonzales requested for more information:
I'm having this same issue with Powerpoint 2010. There isn't an option
to disable scrollbar when setting up the slideshow.

See that this was fixable by doing this:

i found out that the only change when making that check box checked is that it gets in the xml one more attribute:
unzipped_pptx_file\ppt\presProps.xml
<p:browse showScrollbar="0"/>

the added
showScrollbar="0"

But I have no idea what that means. Where is this file? Any ideas?

--
You received this question notification because you are a member of Xibo
Developers, which is an answer contact for Xibo.

Revision history for this message
Alex Harrington (alexharrington) said :
#8

If you rename the presentation to be a zip file instead, you can extract its contents and there you'll find the file.

You'll then need to rezip the file and rename back to pptx

Alex

Charles Gonzales <email address hidden> wrote:

Question #130525 on Xibo changed:
https://answers.launchpad.net/xibo/+question/130525

Charles Gonzales requested for more information:
I'm having this same issue with Powerpoint 2010. There isn't an option
to disable scrollbar when setting up the slideshow.

See that this was fixable by doing this:

i found out that the only change when making that check box checked is that it gets in the xml one more attribute:
unzipped_pptx_file\ppt\presProps.xml
<p:browse showScrollbar="0"/>

the added
showScrollbar="0"

But I have no idea what that means. Where is this file? Any ideas?

--
You received this question notification because you are a member of Xibo
Developers, which is an answer contact for Xibo.

Revision history for this message
Lene (kaktus) said :
#9

Did anyone find a solution for this that doesn't include editing xml files?
I want to make it as easy as possible for the users to publish to the info screen.

Revision history for this message
Imm-o (immanuelx-o-singleton) said :
#10

I have come up wit a solution for this issue but its clunky. After generating a PowerPoint file in 2010 or 2013 you open it in PowerPoint 2007, un-check the box and save the file. Provide the file as a template for further PowerPoint file creation.

I tried adding the showScrollbar="0" attribute to the presProps.xml but the resulting .pptx file would throw an error when opened so I came up with the above solution that effectively does the same thing.

Revision history for this message
Ebissu (avalon-dreams) said :
#11

You can remove Scrollbars with VBA-Macros:

Sub Hide_Scrollbar()

With ActivePresentation
                 With .SlideShowSettings
                        .ShowType = ppShowTypeWindow
                        .ShowScrollbar = msoFalse
                   End With
            End With

End Sub

Can you help with this problem?

Provide an answer of your own, or ask Danilo Majhenič for more information if necessary.

To post a message you must log in.