WebAIM - Web Accessibility In Mind

E-mail List Archives

Thread: Accessibility of simulations

for

Number of posts in this thread: 1 (In chronological order)

From: Itzel McClaren (US - IFS)
Date: Thu, Aug 15 2019 12:14PM
Subject: Accessibility of simulations
No previous message | No next message

Thanks Mark, I forgot to include the most important part of my query. It is
the fact that we use a vendor provided simulation tool and we don't have
access to the HTML coding behind the scenes. So, the vendor needs to fix
this issue. If they don't then we need to provide an alternative solution.
That's where the challenge is.

Thanks

On Thu, Aug 15, 2019 at 1:00 PM < = EMAIL ADDRESS REMOVED = >
wrote:

> Send WebAIM-Forum mailing list submissions to
> = EMAIL ADDRESS REMOVED =
>
> To subscribe or unsubscribe via the World Wide Web, visit
>
> https://urldefense.proofpoint.com/v2/url?u=http-3A__list.webaim.org_mailman_listinfo_webaim-2Dforum&d=DwICAg&c=asCACUKXffk7st5ltqEURQ&r=l6grZw2OcyBIDaLRedhSeOiSVocU8iGup2_GBN57cag&m=0A-mqB9bpbj78Tu1v7KVPEzyw5izLSHclbGX2-Mf2-Y&s=uAdJHrhx5QcXrMn9E8E8st1FT1eItXeGlrN0wRu5iWQ&e=
> or, via email, send a message with subject or body 'help' to
> = EMAIL ADDRESS REMOVED =
>
> You can reach the person managing the list at
> = EMAIL ADDRESS REMOVED =
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of WebAIM-Forum digest..."
> Today's Topics:
>
> 1. Addressing accessibility of simulated discussions
> (Itzel McClaren (US - IFS))
> 2. 3d picktures (Lucy GRECO)
> 3. Re: [EXTERNAL] Addressing accessibility of simulated
> discussions (Mark Magennis)
>
>
>
> ---------- Forwarded message ----------
> From: "Itzel McClaren (US - IFS)" < = EMAIL ADDRESS REMOVED = >
> To: = EMAIL ADDRESS REMOVED =
> Cc:
> Bcc:
> Date: Wed, 14 Aug 2019 15:35:27 -0400
> Subject: [WebAIM] Addressing accessibility of simulated discussions
> Hello, so we are trying to figure out how to make simulated
> discussions accessible for a visually impaired person. This is how
> simulated discussions are built. There is a screen with a background
> photo and a photo of a character. There is a textbox with the text
> that the character says, there is also audio. This text is usually a
> question that the learner responds to. Then the response is in the
> form of 2-3 alternatives (multiple choice) and each choice leads to a
> different path. How have you addressed something like this?
>
> Sent from my iPhone
>
> > The information transmitted, including any attachments, is intended only
> for the person or entity to which it is addressed and may contain
> confidential and/or privileged material. Any review, retransmission,
> dissemination or other use of, or taking of any action in reliance upon,
> this information by persons or entities other than the intended recipient
> is prohibited, and all liability arising therefrom is disclaimed. If you
> received this in error, please contact the sender and delete the material
> from any computer. PricewaterhouseCoopers LLP is a Delaware limited
> liability partnership. This communication may come from
> PricewaterhouseCoopers LLP or one of its subsidiaries.
>
>
>
>
> ---------- Forwarded message ----------
> From: Lucy GRECO < = EMAIL ADDRESS REMOVED = >
> To: WebAIM Discussion List < = EMAIL ADDRESS REMOVED = >
> Cc:
> Bcc:
> Date: Wed, 14 Aug 2019 13:50:06 -0700
> Subject: [WebAIM] 3d picktures
> hello:
> i was asked yestrday if i had any information about makeing 365
> picktures accessable does any one out there have any pointers i just
> looked at a few and its a bunch of clickable things with no alt text and a
> plus ug why can't any thing be easy lucy
> Lucia Greco
> Web Accessibility Evangelist
> IST - Architecture, Platforms, and Integration
> University of California, Berkeley
> (510) 289-6008 skype: lucia1-greco
>
> https://urldefense.proofpoint.com/v2/url?u=http-3A__webaccess.berkeley.edu&d=DwIBaQ&c=asCACUKXffk7st5ltqEURQ&r=l6grZw2OcyBIDaLRedhSeOiSVocU8iGup2_GBN57cag&m=0A-mqB9bpbj78Tu1v7KVPEzyw5izLSHclbGX2-Mf2-Y&s=fNahRfPifRoSOvVTkAQz4QKb_EhOyPADXOnqB__0Fb4&e=
> Follow me on twitter @accessaces
>
>
>
>
> ---------- Forwarded message ----------
> From: Mark Magennis < = EMAIL ADDRESS REMOVED = >
> To: WebAIM Discussion List < = EMAIL ADDRESS REMOVED = >
> Cc:
> Bcc:
> Date: Thu, 15 Aug 2019 09:49:34 +0000
> Subject: Re: [WebAIM] [EXTERNAL] Addressing accessibility of simulated
> discussions
> Hello Itzel.
>
> I don't think this is going to be difficult, unless there are
> complications that you haven't yet described. Assuming the screen is an
> HTML page I think the main things you need to do are:
>
> * structure the page content so that it is easy for screen reader users to
> navigate and understand and so that the ordering takes them logically
> through the scenario description, then the question, then the answer
> choices,
> * give screen reader users access to all the text, even if some of it is
> read out as audio because they may ned to review it more than once,
> * provide alternative text for the informational images,
> * provide the answers as a simple form using relevant form fields with a
> submit button.
>
> An appropriate structure might be something like the following.
>
> <h1>Discussion title goes here</h1>
>
> <h2>Scenario</h2>
> <img src="background_photo.jpg" alt="description of the scenario that the
> background photo represents, e.g. the scene of a road traffic accident
> where two drivers stand by their cars arguing">
> <img src="photo_of_character.jpg" alt="description of the character, e.g.
> Sarah Dane, Police Officer">
>
> <h2>Question</h2>
> <p>Text that the character says.</p>
>
> <h2>Your answer</h2>
> <form>
> <fieldset>
> <legend>Answer choices</legend>
> <input id="one" type="radio" name="answer" value="one">
> <label for="one">Answer choice one</label><br>
> <input id="two" type="radio" name="answer" value="two">
> <label for="two">Answer choice two</label><br>
> <input id="three" type="radio" name="answer" value="three">
> <label for="three">Answer choice three</label>
> </fieldset>
> <input type="submit" name="submit" value="Submit answer">
> </form>
>
> How you provide the feedback - were they correct and if not what should
> they have answered - is a different matter and more difficult. It can be
> tricky to do this well and make it understandable. If you try to do it by
> updating the question page, e.g. by disabling the radio buttons, replacing
> them with ticks (correct) and crosses (incorrect), and adding text feedback
> messages, it can get messy and it will need a lot of testing to check that
> it is understandable both visually and to screen reader users. It can be
> particularly difficult to be clear on what feedback like "correct" next to
> an answer choice actually means. Does it apply to the choice or to your
> action of selecting or not selecting that choice? E.g. does it mean "you
> were correct (even though this may have been a wrong answer)"? Or does it
> mean "This option was correct (even though you may not have selected it so
> you were wrong)"? The simplest approach may be to provide the feedback on a
> separate page using a clear statement that says "you answered ... You were
> correct/incorrect. The correct answer was ...".
>
> I hope this helps. Let us know if you need any more help with this.
>
> Mark
>
> Mark Magennis
> Skillsoft | mobile: +353 87 60 60 162
> Accessibility Specialist
>
>
> -----Original Message-----
> From: WebAIM-Forum < = EMAIL ADDRESS REMOVED = > On Behalf Of
> Itzel McClaren (US - IFS)
> Sent: 14 August 2019 20:35
> To: = EMAIL ADDRESS REMOVED =
> Subject: [EXTERNAL] [WebAIM] Addressing accessibility of simulated
> discussions
>
> Hello, so we are trying to figure out how to make simulated
> discussions accessible for a visually impaired person. This is how
> simulated discussions are built. There is a screen with a background
> photo and a photo of a character. There is a textbox with the text
> that the character says, there is also audio. This text is usually a
> question that the learner responds to. Then the response is in the
> form of 2-3 alternatives (multiple choice) and each choice leads to a
> different path. How have you addressed something like this?
>
> Sent from my iPhone
>
> > The information transmitted, including any attachments, is intended only
> for the person or entity to which it is addressed and may contain
> confidential and/or privileged material. Any review, retransmission,
> dissemination or other use of, or taking of any action in reliance upon,
> this information by persons or entities other than the intended recipient
> is prohibited, and all liability arising therefrom is disclaimed. If you
> received this in error, please contact the sender and delete the material
> from any computer. PricewaterhouseCoopers LLP is a Delaware limited
> liability partnership. This communication may come from
> PricewaterhouseCoopers LLP or one of its subsidiaries.
> > > https://urldefense.proofpoint.com/v2/url?u=http-3A__list.webaim.org_&d=DwIFAg&c=asCACUKXffk7st5ltqEURQ&r=l6grZw2OcyBIDaLRedhSeOiSVocU8iGup2_GBN57cag&m=0A-mqB9bpbj78Tu1v7KVPEzyw5izLSHclbGX2-Mf2-Y&s=ptenmiN5rEbSY-92ERhj9bqU8oawJpgBeSovZg2a-eg&e=
> List archives at
> https://urldefense.proofpoint.com/v2/url?u=http-3A__webaim.org_discussion_archives&d=DwIFAg&c=asCACUKXffk7st5ltqEURQ&r=l6grZw2OcyBIDaLRedhSeOiSVocU8iGup2_GBN57cag&m=0A-mqB9bpbj78Tu1v7KVPEzyw5izLSHclbGX2-Mf2-Y&s=EP8sUa-8wGGlQC_avPwoFg8QAv4UPBg4pvu386bB-MU&e=
> >
> > > https://urldefense.proofpoint.com/v2/url?u=http-3A__list.webaim.org_&d=DwICAg&c=asCACUKXffk7st5ltqEURQ&r=l6grZw2OcyBIDaLRedhSeOiSVocU8iGup2_GBN57cag&m=0A-mqB9bpbj78Tu1v7KVPEzyw5izLSHclbGX2-Mf2-Y&s=ptenmiN5rEbSY-92ERhj9bqU8oawJpgBeSovZg2a-eg&e=
> List archives at
> https://urldefense.proofpoint.com/v2/url?u=http-3A__webaim.org_discussion_archives&d=DwICAg&c=asCACUKXffk7st5ltqEURQ&r=l6grZw2OcyBIDaLRedhSeOiSVocU8iGup2_GBN57cag&m=0A-mqB9bpbj78Tu1v7KVPEzyw5izLSHclbGX2-Mf2-Y&s=EP8sUa-8wGGlQC_avPwoFg8QAv4UPBg4pvu386bB-MU&e=
> >


--
*Itzel McClaren*
PwC | Manager
Austin | +1 (512) 450 4012
PricewaterhouseCoopers LLP
pwc.com <https://www.pwc.com>

The information transmitted, including any attachments, is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited, and all liability arising therefrom is disclaimed. If you received this in error, please contact the sender and delete the material from any computer. PricewaterhouseCoopers LLP is a Delaware limited liability partnership. This communication may come from PricewaterhouseCoopers LLP or one of its subsidiaries.