Skip to main content
normanc60338100
Participating Frequently
August 15, 2017
Answered

how do i use the space bar to tab to fillable fields in a pdf

  • August 15, 2017
  • 1 reply
  • 3844 views

I have a pdf with fillable fields in the form of a grid for Sudoku. I can use the tab key to get from field to field for filling in given numbers with no problem. I've seen another Sudoku grid that uses the SPACE BAR to tab to the fields, and it's a lot easier to use than using the Tab key. How can I set up my fillable pdf file to do this? I have an iMac desktop with OS Sierra operating system, and currently with Adobe Acrobat Reader DC.

This topic has been closed for replies.
Correct answer try67

As the custom Keystroke script of your text fields enter this code:

if (event.change==" ") {event.rc=false; this.getField("Name of next field").setFocus();}

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
August 15, 2017

As the custom Keystroke script of your text fields enter this code:

if (event.change==" ") {event.rc=false; this.getField("Name of next field").setFocus();}

normanc60338100
Participating Frequently
August 15, 2017

Hi. Thanks for your prompt response. I am fairly new to the iMac and have no idea how to do what you suggest. I am not well versed with Adobe either. I currently have the fillable Sudoku grid as a PDF saved to my desktop. Please "walk me thru" the step-by-step methodology for setting this up. Thanks so much.

Norman Cooper

try67
Community Expert
Community Expert
August 15, 2017

Did you add form fields to your PDF file? If so, what are the names of the first two fields?