If JAWS does not read ActiveX content, how should I go about making this website 508 compliant?
Here is a code excerpt:
<SCRIPT LANGUAGE="javascript" FOR="posXUserForm" EVENT="ControlInitialized" >
try {
posXUserForm.SchemaLoadObject.URL = "form.xsd";
posXUserForm.XMLDataLoadObject.URL = "form.xml";
posXUserForm.DesignDataLoadObject.URL = "form.sps";
posXUserForm.StartEditing();
}catch(e) {
alert("Error loading form:" + e.name + "-" + e.message);
}
</SCRIPT>
<object id="posXUserForm"
name="posXUserForm"
CodeBase="<%=path%>/activex/AuthenticBrowserEdition.cab#Version=11,0,0,0"
Classid="clsid:B4628728-E3F0-44a2-BEC8-F838555AE780"
style="width: 100%; height: 100%;">
Sorry, please enable ActiveX to view this user form.
<param name="ToolbarsEnabled" value="false" />
<param name="BaseURL" value="<%=basePath%>files/forms/" />
</object>