Found a temp fix.
Between pages... I put a redirect page.

So for example say I'm at Home.html and I have a link or querry to
Results.html. I put in the link loadingzone.html?results.html then I
create a HTML Document with the following code named
loadingzone.html ...

The following in between page resets VoiceOver to the top of the page
for the results.html page to be read corectly.

Enjoy!!! I'm wokring on other ideas too with transitions. I've
researched CSS3 and Javascript solutions but with no success... If any
of you have any better ideas I'd really like to know?
-mr_gushi

filename:loadingzone.html
<html>
<head>
<script type="text/javascript">
<!--
function delayer(){
        var url = "";
        var queryString = document.location.search.replace("?", "");
    window.location = (url+queryString);
}
//-->
</script>
<title>Loading</title>
</head>
<body onLoad="setTimeout('delayer()', 5000)">
</body>
</html>

-- 
You received this message because you are subscribed to the Google Groups 
"MacVisionaries" group.
To post to this group, send email to macvisionaries@googlegroups.com.
To unsubscribe from this group, send email to 
macvisionaries+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/macvisionaries?hl=en.

Reply via email to