Removing the widget breaks ability to paw through the elements

I inherited a project of Captivate that I have to go back and to make changes to make it compatible 508 (aka accessible for people with hearing, sight, etc.).  One of the biggest complaints we have received has been the fact that there is no way to control the volume, I went and added the volume slider widget to the master slide.

This worked well, until we learned that the volume slider widget was not accessible to the screen reader software and we need another solution.  So, I removed the slider and added two forms intelligent to act as volume up/down buttons.  Unfortunately, apparently intelligent forms are also not accessible to the screen reader, and worse, it is that remove the volume slider appears to break the ability to paw through non-interactive elements of the slides - a key component of accessibility.

Add the cursor backwards seems to fix things, but it is a really weird problem, and I don't want to be locked in to what this cursor, because it is not 508 accessible.  Anyone know how I could take to remove without breaking the rest of the project?  And, more important still, you know anyway to add the volume control which is 508 compliant?

I think that your customer could be "by drawing a long bow" suggest that their definition of control means that you also have the volume of the audio controlled in e-learning rather than, as you noted, allowing just the audio volume is controlled by the device or the PC on which it is displayed.

I tend to feel that more designers of e-learning would be thinking "control" of the media includes the option to start playback, pause, resume, etc..  Otherwise, no control also be analyze as meaning keyboard actions should also be able to change the height, width, image format, brightness, color, etc. etc.  Where is the limit?

At any given time you draw a line so DEFINE what control actually includes or does NOT include.

I have personally seen no reference in 508 documents related to e-learning which says, it must include the ability to control the volume.  That's why I asked for a referral link, just in case it is now required some changes to the laws.

I would like to push back on this one.  Customers can not always get what they want just because they ask for it.

Tags: Adobe Captivate

Similar Questions

  • FRM-41331 could not remove the element

    Hi all

    I got the error when I am filling the list item...

    Here, I write the query in WHEN BUTTON PRESSED

    
    declare
      vGroupId  varchar2(10);
      vRecGrpId recordgroup := find_group('rg_test');
    begin
      clear_list('BLOCK3.DESCRIPTION');
      vGroupId := populate_group(vRecGrpId);
      clear_list('BLOCK3.DESCRIPTION');
      populate_list('BLOCK3.DESCRIPTION',vRecGrpId);
    end;
    

    I create a record group-> rg_test

    Request: select code, DESCRIPTION of test_list DESCRIPTION order

    If I run the form and press the button on his watch list item values

    My problem is after execution of forms, I inserted the new value in DB, again once I'll push her mistake to see the 'FRM-41331 could not remove the element'

    Please help me I want to fill in the values taken after insertion

    go_field ();

    clear_item;

  • How to remove the elements hidden in PDF format

    Hello

    We use Acrobat 11 on Win7 Pro machine. We try to remove the hidden elements of a PDF file, we created.

    Using the image/text editing control we usually change the view to page view mode 2 can then select hidden items and delete them. We do not see the items in the display of the 2 page, but clicking and dragging in the "empty space" in the document, choose which then allows us to manipulate them. These elements are not visible when you view the PDF file normally.

    This time, we have a PDF file where we cannot select an image. We know that it is there, because when you try to trim the visible content, the hidden element is shown:

    crop.jpg

    We want to remove the bars of color at the bottom of the page. Can anyone help us with this, please?

    Thank you!

    I usually use the content pane for this - arrow down through content items and delete the ones I don't want. Not sure that this is the most effective way, just something that I found that works for me. I always work with a copy of the PDF file in case something goes wrong.

    a 'C' student

  • Difficulty to remove the element of ArrayDataModel in DeleteActionItem

    Hello

    I have a ListView that is filled with an ArrayDataModel. When I add data to the ArrayDataModel, it works very well. But when I want to delete a data model element in a DeleteAction I get the following error:

    asset:///Main.qml:112: ReferenceError: Can't find variable: theDataModel
    

    Here is my code:

    import bb.cascades 1.2
    import bb.cascades.pickers 1.0
    import bb.data 1.0
    
    import myApplicationData 1.0
    
    NavigationPane {
        id: navigationPane
    
        onCreationCompleted: Qt.app = app
    
        Page {
    
            content: Container {
    
                ListView {
                    id: listview
                    objectName: "listview"
    
                    dataModel: ArrayDataModel {
                        id: theDataModel
    
                        property bool empty: true
    
                        onItemAdded: empty = isEmpty()
                        onItemRemoved: empty = isEmpty()
                        onItemUpdated: empty = isEmpty()
                        onItemsChanged: empty = isEmpty()
                    }
    
                    // Use a ListItemComponent to determine which property in the
                    // data model is displayed for each list item
                    listItemComponents: [
                        ListItemComponent {
    
                            StandardListItem {
                                // Display the value of an item's title property
                                // in the list
    
                        id: component
    
                                title: ListItemData.name
                                description: ListItemData.path
                                imageSource: "asset:///images/icon.png"
    
                                contextActions: [
                                    // Add a set of four actions to the context menu for
                                    // a list item
                                    ActionSet {
                                        title: "Protocol"
    
                                        DeleteActionItem {
                                            onTriggered: {
                                                component.ListItem.view.dataModel.itemRemoved(component.ListItem.indexPath)
                                                theDataModel.removeAt(component.ListItem.indexPath) <---------------- Here I want to remove the data from theDataModel again but I get the error message: "asset:///Main.qml:112: ReferenceError: Can't find variable: theDataModel"
                                                app.ShowToast("Protokoll wurde gelöscht")
                                                app.ShowToastWithoutButton("Protokoll gelöscht")
                                            }
                                        }
                                    } // end of ActionSet
                                ]
    
                                textFormat: TextFormat.Auto
                                status: ""
                                imageSpaceReserved: true
    
                            }
                        }
                    ]
            } // end of Container
    
            actions: [
                ActionItem {
                    title: "Open"
                    imageSource: "asset:///icons/ic_open.png"
                    ActionBar.placement: ActionBarPlacement.OnBar
    
                    onTriggered: {
                        filePicker.open()
                    }
                }
            ]
    
            attachedObjects: [
                FilePicker {
                    id: filePicker
    
                    property string selectedFile
    
                    mode: FilePickerMode.Picker
    
                    type: FileType.Other
                    title: "Open document..."
                    viewMode: FilePickerViewMode.Default
                    sortBy: FilePickerSortFlag.Default
                    defaultType: FileType.Other
                    onFileSelected: {
    
                        selectedFile = selectedFiles[0];
    
                       *select file and fill it to data model *                    var data = {                                "name": name,                                "path": path,                            }                   theDataModel.append(data);  <-------------- here I append the data to theDataModel
                    }
                }
            ]
    
        }
    }
    

    It's the wrong way to access the data model? or how can I remove an item from this data model, when I remove it from the list?

    Try,

    component "". ListItem.view.dataModel.removeAt

  • How to remove the element in a scene without deleting the animation of this element

    Hello

    How can I remove an element in a scene (for example to 0:30) without deleting the animation of this element to (for example at 0:20)?

    I don't really know what to do.

    Benno

    Hello

    I have a little trouble to understand what you want. If you want that element disappears in your animation, you can switch the display in two keyframes on the right property before scoring 30 seconds. See below:

    You simply make a keyframe in the position "On" in the display property in the properties panel, then move on to an image and set a new keyframe on 'Off '. This will make invisible if you do not have to remove the animation. : )

    I hope this helps!

  • Remove the element-centric validation

    Greetings,

    Is there a way to remove element-centric validation (http://anthonyrayner.blogspot.com/2010/08/apex-40-enhancements-validating-form.html) of APEX 4.0, such as automatic validation of 'hidden' created by entering a certain mask format in a DatePicker element?

    The reason being that I already have a validation for this article, and it stops as some other validation to be executed if one breaks down. So, I don't have the automatic validation.

    Best regards
    Mathieu

    Hi Mathieu,

    What do you mean by "and it stops as some other validation to be executed if one does not? What is related to the automatic validation? Because I just had a quick glance in the code, all automatic and defined validations are manually triggered.

    You have different possibilities to stop the automatic validation for a shooting date picker.

    Set-) 'Perform validation' = 'No' in your submit button that will skip all the automatic, but make sure you set the indicator "always run" in your manual validation.
    Use the classic date picker that does not perform automatic validation of-)
    -) Create your own type of date picker plugin that does not perform automatic validation

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • How to remove the elements in the "Deleted items" folder using Microsoft Windows Mail?

    This used to work, but I was not able to remove items from the deleted items folder and it takes a lot of space.  I used to be able to do it and it automatically deletes the items when I closed Windows Mail (it is always set up to do, incidentally, does not yet), but now it does not work. I've tried everything. I used the link at the top of the page coming down and clicked on "Empty Deleted Items Folder", but it does not work.

    I tried to download Windows Live Mail and it won't work on my computer.

    Any help would be appreciated.

    Thank you!

    Maybe could turn the setting and then turn again. Sometimes it works, but I wouldn't be surprised if she did not help, or if you have already tried.

    Take note of the following:

    1. I've never used only 8 years old, Windows Mail
    2. Windows Mail is not supported.

    The deleted items folder has a clean button on it? This can empty it completely. Another thing to consider is that your e-mail service can remove items deleted periodically. However, as you say, it takes place, so you can delete them manually.

    Alternatively, you can consider changing the e-mail programs. You said that Windows Live Mail did not work. You can try an older version, because I don't think not 2012 works on Vista (based on absolutely no evidence, by the way) another option to consider is Mozilla Thunderbird. If you have Microsoft Office and it includes Outlook, certainly use it.

    That's the only advice I have. If this does not help, I don't have anything else for you.

  • How can I safely remove the elements of the file to download.

    can I drag items of the file downloaded in the trash?

    Yes, you can.

    (143802)

  • Recorded TV causes Media Center to stop when the cursor is moved over the icon. Sometimes Blue Screen of Death. How can I remove the element from the list of recorded TV shows?

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    "This problem that I've seen before - corrupted metadata in a recorded TV file causes MC to Issac when you click on" show in the list.
    And, it is useful to know that show is the cause.  :)
    Solution: Close Media Center.  Open an Explorer window and go to C:\Users\Public\Recorded TV.  Find the offending file, and either move it to another folder (unless it is a 'protected' program, you can always watch it in Media Player), or delete.
    The file name format is: showname_network_starttime(where starttime is presented as dd_mm_yyyy_hh_mm_ss (24hours). wtv)

    HTH,
    Chris

    MS - MVP (Media Center) [If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message.] [Marking a post as answer, or relatively useful, you help others find the answer more quickly.]

  • Remove the entries in the playlist.

    I can't get rid of unwanted entries in the playlist.  There is no x in the top right and the items won't slide.  I'm on Yosemite 10.10.5

    Highlight the item in the playlist column.  Hold down the CTRL key.  Click on the item and options pop up.  Select remove the element.  Yes I know.  Why they have just under the X in the corner?

  • Remove the two persistent data?

    Hello

    I'm stroing multi number of data in a persistent in my app storage. I want to remove specific individual data, how can I remove it? I know to remove the storage of entire data that I have to use PersistentStore.destroyPersistentObject (key);. But how can I delete individual data? For example, I have 10 data in persistent storage and I want to delete the data 6.

    Thanks and Appreciate if you can help me by providing a code example?

    To remove the element at position index using:

    vector.removeElementAt (index);

    Concerning

    Bika

  • Add/Remove the same exact point from a drop down list

    Hello!

    I need power remove/hide and/add/view THE SAME POINT, or that it doesn't look like the same question, please see the example of what I m doing:

    When you open the document:

    01.png

    If you click 'Yes' to the first radio 4 value is added

    02.png

    If you click 'Yes' in the second radio, value 5 is added

    03.png

    If you click 'no' on the first radio, you remove the value 4 BECAUSE you remove the element #3

    04.png

    If you click on 'no' on the second radio, you delete nothing 4 BECAUSE you try to delete the point #4


    05.png

    And then you get this weird combination

    06.png

    This is the code on the first Radio

     form1.#subform[0].value_4::click - (JavaScript, client)

    if (this.rawValue == "1") {
         DropDownList1.addItem("value 4");
    }else {
        DropDownList1.deleteItem(3);
    }

    This is the code on the second radio

     form1.#subform[0].value_5::click - (JavaScript, client)

    if
    (this.rawValue == "1") {
           DropDownList1.addItem("value 5");
    }else {
           DropDownList1.deleteItem(4);
    }

    Anyone know how to remove a specific item of a dropdrown? or may not remove, hide only if this is possible... I tried to change specific values for Add/Remove always from the same point, but it did not work.

    Thank you!

    Ago, I find it odd that there is no native method xfa for the index of an item in the menu drop-down. Not documented at least (as I know).

    What you can do however, is create your own method!

    Here, in the initialize event of your highest subform you create a method that exends class object (which includes all XFA objects too), like native JavaScript:

    //@para String value of the item in the drop down
    //@return Boolean - true if item was deleted, false if not and null object if not found in the list
    
     Object.prototype.deleteItemValue=function(sVal){
     for (var a=0;a
    

    You can remove any item from your drop by modying your code:

    if (this.rawValue == "1") {
     DropDownList1.addItem("value 4");
    }
      else {
     DropDownList1.deleteItemValue("value 4");
    }
    

    Kyle

  • Removal of the element

    How can we remove the item for what amount of transaction or in hand exist? does perform a work around for this query

    Question on all hand one amount, then you can remove the element

  • Removed the breaking point breaks yet!

    Hello

    I recently bought the Flash Builder 4 and went through the upgrade process.  After the upgrade, I inadvertently put a breakpoint in the HaloBorder.as class.  I removed the breakpoint after that I realized, but now, whenever I have my debug request it breaks in the HaloBorder.as class.  The special function is executed 4 times before the starts even and several times after that.

    Have you seen this happen?  Can I delete and find my application?  (I use SVN)  Or I have to delete and reinstall Flash Builder 4?  Any help would be appreciated!

    Thank you!

    Mike

    Hello

    Maybe don't watch not the breakpoint in the source code window, but just to make sure it was really deleted, you can check by switching to the Debug perspective and then select window-> Show View-> breakpoints. This should siwtch focus to display breakpoints. If can delete your breakpoint if she is still there.

    -Evtim

  • I have; ve reinstalled the software, wireless, everything went through fine. He asked me to remove the USB cable while it printed a test page. But he does not accept printing orders

    I have; ve reinstalled the software, wireless, everything went through fine. He asked me to remove the USB cable while it printed a test page.  But he does not accept printing orders - printer offline.  Very frustrating!

    So, you have a problem with Picasa. You should contact them.

    I also quite what your note 'Wireless' has to do with the question. Maybe it's because you have yet to provide a lot of information...

Maybe you are looking for