Javascript functions to control QuickTime not working in Firefox
I create a QuickTime Player, as follows:
QT_WriteOBJECT('Music.mp3', '0', '0', '', 'AUTOPLAY', 'True', 'KIOSKMODE', 'True', 'CONTROLLER', 'False', 'LOOP', 'False', 'obj#id', 'qtp', 'emb#name', 'qtp', 'emb#id', 'qtpID', 'ENABLEJAVASCRIPT', 'True', 'SHOWLOGO', 'False', 'VOLUME', '256');
The Music.mp3 file starts playing in both Safari and Firefox; however, the Javascript functions to control that playing work only in Safari, not in Firefox.
Examples of QuickTime functions that work in Safari, but not in Firefox:
document.qtp.Stop();
document.embeds[0].GetRate();
document.embeds["qtp"].GetTime();
document.embeds["qtpID"].GetQuickTimeVersion();
The GetRate and GetTime functions always return a "0" in Firefox, the Stop command is ineffectual in Firefox, and the GetQuickTimeVersion function aborts the Javascript code in Firefox.
Any ideas what's happening?
MacBook Pro 17" Core Duo, Mac OS X (10.5.7)