I implemented a real-time clock using Flash, ActionScript and JavaScript. The ActionScript code calls a getURL() function that calls a JavaScript function to start the clock. The JavaScript function uses a setTimeout() function to set/refresh the time string displayed in the Flash movie by calling setVariable() function. I named the Flash object "clock", so in the JavaScript function, the statement goes like this: window.document.clock.setVariable(<variable name>, <value>). The thing works like charm in IE but doesn't work in Netscape. Netscape thinks, "Java object has no field or method named setVariable". Do any of you guys have any ideas how to make this thing work in Netscape?