How To: Learn Basic AutoIt menu

Shout-Out

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 26 of 26
  1. #16
    Adrenalin3's Avatar Banned
    Reputation
    219
    Join Date
    Dec 2006
    Posts
    656
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    Very nice Glyn. Im thinking of making a basic VB6 guide but im still pondering it

    How To: Learn Basic AutoIt
  2. #17
    alfrido's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    omg Thnx Glynn.
    I needed something like this . Thanks allot.

  3. #18
    Glynbeard's Avatar Mawd Authenticator enabled
    Reputation
    616
    Join Date
    Jul 2006
    Posts
    2,646
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    Gonna add a new guide probably something this week so stay tuned!

  4. #19
    Dragon[Sky]'s Avatar Anti-social Engineer
    Reputation
    847
    Join Date
    Apr 2007
    Posts
    1,416
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    I wanna have my reply in this thread because it be kewl liek that.


  5. #20
    Glynbeard's Avatar Mawd Authenticator enabled
    Reputation
    616
    Join Date
    Jul 2006
    Posts
    2,646
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    Originally Posted by Dragon[Sky] View Post
    I wanna have my reply in this thread because it be kewl liek that.
    Dragon, we all know your to sexy for this thread *shows her the door*.

    Anyways.. My next guide is on a GUI and how to make a button 'do' what you want it to, I'm hoping to kinda keep these threads going and getting a little more advanced each time then link them all together at the end.

    Glyn

    (express your thoughts)

  6. #21
    Obex's Avatar Active Member
    Reputation
    37
    Join Date
    Feb 2007
    Posts
    513
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    blech i would learn this but im too bussy learing HTML for my ICT course so i will lear this strait after and then its on to C++

    But +rep for some effort
    Science has not yet taught us if madness is or is not the sublimity of the intelligence.

  7. #22
    Glynbeard's Avatar Mawd Authenticator enabled
    Reputation
    616
    Join Date
    Jul 2006
    Posts
    2,646
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    Originally Posted by Obex View Post
    blech i would learn this but im too bussy learing HTML for my ICT course so i will lear this strait after and then its on to C++

    But +rep for some effort
    Thanks, I'm about to put up my next guide so check it out. Btw you accidently gave me 0 rep instead of 1 or 2 but don't worry I do that sometimes as well, no biggy .

  8. #23
    MLT's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2006
    Posts
    627
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    Very nice indeed glyn, +well earned rep from me.

  9. #24
    iccy's Avatar Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    300
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    Originally Posted by glynbeard View Post
    Dragon, we all know your to sexy for this thread *shows her the door*.

    Anyways.. My next guide is on a GUI and how to make a button 'do' what you want it to, I'm hoping to kinda keep these threads going and getting a little more advanced each time then link them all together at the end.

    Glyn

    (express your thoughts)

    awesome, That is what I am most wanting to know, too. Anyways +Rep for a lot of work on this guide.

  10. #25
    Newbs_r_us's Avatar Active Member
    Reputation
    108
    Join Date
    Jan 2007
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How To: Learn Basic AutoIt

    Nice guide, i got down these basics a while ago when i started making random small afk bots and honor bots for myself. What i got stuck on was the GUI. Saving/loading variables into a input box got me. Could save but loading was broken, and wouldn't load in the boxes.

    *shrug* We'll wait and see how your series turns out

  11. #26
    PC2012's Avatar Private
    Reputation
    1
    Join Date
    Apr 2011
    Posts
    0
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    #include <GUIConstants.au3>

    GUICreate("PC2012 Checkboxes")

    $checkCN = GUICtrlCreateCheckbox ("CHECKBOX 1", 10, 10, 120, 20)
    $checkCN = GUICtrlCreateCheckbox ("CHECKBOX 2", 10, 30, 120, 20)
    $checkCN = GUICtrlCreateCheckbox ("CHECKBOX 3", 10, 50, 120, 20)

    GUISetState ()

    ; Run the GUI until the dialog is closed
    While 1
    $msg = GUIGetMsg()

    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    Wend

    Looks Good )

    ---------- Post added at 05:19 AM ---------- Previous post was at 05:15 AM ----------

    I tried the IE Browser to Web Page with both codes you gave...
    They Didn't work for me.

    I like the code below and it works with my default Browser which is Firefox...

    Example Browser Link.au3
    -------------------------------------------------------------------------------------------

    Run(@comspec & " /c start www.google.com",@scriptdir, @SW_HIDE)


    --------------------------------------------------------------------------------------------
    This works much better... Just thought I would share.. )

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [How-To] The basics maximize you're GPH in Core of Arreat
    By j0achim in forum Diablo 3 Guides
    Replies: 7
    Last Post: 06-11-2012, 05:52 PM
  2. How to learn C#?
    By lollollol1 in forum Programming
    Replies: 6
    Last Post: 04-05-2010, 03:32 PM
  3. [Guide] Learning Basic C++
    By 7itanium in forum Programming
    Replies: 15
    Last Post: 09-13-2009, 12:34 AM
  4. Learning basic c++!
    By Syllabus in forum Programming
    Replies: 4
    Last Post: 07-16-2008, 01:48 PM
All times are GMT -5. The time now is 07:14 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search