Valuater Posted July 23, 2009 Author Posted July 23, 2009 OK uploaded a new zip file... I still don't understand, the exe was 2.0.0 and ran fine ( missing 1 picture on a button). The au3 file was 2.0.1 and ran fine ... why couldn't you use it?? 8)
icu Posted May 10, 2011 Posted May 10, 2011 Hi Valuater, Thank you for IE Builder, is there a guide to using it? I have the feeling that I'm not using its full potential. Perhaps there are some tutorials on how to best use it? Kind regards, icu
chavv Posted June 7, 2011 Posted June 7, 2011 This version check fails when trying to load page in IEBuilder <script type="text/javascript"> var redirect = true; var version = $.browser.version.split("."); //alert($.browser.version); for (var i = 0; i < version.length; i++) version[i] = parseInt(version[i]); while (version.length < 5) version.push(0); if ($.browser.mozilla) { if (version[0] > 1 || version[0]==1&&version[1]>9 || version[0]==1&&version[1]==9&&version[2]>=2) redirect = false; } if ($.browser.msie) { if (version[0] >= 8) redirect = false; } if ($.browser.opera) { if (version[0] >= 10 || version[0]==10&&version[1]>=63) redirect = false; } if ($.browser.safari && $.browser.webkit) { if (version[0] > 533 || version[0]==533&&version[1]>=16) // Chrome 6+, Safari 5+ redirect = false; } if (redirect) document.location.href = "/utils/unsupported/"; </script>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now