Results 1 to 5 of 5

Thread: Autohotkey

  1. #1
    Bronze Member
    Join Date
    Mar 2009
    Age
    30
    Liked
    0 times
    Posts
    124

    Default Autohotkey

    This software can change the way you use your computer for daily and repititive work. Have a look here:

    Code:
    http://www.autohotkey.com/
    Install it, write a code in notepad, save it with .ahk extension.

    The help documentation of this is very good for learners with lots of small and easy to understand examples, that give you a rough idea about the features of this software.

    Just explore it a little and you will be benefitted beyond your imagination
    Have fun, when you begin making scripts, share your tiny scripts if you want to :clown:

  2. #2
    newprouser
    Guest

    Default

    yes , its indeed good. Altho i have not used it, i found some good programs available at 1 Hour Software by Skrommel - DonationCoder.com , which were written in autohotkey.

  3. #3
    Bronze Member
    Join Date
    Mar 2009
    Age
    30
    Liked
    0 times
    Posts
    124

    Default

    What i really like is the depth and control over the scripts made by you with this software, i used to download softwares for tiny things, and those softwares did everything except what i needed them to do.

    The scripts do exactly what you desire. eg, i usually forgot the important dates and birthdays, now i have a script (though it took little time to make it, as you have to type), that uses SplashImage, date and time functions of this software.

    It Splashes an image with text on that date, and it works like a champ, Now i complete fan of Autohotkey

  4. #4
    newprouser
    Guest

    Default

    Cool ,well u could upload a script or post some screen shots of your own program to give an idea for others

  5. #5
    Bronze Member
    Join Date
    Mar 2009
    Age
    30
    Liked
    0 times
    Posts
    124

    Default

    The contents of the message that splashes are a bit personal, but here is the script showing daily date and day.

    I hated to hover the mouse over the time at taskbar to know the current date and day.

    Script:

    Code:
    #Persistent
    clipboard = %A_DDDD%, %A_DD%, %A_MMMM%, %A_YYYY%
    SplashTextOn, 250 ,60 , Today's Date, %clipboard%
    WinMove, Today's Date, ,750, 0
    WinSet, AlwaysOnTop, Off, Today's Date
    These are just few lines and not a script or anything big, but definitely useful for me. Paste it in notepad and save it with .ahk extension (name the file anything you wish).

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •