Jump to content
Sub Category  

General AutoIt-related files.

71 files

  1. MiscConstans.au3

    ;$VK = Virtual Key Code
    ;the following script will help in _IsPressed($VK_L_MOUSE)
    ;Completely created by ludocus, got the codes from: http://delphi.about.com/od/objectpascalide/l/blvkc.htm
    ;Enjoy!
    ;updated to v1.501
    Global Const $VK_L_MOUSE = '01'
    Global Const $VK_R_MOUSE = '02'
    Global Const $VK_CTRL_BREAK = '03'
    Global Const $VK_M_MOUSE = '04'
    Global Const $VK_BACK = '08'
    Global Const $VK_TAB = '09'
    Global Const $VK_CLEAR = '0C'
    Global Const $VK_ENTER = '0D'
    Global Const $VK_SHIFT = 10
    Global Const $VK_CTRL = 11
    Global Const $VK_ALT = 12
    Global Const $VK_PAUSE = 13
    Global Const $VK_CAPS = 14
    Global Const $VK_ESC = '1B'
    Global Const $VK_SPACE = 20
    Global Const $VK_PAGE_UP = 21
    Global Const $VK_PADE_DOWN = 22
    Global Const $VK_END = 23
    Global Const $VK_HOME = 24
    Global Const $VK_LEFT = 25
    Global Const $VK_UP = 26
    Global Const $VK_RIGHT = 27
    Global Const $VK_DOWN = 28
    Global Const $VK_SELECT = 29
    Global Const $VK_PRINT = '2A'
    Global Const $VK_EXECUTE = '2B'
    Global Const $VK_PRINT_SCR = '2C'
    Global Const $VK_INS = '2D'
    Global Const $VK_DEL = '2E'
    Global Const $VK_HELP = '2F'
    Global Const $VK_0 = 30
    Global Const $VK_1 = 31
    Global Const $VK_2 = 32
    Global Const $VK_3 = 33
    Global Const $VK_4 = 34
    Global Const $VK_5 = 35
    Global Const $VK_6 = 36
    Global Const $VK_7 = 37
    Global Const $VK_8 = 38
    Global Const $VK_9 = 39
    Global Const $VK_A = 41
    Global Const $VK_B = 42
    Global Const $VK_C = 43
    Global Const $VK_D = 44
    Global Const $VK_E = 45
    Global Const $VK_F = 46
    Global Const $VK_G = 47
    Global Const $VK_H = 48
    Global Const $VK_I = 49
    Global Const $VK_J = '4A'
    Global Const $VK_K = '4B'
    Global Const $VK_L = '4C'
    Global Const $VK_M = '4D'
    Global Const $VK_N = '4E'
    Global Const $VK_O = '4F'
    Global Const $VK_P = 50
    Global Const $VK_Q = 51
    Global Const $VK_R = 52
    Global Const $VK_S = 53
    Global Const $VK_T = 54
    Global Const $VK_U = 55
    Global Const $VK_V = 56
    Global Const $VK_W = 57
    Global Const $VK_X = 58
    Global Const $VK_Y = 59
    Global Const $VK_Z = '5A'
    Global Const $VK_L_WIN = '5B'
    Global Const $VK_R_WIN = '5C'
    Global Const $VK_APP = '5D'
    Global Const $VK_NUMPAD0 = 60
    Global Const $VK_NUMPAD1 = 61
    Global Const $VK_NUMPAD2 = 62
    Global Const $VK_NUMPAD3 = 63
    Global Const $VK_NUMPAD4 = 64
    Global Const $VK_NUMPAD5 = 65
    Global Const $VK_NUMPAD6 = 66
    Global Const $VK_NUMPAD7 = 67
    Global Const $VK_NUMPAD8 = 68
    Global Const $VK_NUMPAD9 = 69
    Global Const $VK_MULTIPLY = '6A'
    Global Const $VK_ADD = '6B'
    Global Const $VK_SEPERATOR = '6C'
    Global Const $VK_SUBSTRACT = '6D'
    Global Const $VK_DECIMAL = '6E'
    Global Const $VK_DIVIDE = '6F'
    Global Const $VK_F1 = 70
    Global Const $VK_F2 = 71
    Global Const $VK_F3 = 72
    Global Const $VK_F4 = 73
    Global Const $VK_F5 = 74
    Global Const $VK_F6 = 75
    Global Const $VK_F7 = 76
    Global Const $VK_F8 = 77
    Global Const $VK_F9 = 78
    Global Const $VK_F10 = 79
    Global Const $VK_F11 = '7A'
    Global Const $VK_F12 = '7B'
    Global Const $VK_F13 = '7C'
    Global Const $VK_F14 = '7D'
    Global Const $VK_F15 = '7E'
    Global Const $VK_F16 = '7F'
    Global Const $VK_F17 = '80H'
    Global Const $VK_F18 = '81H'
    Global Const $VK_F19 = '82H'
    Global Const $VK_F20 = '83H'
    Global Const $VK_F21 = '84H'
    Global Const $VK_F22 = '85H'
    Global Const $VK_F23 = '86H'
    Global Const $VK_F24 = '87H'
    Global Const $VK_NUMLOCK = 90
    Global Const $VK_SCROLL_LOCK = 91
    Global Const $VK_L_SHIFT = 'A0'
    Global Const $VK_R_SHIFT = 'A1'
    Global Const $VK_L_CTRL = 'A2'
    Global Const $VK_R_CTRL = 'A3'
    Global Const $VK_L_MENU = 'A4'
    Global Const $VK_R_MENU = 'A5'
    Global Const $VK_PLAY = 'FA'
    Global Const $VK_ZOOM = 'FB'
    Global Const $VK_OFF = 'DF'
    Global Const $VK_COMMA = 'BC'
    Global Const $VK_POINT = 'BE'
    Global Const $VK_PERIOD = 'BE'
    Global Const $VK_PLUS = 'BB'
    Global Const $VK_MINUS = 'BD'
    ;other:
    Global Const $VK_OTHER_1 = 'BA' ;==> :;
    Global Const $VK_OTHER_2 = 'BF' ;==> /?
    Global Const $VK_OTHER_3 = 'C0' ;==> `~
    Global Const $VK_OTHER_4 = 'DB' ;==> [{
    Global Const $VK_OTHER_5 = 'DD' ;==> ]}
    Global Const $VK_OTHER_6 = 'DC' ;==> \|
    Global Const $VK_OTHER_7 = 'DE' ;==> '"

    1,038 downloads

       (0 reviews)

    0 comments

    Submitted

  2. FreeText.au3

    Create Free Style Text Anywhere... as many as you want

    ...with Color and Animation!

    Be sure to see the demo scripts here... http://www.autoitscript.com/forum/index.php?showtopic=72294&st=51


    ENJOY!!!
    Valuater
    8)

    6,111 downloads

       (1 review)

    0 comments

    Updated

  3. Prospeed Games Pack

    5 protable Prospeed games. Read the help file for instructions

    2,677 downloads

       (0 reviews)

    0 comments

    Updated

  4. GDI Invite System

    This simple system allows you to easily submit leads on your GDI Invite page

    1. Set the .cvs file you wish to use and the starting line number.
    2. Set the HotKeys you wish to use to import the information.
    3. Open your GDI website to the *Invite* page.
    4. Click the *Press When Ready* button.

    ... Yes. it's just that simple!!!


    GDI Website and Info


    Valuater
    8)

    2,759 downloads

       (1 review)

    0 comments

    Updated

  5. opengl32.au3

    1,460 downloads

       (0 reviews)

    0 comments

    Submitted

  6. Email Sender

    Features
    -Supports Attachments
    -Also Secure SMTP mail (GMail).

    4,533 downloads

       (1 review)

    0 comments

    Updated

  7. USB Write Proctector

    Description:


    6,220 downloads

       (2 reviews)

    1 comment

    Submitted

  8. Win Xp Recycle Bin Renamer

    Description: Rename windows xp recycle bin, you can also add rename context item in recycle bin.

    1,999 downloads

       (1 review)

    0 comments

    Submitted

  9. Auto Shutdown

    got a younger brother...annoying parent....or snoopy cat? make your computer automatically shut down unless they enter in the correct username and password...

    2,216 downloads

       (1 review)

    0 comments

    Submitted

  10. Sleep until a further date

    I remember about 5 months or so ago someone was asking if there was a way to sleep until a specific time (Date) then run the script...I wrote this up for him, but forgot to post it sleep.gif hope this helps someone, cause its useless to me tongue.gif



    you can push it further by adding year in there too, but thats kind of useless tongue.gif...also, it may be benaficial to you if you made it => rather than =

    heres another way to use the func



    #include<Misc.au3>Global $Month = 12Global $Day = 28Global $Hour = 21Global $Minute = 49_Sleep($Month, $Day, $Hour, $Minute)Func _Sleep($Month = @MON, $Day = @MDAY, $Hour = @HOUR, $Minute = @MIN) Do If _IsPressed('10') And _IsPressed('be') Then; Shift + > MsgBox(0, "", "Working!") ExitLoop EndIf ; MsgBox(0, "", @MON & ":" & @MDay & ":" & @HOUR & ":" & @MIN) Until $Month = @MON And $Day = @MDAY And $Hour = @HOUR And $Minute = @MIN MsgBox(0, "", "Works")EndFunc ;==>_Sleep

    1,202 downloads

       (1 review)

    0 comments

    Updated

  11. s!mpL3 LAN Messenger

    I started working on this program in the summer of 2008 then I stopped cause I faced some problems I couldn't overcome back then. Now that I've practiced more and have become a better scripter/programmer I'm releasing the program to the public to get some opinions. I know it's not a new concept but it's the first program I started besides some small stuff I did just for practice! I won't post the source code yet because it's still under construction, although I'm sure I've posted early stages of the code with bugs in the past in some topic...
    What I wanted was a simple, small, serverless program that would work without installation cause I wanted it for where I work, so I ended up with this!
    I have attached some images of various versions, also visit the forum thread.
    The package includes s!mpL3 LAN Messenger and the full change log.
    Current version 2.9.9.1! [04/07/2019]
    Check the Change Log below!
     
     
    http://www.autoitscript.com/forum/index.php?showtopic=88782
     
     
     
    Read the license before using this software.
     

    5,023 downloads

       (2 reviews)

    0 comments

    Updated

  12. MyPCTweet - Use Twitter to Control Your PC

    No Password or Personal info needed, it works with the "Account Name"

    Easy to use... Just download and read the Simple Instructions.

    This Lite Version is completely Free.

    Example... "@MyPCTweet Message#I Love My Twins!!#"

    and that's it!!

    over 150+ run commands available here

    You can Command as many computers as you want with "Just One Tweet"

    Enjoy!!

    Valuater
    8)

    ** For More Information, See the Complete MyPcTweet Q & A Forum Thread **

    Not associated with twitter

    2,251 downloads

       (1 review)

    0 comments

    Updated

  13. IE Builder

    See Forum for all info...

    http://www.autoitscript.com/forum/index.php?showtopic=19368&view=findpost&p=133767


    Enjoy!!
    8)

    14,104 downloads

       (1 review)

    0 comments

    Updated

  14. AutoIt DLL

    Somehow people always find it difficult to create DLLs and call them from AutoIt. Just open this solution in Visual Studio, follow the (2 ) instructions, and hit compile.

    4,468 downloads

       (2 reviews)

    0 comments

    Submitted

  15. DDEML

    Functions for Microsoft DDEML
    (Dynamic Data Exchange Management Library)

    AutoIt required: 3.3.0.0
    License: GNU/GPL

    Further information in the forum.

    4,708 downloads

       (1 review)

    0 comments

    Updated

  16. AutoItObject

    AutoItObject is a library for AutoIt that implements the creation of custom objects and something like object-oriented programming for your scripts.

    It is licensed under the terms of Artistic License 2.0.
    The copyright-holders are: trancexx, ProgAndy, monoceres, and Kip

    For more information, visit the forum thread and the project page.
    Please, report bugs and any other issues at our issue tracker.

    This download is not alywas up to date. The most recent version can be found here

    3,067 downloads

       (1 review)

    0 comments

    Updated

  17. TinyBackupBox

    Do a backup of a folders list

    1,898 downloads

       (1 review)

    0 comments

    Updated

  18. Shut8Down

    Gives you Power controls on taskbar in window 8


    ____r2dak (Frustrated Window 8 User)

    985 downloads

       (1 review)

    0 comments

    Updated

  19. handEval.dll

    Based on the plugin for two pluss two poker evaluation, found in this forum (rebuilt dll because of wrong return from 5 and 6 hand evaluation):

    706 downloads

       (0 reviews)

    0 comments

    Submitted

  20. Finished Task Shutdown

    Lists windows and according to your preferences, waits for a window or process to close, and then shuts down the computer.
    For anyone who doesn't have the download window,
    in "about:config", set "browser.download.manager.useWindow" to "true".
    Source: https://developer.mozilla.org/en-US/docs/Download_Manager_preferences
    "browser.download.manager.useWindow".

    964 downloads

       (2 reviews)

    0 comments

    Updated

  21. cfxUDF_mod.au3

    A modified version of cfxUDF.au3, originally created by Seeker and Universalist.

    730 downloads

       (0 reviews)

    0 comments

    Submitted

×
×
  • Create New...