[WSG] INTERNET EXPLORER 8 PROBLEMS

2010-08-02 Thread Marvin Hunkin
HI.
DID A TUTORIAL FROM JEFF DURRUM ON HTTP://WWW.BLINDGEEKS.ORG
AND FOR SOME STRANGE REASON.
INTERNET EXPLORER 8.
DOES NOT SHOW ME THE RESULTS OF A PAGE.
WRITING A JAVASCRIPT APPLICATION.
A SHOPPING CART.
WHERE YOU SELECT ITEMS AND PRCIES IN A DROP DOWN COMBO BOX, AND THEN ENTER A 
QUANTITY IN A EDIT BOX.
THEN CLICK THE ADD TO SHOPPING CART BUTTON.
A MESSAGE POPS UP SAYING THE ITEM WAS ADDED.
THEN YOU CLICK ON THE VIEW SHOPPING CART.
WHICH TAKES YOU TO A PAGE, AND SHOW YOU THE TOTAL PRICES , TAXES, AND TOTALS OF 
THE ITEMS PURCHASED.
THEN YOU HAVE A COMPLETE YOUR SHOPPING CART BUTTON, WHICH CLEARS OUT ALL YOUR 
TOTALS.
AND PRESENTS YOU WITH A MESSAGE.
TO CHECK OUT OR YOUR ITEMS ARE COMPLETE.
BUT IT IS NOT WORKING IN INTERNET EXPLORER 8.
SO DO I UNINSTALL, TRY REINSTALLING.
WAS WORKING LAST WEEK, BUT NOT NOW.
WORKS IN FIREFOX.
ANY IDEAS.
TRIED SETTING THE PRIVACY TO 40 % AND TRIED SETTING THE SECURITY OPTIONS AND 
ALLOWING ACTIVE EX CONTENT.
BUT DID NOT STILL WORK.
SO ANY IDEAS, OTHER PROGRAMS, ACTIVE EX I COULD INSTALL.
TEARING MY HAIR OUT.
THANK YOU.
MARVIN.

***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


Re: [WSG] INTERNET EXPLORER 8 PROBLEMS

2010-08-02 Thread Josh Godsiff

On 3/8/2010 12:47 PM, Marvin Hunkin wrote:

HI.
DID A TUTORIAL FROM JEFF DURRUM ON HTTP://WWW.BLINDGEEKS.ORG 
mhtml:%7B4DCB9095-E5FA-4455-A328-2B372E08F438%7Dmid://0019/%21x-usc:http://www.blindgeeks.org/

AND FOR SOME STRANGE REASON.
INTERNET EXPLORER 8.
DOES NOT SHOW ME THE RESULTS OF A PAGE.
WRITING A JAVASCRIPT APPLICATION.
A SHOPPING CART.
WHERE YOU SELECT ITEMS AND PRCIES IN A DROP DOWN COMBO BOX, AND THEN 
ENTER A QUANTITY IN A EDIT BOX.

THEN CLICK THE ADD TO SHOPPING CART BUTTON.
A MESSAGE POPS UP SAYING THE ITEM WAS ADDED.
THEN YOU CLICK ON THE VIEW SHOPPING CART.
WHICH TAKES YOU TO A PAGE, AND SHOW YOU THE TOTAL PRICES , TAXES, AND 
TOTALS OF THE ITEMS PURCHASED.
THEN YOU HAVE A COMPLETE YOUR SHOPPING CART BUTTON, WHICH CLEARS OUT 
ALL YOUR TOTALS.

AND PRESENTS YOU WITH A MESSAGE.
TO CHECK OUT OR YOUR ITEMS ARE COMPLETE.
BUT IT IS NOT WORKING IN INTERNET EXPLORER 8.
SO DO I UNINSTALL, TRY REINSTALLING.
WAS WORKING LAST WEEK, BUT NOT NOW.
WORKS IN FIREFOX.
ANY IDEAS.
TRIED SETTING THE PRIVACY TO 40 % AND TRIED SETTING THE SECURITY 
OPTIONS AND ALLOWING ACTIVE EX CONTENT.

BUT DID NOT STILL WORK.
SO ANY IDEAS, OTHER PROGRAMS, ACTIVE EX I COULD INSTALL.
TEARING MY HAIR OUT.
THANK YOU.
MARVIN.

***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*** 


I'm guessing your blind, so please don't take offence to this, but could 
you kindly move your little finger 7/16ths of an inch to its left and 
*turn off caps lock*.


As to your actual problem, try using IE8s JavaScript debugger to work 
out the actual error.

Don't use ActiveX, you'll regret it later on.

We might be able to give you more assistance if we knew the actual site, 
or had the code that was causing this.

- Josh


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

[WSG] internet explorer 8 problems

2010-08-02 Thread Marvin Hunkin
hi.
okay so how do i use the java se debugger.
and yes i am blind and using jaws for windows from 
http://www.freedomscientific.com
so not offended.
should have made that known.
sorry about that.
okay will be pasting the code for the java script and the html files.
as i do not have a actual site.
and just on my local hard disk.
sorry.
thank you.
marvin.

ps:  so here the code below.

 function setCookie(cName,value,expires)
 {
var exDate=new Date();
exDate.setMinutes(exDate.getMinutes()+expires);
cookieString = cName + = + escape(value) + ;expires= + 
exDate.toString() + ;path=/;
document.cookie = cookieString;
 }
 function getCookie(cName)
 {
// We pass the textbox object so that we can change it's value.
var cStart; // This is used for the index of the beginning of the 
cookie's value.
var cEnd; // This is used for the index of the beginning of the 
string of the expiration date and time.
var cValue = ;
if (document.cookie.length0)
// Determine if a cookie has been set at all
{
   cStart=document.cookie.indexOf(cName + =);
   if (cStart!=-1)
// If there is an entry in the cookie who's value starts at position cStart
   {
  cStart=cStart + cName.length+1; // We need to take into 
account the equal sign
  cEnd=document.cookie.indexOf(;,cStart);
  if (cEnd == -1)
 cEnd=document.cookie.length; /* No semicolon was found, so 
this must be the last entry. */
   cValue = unescape(document.cookie.substring(cStart,cEnd)); 
/* Set the return value to the cookie entry's data. */
   }
}
return cValue;
 }
 function isNumeric(strText)
 {
var validChars = 0123456789; // the string of acceptible 
characters
var curChar;  // This is used to store the character currently 
being processed.
var isANumber = true;  /* The function returns true if the string 
is numeric, otherwise it returns false. */
if (strText.length == 0)  /* if the length of the string is 0, the 
user did nnot enter anything, and we do not need to go any further. */
{
   isANumber = false;
   return isANumber;  /* this returns false and causes us to exit 
the function. */
}
for (i = 0; (i  strText.length  isANumber); i++)
/* If we encounter a character in the string that is not a digit, isANumber is 
set to false and we exit the loop early. */
{
   curChar = strText.charAt(i);
/* The charAt function with I passed as its parameter gets the character at the 
ith position in the string. */
   if (validChars.indexOf(curChar) == -1)
/* The indexOf function with curChar passed as its parameter searches the 
validChars string to see if it contains the value in curChar. If it doesn't, it 
returns -1. */
  isANumber = false;
}
return isANumber;
 }



html
head
titleShopping cart application/title
script type=text/javascript src=functionLib.js  
/script
script type=text/javascript
var items = new Array();
var prices = new Array(3.50, 5.00, 7.50, 6.25);
// The list of prices for each item.
var quantity = new Array();
// The quantity of the given item.
function addToCart(iSelected)
// iSelected is the selectedIndex property value of the dropdown list
{
var i = items.length;
// I is used in our method of naming the cookie entry.
with (myForm)
{
try
{
if (iSelected == -1)
throw noSelectedItem;
  if (txtNumItems.value = 0  txtNumItems.value.length  0)
/* A number was entered, but it is out of range. */
throw valueOutOfRange;
  if (!isNumeric(txtNumItems.value))
 throw notANumber;
items.push(ddlItems.options[iSelected].value);
// The push method appends an item to the end of the array.
  quantity.push(txtNumItems.value);
  setCookie(i + cItems, items[i] + , + prices[iSelected] + 
, + quantity[i], 30);
/* We prepend the current value of i to the beginning of cItems so that we 
will have a unique name for each entry. */
  txtNumItems.value = ;
  ddlItems.selectedIndex = -1;
  alert(Item added to cart);
  }
   catch (invalidInputException)
   {
  switch (invalidInputException)
  {
 case noSelectedItem:
alert(You did not select an item to purchase.  Please 
select from the list.);
break;
 case notANumber: 
alert(The value you entered for the number of items 
contains a nonnumeric character, or no value was entered.);
break;
 case 

[WSG] internet explorer 8 problems

2009-09-12 Thread Marvin Hunkin
hi.
well still not displaying the table and the font name.
so wonder if it is a internet explorer 8 issue.
and when i rolled back to internet explorer 7 last time.
it would display the table and my font names.
why?
is this a internet explorer 8 bug and maybe contact the development team at
microsoft.
have checked and my css is in the correct file place.
cheers Marvin.






***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] internet explorer 8 problems

2009-09-12 Thread info

Try putting IE8 into Compatibility mode.



Marvin Hunkin wrote:

hi.
well still not displaying the table and the font name.
so wonder if it is a internet explorer 8 issue.
and when i rolled back to internet explorer 7 last time.
it would display the table and my font names.
why?
is this a internet explorer 8 bug and maybe contact the development team at
microsoft.
have checked and my css is in the correct file place.
cheers Marvin.






***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

  




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



[WSG] internet explorer 8 problems using a screen reader

2009-09-11 Thread Marvin Hunkin
hi.
if you run the page with internet explorer 6, 7, and 8.
have got a style sheet and a table on the main page.
with internet explorer 8.
it is not reading me the font names with my jaws screen reader.
and also do have a table, jaws is not reading me the table.
so wonder if it is a internet explorer 8 issue.
the page is http://startrekcafe.alacorncomputer.com
just to test out the page.
cheers Marvin. 




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] internet explorer 8 problems using a screen reader

2009-09-11 Thread James Ducker
Your table is missing its opening tag, table, which is *probably* causing
your problems. There are also some other markup errors.
Please, always validate[1] your web pages before posting questions.

- James

[1]:
http://validator.w3.org/check?uri=http://startrekcafe.alacorncomputer.com/charset=(detect+automatically)doctype=Inlinegroup=0


-- 
James Ducker
Web Developer
http://studioj.net.au


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

[WSG] internet explorer 8 problems

2009-06-23 Thread Marvin Hunkin
hi.
will post the message below.
think my problems on the student web project i did.
and when i removed the ../ with just for example a 
href=styles/Joes_Style.css.
just reverts back to times new roman.
so wondering if this is a internet explorer problem for version 8.
so wondering to uninstall it and go back to 7.
cheers Marvin.
ps: still not recongizing my tables.
as a blind web site designer and relying on a screen reader jaws for windows 
10.
using windows vista.
cheers Marvin.

hi.
well took out the ../ for the styles and the java script.
now just telling me times new roman.
and still not displaying the table.
so wondering if a internet explorer 8 problem.
might have to uninstall internet explorer 8.
unless there is a patch, update, or some tool.
i know in internet explorer 8, you can run it in compability mode, except 
not on a local file.
this one is giving me a headache.
if it does not resolve say in the next 48 hours, then will just go and 
uninstall.
tried looking at a few other web projects and get the same problem.
either saying not the font name or saying times new roman.
got windows vista home premium sp 2, jaws 10.0.154.
and using internet explorer 8 full version.
so if i have fixed the src reference.
and looking at my other projects same problem.
so it could be a internet explorer 8 problem.
this is really annoying me.
cheers Marvin.
E-Mail: startrekc...@gmail.com
 Msn: startrekc...@msn.com
 Skype: startrekcafe
Visit my Jaws Australia Group at http://groups.yahoo.com/groups/JawsOz/
E-Mail: startrekc...@gmail.com
 Msn: startrekc...@msn.com
 Skype: startrekcafe
Visit my Jaws Australia Group at http://groups.yahoo.com/groups/JawsOz/ 




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



RE: [WSG] internet explorer 8 problems

2009-06-23 Thread michael.brockington
Marvin,
Have you been able to confirm whether this is actually a problem with
the display of your page, or a problem with the way that Jaws is
interacting with IE ?
It might be that the font _is_ Times, but Jaws is mis-leading you. Not
too sure what else you would be able to 'see', but have you been able to
prove that IE is seeing your stylesheet at all. For me, I would slap a
garish border or background colour onto some random element, but I
appreciate that you can't do that on your own.

Mike

-Original Message-
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org]
On Behalf Of Marvin Hunkin
Sent: 23 June 2009 12:26
To: wsg@webstandardsgroup.org
Subject: [WSG] internet explorer 8 problems

hi.
will post the message below.
think my problems on the student web project i did.
and when i removed the ../ with just for example a
href=styles/Joes_Style.css.
just reverts back to times new roman.
so wondering if this is a internet explorer problem for version 8.
so wondering to uninstall it and go back to 7.
cheers Marvin.
ps: still not recongizing my tables.
as a blind web site designer and relying on a screen reader jaws for
windows 10.
using windows vista.
cheers Marvin.

hi.
well took out the ../ for the styles and the java script.
now just telling me times new roman.
and still not displaying the table.
so wondering if a internet explorer 8 problem.
might have to uninstall internet explorer 8.
unless there is a patch, update, or some tool.
i know in internet explorer 8, you can run it in compability mode,
except not on a local file.
this one is giving me a headache.
if it does not resolve say in the next 48 hours, then will just go and
uninstall.
tried looking at a few other web projects and get the same problem.
either saying not the font name or saying times new roman.
got windows vista home premium sp 2, jaws 10.0.154.
and using internet explorer 8 full version.
so if i have fixed the src reference.
and looking at my other projects same problem.
so it could be a internet explorer 8 problem.
this is really annoying me.
cheers Marvin.
E-Mail: startrekc...@gmail.com
 Msn: startrekc...@msn.com
 Skype: startrekcafe
Visit my Jaws Australia Group at http://groups.yahoo.com/groups/JawsOz/
E-Mail: startrekc...@gmail.com
 Msn: startrekc...@msn.com
 Skype: startrekcafe
Visit my Jaws Australia Group at http://groups.yahoo.com/groups/JawsOz/ 




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***