These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Disable click to advance in Full Screen mode

paullawton
Registered: Jan 10 2007
Posts: 2

Is it possible to disable click to advance in Full screen mode? I'm reasonably confident with Acrobat but feel this might only be possible via Javascript. We are producing more and more full screen interactve PDFs where we don't want users to inadvertantly click on the screen and lose their way in the document. Your help would be greatly appreciated. Thank you.

My Product Information:
Acrobat Standard 7, Macintosh
tedpadova
ExpertTeam
Registered: Dec 31 2005
Posts: 848
Control for advancing pages on mouse clicks is set in the Full Screen Preferences. This is individually controlled by each user.

If you want to disable mouse clicks to advance pages regardless of a given user's settings, you need to add a JavaScript to your file. Here's how to do it:

Select Advanced > Document Processing > Document JavaScripts.Add a name in the JavaScript Functions dialog and click Add.

Delete the default text and enter the following code:

app.fs.clickAdvances = false;

Best of luck,

ted

The author of numerous books on Acrobat, Photoshop, Illustrator and the Adobe Creative Suite, and an international speaker on Adobe Acrobat, Ted Padova is a well-known PDF guru.

josh909
Registered: Mar 2 2008
Posts: 1
rather than creating a new thread, i thought i'd add to this one...

is it possible using javascript to disable the page advance on a selection of slides rather than the whole document?

thanks in advance.
bwinkler
Registered: Jan 19 2009
Posts: 1
tedpadova wrote:
Control for advancing pages on mouse clicks is set in the Full Screen Preferences. This is individually controlled by each user.If you want to disable mouse clicks to advance pages regardless of a given user's settings, you need to add a JavaScript to your file. Here's how to do it:

Select Advanced > Document Processing > Document JavaScripts.Add a name in the JavaScript Functions dialog and click Add.

Delete the default text and enter the following code:

app.fs.clickAdvances = false;

Best of luck,

ted
Thanks for that info Ted, it was bloody useful!

I'm surprised but then not surprised that this is a user-only feature. I would've thought that with the way acrobat is being used more for interactive presentations that they would create a special section for this sort of thing.

I attempted to create a button in the background of my ID3 document to counter the auto click effect but unfortunately it killed all buttons on the page. This script worked perfectly.
eliasn
Registered: Feb 16 2010
Posts: 7
Hi
Is it possible to disable the mouse wheel as well.
I have disabled the "click to advance pages" using Java as described, but the user can still use the mouse wheel, how can i disable this ?

Reg
Elias
UVSAR
Expert
Registered: Oct 29 2008
Posts: 1357
No, it's not. The API currently does not have an object linked to the wheel events for normal (2D) pages, only for the events triggered during navigation in a 3D scene.

eliasn wrote:
Hi
Is it possible to disable the mouse wheel as well.
eliasn
Registered: Feb 16 2010
Posts: 7
Thanks for the info