I have this javascript piece that on windows opens an .exe file and on mac opens flash version.
I only know how to include a javascript piece that opens a new window in flash.
If anyone can help on this i would appreciate that
Here’s the code:
function link() {
if(navigator.userAgent.indexOf('Mac') != -1)
{
window.open('FLASHVERSION','newWin','width=800,height=600,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);
}
else
{
open('EXEFILE');
}
}