Hi everyone
I was referred to this thread
in response to my question on launch page translations. I tried to include the above code in my survey to allow a pre-install on a survey page with instructions in the participants' native language. Unfortunately, the link underneath "Download Inquisit plug-in" appears to be dead. I changed nothing but the version number to 4.0.8. When I simply copy/paste the plug-in URL link (
http://www.millisecond.com/download/4/4_0_8_0/) into my browser it gives me an "access denied" error message. Could that mean something is wrong with the download link itself?
The code I use:
<script type="text/javascript">
function downloadInquisit() {
try {
var pluginUrl = "
http://www.millisecond.com/download/4/4_0_8_0/"; var agent = navigator.userAgent.toLowerCase();
if ((agent.indexOf("msie") != -1 && agent.indexOf("opera") == -1) || agent.indexOf("trident") != -1) {
pluginUrl += "ax/win32/InquisitAx.exe";
}
else {
if (navigator.platform.indexOf("Mac") != -1 || navigator.userAgent.indexOf("Mac OS X") != -1) {
pluginUrl += "np/mac/Inquisit_Plugin_4080.dmg";
}
else {
pluginUrl += "np/win32/npInquisit.exe";
}
}
window.location.href = pluginUrl;
}
catch (e) {
window.alert("Error: " + e.Message);
}
}
</script>
<a href="downloadInquisit()">Download Inquisit Plugin</a>