Jump to content

Recommended Posts

Posted

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)

NEWHeader1.png

  • 1 year later...
Posted

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

  • 4 weeks later...
Posted

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>

:huh2:

  • 5 months later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...