Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Script works fine in IE, FF, & Opera, but not Safari 3... 1

Status
Not open for further replies.

javanoob47

IS-IT--Management
Jun 2, 2008
4
US
Hoping someone has an easy answer to this---I've had a "pre-fab" java slideshow on my site for a couple of years, with no problems, until it was reported to me that it doesn't show up in Safari. I checked it in every browser I could think of, and the only one it doesn't show up in, is Safari 3.1---Mac or PC! I'm an absolute noob with java, so any suggestions would be greatly appreciated. Here's the URL...


Thanks!
 
Thanks Clueful, I will check into that.

Mr. BillyRay...my apologies for not being more well-versed, but the code on my page indicates "javascript" specifically, so I believe it is posted in the right place, despite my ignorance as to the differences between Java & JavaScript (it's all Sun's fault for co-branding it!). You seem quite fluent, so perhaps you can shed some light as well? Thanks!
 
Thanks Kaht, you are right, but Sun does own the Java name, correct?

Well, anyway, after figuring out how to turn on the js debugger in Safari, it's returning the following error message: "ReferenceError: Can't find variable: obj", in reference to this line:

crossobj.style.KhtmlOpacity=obj.degree/100

Anyone know what I might need to change? Or, what it's referring to in plain english?
 
It looks line 170

Code:
crossobj.style.KhtmlOpacity=obj.degree/100

should read:

Code:
crossobj.style.KhtmlOpacity=this.degree/100;

I think someone forgot to change it when they changed the other references.
 
Clueful---YOU ARE A ROCKSTAR! Worked like a charm...can't thank you enough for your help---I never would have noticed that! I am humbled...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top