Announcement

Collapse
No announcement yet.

open another website after one minute

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • open another website after one minute

    Hi
    How can open another website after one minute?

  • #2
    Use this code in your pages On Show event:

    Code:
    Page.StartTimer(60000, 10); -- 60000 milliseconds is 1 min.
    Use this code in your pages On Timer event:

    Code:
    if e_ID == 10 then
    Web.LoadURL("Web1", "http://www.autoplaystudio.com");
    end
    Hope this helps!
    Plugins:

    Bitmap (113 KB)

    ComboBoxEx (141 KB)

    Comment


    • #3
      Originally posted by Ruth View Post
      Use this code in your pages On Show event:

      Code:
      Page.StartTimer(60000, 10); -- 60000 milliseconds is 1 min.
      Use this code in your pages On Timer event:

      Code:
      if e_ID == 10 then
      Web.LoadURL("Web1", "http://www.autoplaystudio.com");
      end
      Hope this helps!
      Thanks very much
      But I want list of websites not one Website
      Like:
      google. com
      After a minute
      facebook. com
      After a minute
      yahoo. com
      Link list be inside txt file

      Comment


      • #4
        onShow or onClick or however you wanna start the script. Also replace C:\\MyFile.txt with the location of your .txt file
        Code:
        tblSites = TextFile.ReadToTable("C:\\MyFile.txt");
        onSite = 1;
        Web.LoadURL("Web1", tblSites[1]);
        Page.StartTimer(60000, 10);
        onTimer code
        Code:
        if (e_ID == 10) then
        	onSite = onSite + 1;
        	if (onSite > #tblSites) then
        		onSite = 1;
        	end
        	Web.LoadURL("Web1", tblSites[onSite]);
        end

        Comment


        • #5
          great ! as I wanted

          Originally posted by Ronin View Post
          onShow or onClick or however you wanna start the script. Also replace C:\\MyFile.txt with the location of your .txt file
          Code:
          tblSites = TextFile.ReadToTable("C:\\MyFile.txt");
          onSite = 1;
          Web.LoadURL("Web1", tblSites[1]);
          Page.StartTimer(60000, 10);
          onTimer code
          Code:
          if (e_ID == 10) then
          	onSite = onSite + 1;
          	if (onSite > #tblSites) then
          		onSite = 1;
          	end
          	Web.LoadURL("Web1", tblSites[onSite]);
          end
          great ! Exactly as I wanted :yes
          thank you very very very much brother

          Comment


          • #6
            Hmm, why would you want to open a website every ## seconds? Is it something a user voluntarily would want? Adware / malware acts like this too...
            Bas Groothedde
            Imagine Programming :: Blog

            AMS8 Plugins
            IMXLH Compiler

            Comment


            • #7
              Originally posted by Imagine Programming View Post
              Hmm, why would you want to open a website every ## seconds? Is it something a user voluntarily would want? Adware / malware acts like this too...
              hahahahahaha don't worry friend, this is just plain Software

              my greetings

              Comment


              • #8
                Originally posted by NEBRAS View Post
                hahahahahaha don't worry friend, this is just plain Software

                my greetings
                Not a single piece of software that opens websites at a specific interval is never plain software, in my book.
                Bas Groothedde
                Imagine Programming :: Blog

                AMS8 Plugins
                IMXLH Compiler

                Comment


                • #9
                  Originally posted by Imagine Programming View Post
                  Not a single piece of software that opens websites at a specific interval is never plain software, in my book.
                  Sorry my brother, but I do not know why you worry
                  It works on my computer only , what's the problem in it !!!

                  Comment


                  • #10
                    Originally posted by NEBRAS View Post
                    Sorry my brother, but I do not know why you worry
                    It works on my computer only , what's the problem in it !!!
                    My worry is that I've seen plenty of AMS-made adware programs. That's the problem. Why would you personally need a tool that opens an URL every x seconds or minutes?
                    Bas Groothedde
                    Imagine Programming :: Blog

                    AMS8 Plugins
                    IMXLH Compiler

                    Comment


                    • #11
                      If your looking to bump up post counts/page views there are easier ways.

                      Comment


                      • #12
                        Originally posted by Shrek View Post
                        If your looking to bump up post counts/page views there are easier ways.
                        Hahaha, that could be one of the reasons behind an application such as this, indeed.
                        Bas Groothedde
                        Imagine Programming :: Blog

                        AMS8 Plugins
                        IMXLH Compiler

                        Comment


                        • #13
                          Originally posted by Imagine Programming View Post
                          Hahaha, that could be one of the reasons behind an application such as this, indeed.
                          Okay I have not completed this project due to defects in the Web Object with JavaScript, but I will show him even convinced.


                          This Software promo to company websites design
                          alwebit.zip

                          I can not find any problem, why would you worry?

                          Comment


                          • #14
                            In that case I still wonder why you would open them after a certain time, and not simply interact with the application to open them at a precise moment.
                            Bas Groothedde
                            Imagine Programming :: Blog

                            AMS8 Plugins
                            IMXLH Compiler

                            Comment


                            • #15
                              Because this is my idea to be in the promo alwebit.zip , but the project did not succeed because an error in the JavaScript like the picture above.

                              Comment

                              Working...
                              X