
October 25th, 2000, 01:54 AM
|
 |
Contributing User
|
|
Join Date: Oct 2000
Location: Australia
Posts: 42
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
I have a script which works fine under IE and Netscape on a PC, but doesn't work on a Machintosh. Does anyone know of any thing Machintoshs need done differently than PC's for Javascript.
Here is the script, it just moves a Flash files frame position.
<!-- Hide JavaScript from old browsers
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
var targetFrame = 0;
function syncframe(frame) {
var buttons = InternetExplorer ? window.navmovie : window.document.navmovie;
targetFrame = frame-1;
if ( buttons != null )
window.document.navmovie.GotoFrame(targetFrame);
}
-->
|