| |||
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
|
On May 29, 2007, at 5:43 AM, Markus Altendorff wrote: Pete - Sphereworks Ltd schrieb:This link is using the same code to display in images, can you check if thisis working to. To my knowledge this is working fine, so it will beinteresting if any of you can't get this working.http://www.sphereworks.co.uk/client_area/webbers/the_cleave_tour.php This is caused by a bug in QuickTime 7.1.6. The problem is that one of the two QuickTime plug-ins installed on the Mac (one uses the Safari plug-in APIs, and one uses the old Netscape plug-in APIs) has the wrong name in _javascript_. The named property should be "QuickTime Plug-in 7.1.6", but instead it is "QuickTime Plug-in" so line 185 fails because "words[2]" is NULL since there are only two words in the name. We have fixed the problem for the next release of QuickTime, but this script (and others like it) can be changed to work around the problem by continuing to look though the plugins array if there are only two words in the name of a QuickTime plug-in. Something like this will work for this script: if(navigator.plugins[i].name.indexOf("QuickTime Plug-in")!=-1) { var words = navigator.plugins[i].name.split(" "); if ( words.length < 3 ) continue; var version = words[2].split("."); var min = minQTVersion.split("."); pluginQTInstalled=checkMinVersion(version,min,3); break; } Sorry for the inconvenience, Eric Carlson QuickTime Engineering |
_______________________________________________ Do not post admin requests to the list. They will be ignored. QuickTime-VR mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/quicktime-vr/email@hidden This email sent to email@hidden
| References: | |
| >RE: Can someone check this on a mac please (From: "Pete - Sphereworks Ltd" <email@hidden>) | |
| >Re: Can someone check this on a mac please (From: Markus Altendorff <email@hidden>) |
| Home | Archives | FAQ | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.