Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How do I get numbers to read individually rather than a numerical value?

New Here ,
Jan 11, 2016 Jan 11, 2016

I'm trying to tag a document for visually impaired persons and when the software reads the document it reads all numbers as a value (i.e. 508 because five hundred eight instead of five zero eight). How do I get it to read those numbers correctly?

TOPICS
Acrobat SDK and JavaScript , Windows
836
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Enthusiast , Jan 11, 2016 Jan 11, 2016

You could nest the series of numerals in a Span tag, and apply Alt Text. For example the sentence "Section 508 Standards apply to electronic and information technology procured by the federal government." would be tagged like this, with the Alt Text "five zero eight" applied to the Span tag:

<P>

    Section

    <Span>

          508

    Standards apply to ...

Translate
Enthusiast ,
Jan 11, 2016 Jan 11, 2016

You could nest the series of numerals in a Span tag, and apply Alt Text. For example the sentence "Section 508 Standards apply to electronic and information technology procured by the federal government." would be tagged like this, with the Alt Text "five zero eight" applied to the Span tag:

<P>

    Section

    <Span>

          508

    Standards apply to ...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 11, 2016 Jan 11, 2016

Thanks that does appear to work.  If anyone has other ideas I'm open to those too though. I have a 700+ page document I'm working on with thousands of numbers that I would have to set up as spans.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jan 21, 2016 Jan 21, 2016
LATEST

The right way to handle this is to leave the numbers alone.  The assistive technologies take care of numbers and abbreviations in their own way and end users are familiar with those ways.  You may be expecting to hear "section five oh eight" but the assistive technology user will understand and if it really bothers them they have the ability to tweak the pronunciation within the assistive technology.

Adding a span and alt text for numbers is a waste of your time, doesn't avoid any compliance concerns (since there are none), and changes the experience that the end user expects from their tool.  Don't do it!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines