VERY simple question

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • sillybob123
    Forum Member
    • Jul 2008
    • 32

    VERY simple question

    a simple question by a pathetic noob :(

    how do i make it so when the window is maximised im pretty sure i did that right just select window is resizable in the settings dialog but how do i apply that to all the items in my project eg. the web browser object grows to full screen size and buttons move accross simply maximising the whole window

    if i need to explain in more detail please tell me

    thanks
  • Worm
    Indigo Rose Customer
    • Jul 2002
    • 3967

    #2
    It is amazing how much information the help file contains.

    See the section on Auto-Resize

    Comment

    • sillybob123
      Forum Member
      • Jul 2008
      • 32

      #3
      Fixed

      ok ive managed to do that now in the help file is there information on having a button that when clicked saves the current page being viewed as their homepage or maybe someone has made a plugin for a internet options...
      dialog?

      Comment

      • sillybob123
        Forum Member
        • Jul 2008
        • 32

        #5
        sorry...

        even something that simple seems complicated im really sorry im causing such a pain maybe u could give me an example?

        thanks

        Comment

        • Worm
          Indigo Rose Customer
          • Jul 2002
          • 3967

          #6
          How about the opposite. You give it a try, then post your apz. Someone here will take a look at it, then offer suggestions on how make the code work.

          Comment

          • sillybob123
            Forum Member
            • Jul 2008
            • 32

            #7
            ...

            well thats the thing where would i start :S im going to try and work out the links above u gave me i guess XD

            Comment

            • RizlaUK
              Indigo Rose Customer
              • May 2006
              • 5478

              #8
              1st, you get the current page address, see Web actions

              2nd, you want to save the webpage address, see INIFile actions

              3rd, you want to read the address from the ini file, see INIFile actions

              4th, load the address into the webobject, see Web actions

              points 1 and 2 will save the address, points 3 and 4 will load the address

              EDIT: ok i conceed, heres some code, lol
              Code:
              -- SAVE ADDRERSS
              -- get current address
              sURL = Web.GetURL("web1");
              -- save address to file
              INIFile.SetValue(_WindowsFolder.."\\My Settings.ini", "My Section", "My Value", sURL);
              
              
              -- LOAD ADDRESS
              -- get saved address
              sURL = INIFile.GetValue(_WindowsFolder.."\\My Settings.ini", "My Section", "My Value");
              -- lode the webpage
              Web.LoadURL("web1", sURL);
              Last edited by RizlaUK; 08-02-2008, 10:40 AM.
              Embrace change in your life, you never know, it could all work out for the best

              Comment

              • sillybob123
                Forum Member
                • Jul 2008
                • 32

                #9
                ...

                this will be my last reply as i dont want to start making enemys :S
                if someone could provide me with a quick example with that i would be able to do complete my task the code alone seems (gobeldegoop :P)

                thanks

                Comment

                • mwreyf1
                  Indigo Rose Customer
                  • Aug 2004
                  • 417

                  #10
                  Was he just trying to play some kind of sympathy card or something?

                  Whoa Whoa Whoa is he...

                  Jeeezzzzzz.

                  Comment

                  • RizlaUK
                    Indigo Rose Customer
                    • May 2006
                    • 5478

                    #11
                    sure, hold on and i'll come round and cook you dinner too!!

                    dude, you could not have got anymore help than you did in this post.
                    Embrace change in your life, you never know, it could all work out for the best

                    Comment

                    • Derek
                      Indigo Rose Customer
                      • May 2001
                      • 1254

                      #12
                      Originally posted by sillybob123 View Post
                      this will be my last reply as i dont want to start making enemys :S
                      if someone could provide me with a quick example with that i would be able to do complete my task the code alone seems (gobeldegoop :P)
                      You won't make enemies simply by asking for help - no matter how much help you need! After all, this is a user help forum so we're here to help each other. What it is not is a user 'code me a project' forum.
                      So what we do ask of new users, is they at least try to work it out for themselves. :yes
                      -
                      = Derek
                      ["All glory comes from daring to begin" - fortune cookie]

                      Comment

                      • sillybob123
                        Forum Member
                        • Jul 2008
                        • 32

                        #13
                        ...

                        u are gunna cook my dinner too! wow i love this forum what you cooking then?

                        Comment

                        • ShadowUK
                          No longer a forum member
                          • Oct 2007
                          • 1321

                          #14
                          Originally posted by sillybob123 View Post
                          u are gunna cook my dinner too! wow i love this forum what you cooking then?
                          Fried code and lua eggs.

                          Comment

                          • RizlaUK
                            Indigo Rose Customer
                            • May 2006
                            • 5478

                            #15
                            Originally posted by sillybob123 View Post
                            u are gunna cook my dinner too! wow i love this forum what you cooking then?
                            i see me n you are going to get on just fine
                            Embrace change in your life, you never know, it could all work out for the best

                            Comment

                            Working...
                            X