- Home /
Webplayer not recognized in IE and Facebook
We have created an Facebook App using Unity3D. This App is loaded in Firefox, Safari and Chrome, but not in IE: In IE (9) the download image for the Unity3D plugin is shown. The plugin itself is installed and the app runs, if the IE Developer Tools window is opened and the Refresh button is pressed ...
Any hints?
To test: http://apps.facebook.com/buildville
Answer by kilgore · Aug 22, 2011 at 01:57 PM
When I look in the developer tools of IE I'm seeing the following errors. IE is probably getting tripped up on one of these errors while the other browsers are ignoring them.
Uih, thank you very much! Now the syntax errors (which I haven't seen before, there was a script update today) should have been removed.
It worked with the developer tools opened, but not without them. So I tried alert() ins$$anonymous$$d of console.log and it worked again ... also without any debug output. So I found the following post: http://stackoverflow.com/questions/690251/what-happened-to-console-log-in-ie8
and changed the log output function to: function log(text) { if (window.console) { console.log(text); } }
And it worked :-) with and without Development tools in IE9
Thanks!!