Some very basic scripts
first , we will start with launching apps and opening folders using AHK.
for example , if I want to open chrome on clicking WIN+C , i will write the script as -
#c:: run Chrome;
if this doesn't work , try -
#c:: run C:\program files\google\chrome\chrome.exe
and if I want to open a folder or a file on clicking WIN+f , the script will be as follows
#f:: run D:\files\software; this is for opening a folder
#f:: run D:\files\data\songs\1.mp3; this is for opening a file
or if you wan to send a string or some text ,
#m:: send text; replace text with the string you desire.
here are some basic scripts for reference -
for example , if I want to open chrome on clicking WIN+C , i will write the script as -
#c:: run Chrome;
if this doesn't work , try -
#c:: run C:\program files\google\chrome\chrome.exe
and if I want to open a folder or a file on clicking WIN+f , the script will be as follows
#f:: run D:\files\software; this is for opening a folder
#f:: run D:\files\data\songs\1.mp3; this is for opening a file
or if you wan to send a string or some text ,
#m:: send text; replace text with the string you desire.
here are some basic scripts for reference -
Comments
Post a Comment