My question is regarding putting a quicktime movie into a pop-up window, which I have done sucessfully with the code I pasted below. However, my hangup is that I believe its IE5.2 and other non-netscape/non-mac browsers are no longer supporting quicktime in the way that they used to.
I have found many articles about this online regarding the use of the <object> tag so that the active x plug-in is used, etc. But they say you need to use this <object> tag with the <embed> tag. The funny thing is I am not even using the <embed> tag here, but rather a javascript code which worked fine on my browser, Mozilla firefox, but found problems with the IE on my g4.
Can someone shed some light on how to play a quicktime in a pop-up window (not using the QTplayer) that will be compatible for most all browsers and platforms? I would be fine to use the <object> and <embed> tags if I could understand how to also get the movie appear in a popup window. It would help if I grasped javascript better I am sure, but for now I simply just take the code off other peoples web sites...
thanks.
------this is the link :
<A HREF="javascript:firstWindow()">
-----this is the part between the <head> tags:
}
function firstWindow() {
qtWin = window.open('video/Nawal_Aman.mov', 'movie','width=240,height=196')
}
I have found many articles about this online regarding the use of the <object> tag so that the active x plug-in is used, etc. But they say you need to use this <object> tag with the <embed> tag. The funny thing is I am not even using the <embed> tag here, but rather a javascript code which worked fine on my browser, Mozilla firefox, but found problems with the IE on my g4.
Can someone shed some light on how to play a quicktime in a pop-up window (not using the QTplayer) that will be compatible for most all browsers and platforms? I would be fine to use the <object> and <embed> tags if I could understand how to also get the movie appear in a popup window. It would help if I grasped javascript better I am sure, but for now I simply just take the code off other peoples web sites...
thanks.
------this is the link :
<A HREF="javascript:firstWindow()">
-----this is the part between the <head> tags:
}
function firstWindow() {
qtWin = window.open('video/Nawal_Aman.mov', 'movie','width=240,height=196')
}