Labels

September 28, 2015

Sending commands to cmd in Autohotkey

we can send direct commands to cmd thru autohotkey and can get our work done at cmd level.
To send the command we can use the following code:

run cmd.exe
WinWait, ahk_exe cmd.exe
; to make some time difference in the execution of next line
Send cd Desktop{Enter} ; it will change the current directory to the Desktop.

September 23, 2015

Gitter Chat room for Launch-X

A new chat room for Launch-X is open. You can have an open discussion about the topic and express your thoughts to help to build the project better and together.
 
                                                      GITTER CHAT ROOM

September 18, 2015

Launch-X(v2.1.0)

#New Version Release:

What's new?
1. Totally new look and better GUI version.
2. A new shortcut setting window added.
3. New tray menu and icon added.
4. Better stability and some minor bug fixes.
5.No need to relaunch the app to see your new button added. Its added instantly now
 
To have look follow: Launch-X (v2.1.0)
 
 
Adjust Your Shortcut
Launch-X(v2.1.0)
 

September 15, 2015

Adding Background color to a Gui Button

 

Normally Buttons do not follow the general rule to set the color at their background, like,
 
      [ Gui,Add,Button, glabel x100 y140 cBlue,MyButton]
 
You can add a background color with the cute little trick, by using the Progress.Script can be found at the link given below:

                                            "Color your Button"

 
 

September 10, 2015

LaunchX (version release 1.2.01)

 
New version(v1.2.01):What's new?
1. Some minor bug fixes.
2. LunchX gets closed when you launch any application.
3. You are prompted a message on each addition a new button.
 


September 6, 2015

Dll Call in Autohotkey

 We can extend the limits of Ahk by using API's function.DLL functions can do much more which we cant do with Autohotkey commands. But we all get scared, when we encounter the Dll Call syntax in AutohotKey Help file.

A very simple and straight forward, to the point tutorial is given to give you a very basic idea about how DLL Call works. You can have a look on that.

                            My DLLcall() tutorial for beginners(Messagebox)               

September 2, 2015

CapsLock Status Tooltip

CapsLock Alert


An Autohotkey Script to give a Tooltip message on each press of CapsLock button.
Can be useful for the  laptops without the CapsLock Alert Light.
 
    For Script,Follow the Link: CapsLock Status ToolTip