This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tab:: | |
msgbox Ok | |
return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance,Force | |
SplitPath,A_AhkPath,,dir | |
dir.="\AutoHotkeyU32.exe" | |
FileSelectFile,file,,,Select the AHK you wish to run in 32 bit,*.ahk | |
run,%dir% "%file%" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.001.19 | |
Fixed: | |
-When adding Custom Highlight Text it will re-order the lists in the Theme window. | |
0.001.18 | |
Added: | |
-Restore Current File. AHK Studio backs up every time you run/save a file. All of them are in the %projectdir%\backup directory. Restore Current File is an easy way to interface with it. Works well with Full Backup to clean up all of the old junk files. | |
Fixed: | |
-Colors for the treeviews were not changing properly when switching themes. | |
0.001.17 | |
Added: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance,Force | |
v:=[],OnMessage(0x4E,"notify"),OnMessage(0x5,"arrange"),vversion:=new xml("version","lib\version.xml") | |
startup(),filecheck(),v.lastlist:=[],misc:=new xml("misc") | |
settings:=new xml("settings","lib\settings.xml"),keywords(),files:=new xml("files"),positions:=new xml("positions","lib\positions.xml"),access_token:=settings.ssn("//access_token").text | |
idea:=new xml("idea","lib\ideas.xml") | |
global v,sci,settings,commands,files,positions,vversion,access_token,misc,idea | |
menu(),defaults(),gui(),hotkeys(),titlechange() | |
ControlFocus,Scintilla1,% aid() | |
if settings.ssn("//ideas").text{ | |
ideas() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance,Force | |
IniRead,access_token,settings.ini,access,token,0 | |
if !access_token{ | |
InputBox,access_token,Please enter your access token from Github,Without an access token this will not work. | |
if (ErrorLevel||access_token="") | |
ExitApp | |
IniWrite,%access_token%,settings.ini,access,token | |
} | |
Gui,+hwndmain | |
Gui,Add,Edit,w600 h500 WantTab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info:="Code to post goes here" ;Change this to create the new text for the Gist | |
access_token:="" ;Your Github access token goes here if you want to publish it to your Gist list | |
filename:="mygit.txt" ;change this to whatever you want your file name to be | |
desc:="my description" ;This is where you would have a description for your Gist | |
post_gist(info,access_token,filename,desc) | |
return | |
post_gist(info,access_token,filename,desc){ | |
info:=RegExReplace(info,"([" Chr(34) "\\])","\$1") | |
for a,b in {"`n":"\n","`t":"\t","`r":""} | |
StringReplace,info,info,%a%,%b%,All |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance,Force | |
v:=[],OnMessage(0x4E,"notify"),OnMessage(0x5,"arrange"),vversion:=new xml("version","lib\version.xml") | |
startup(),filecheck(),v.lastlist:=[],misc:=new xml("misc") | |
settings:=new xml("settings","lib\settings.xml"),keywords(),files:=new xml("files"),positions:=new xml("positions","lib\positions.xml"),access_token:=settings.ssn("//@access_token").text | |
idea:=new xml("idea","lib\ideas.xml") | |
global v,sci,settings,commands,files,positions,vversion,access_token,misc,idea | |
menu(),defaults(),gui(),hotkeys(),titlechange() | |
ControlFocus,Scintilla1,% aid() | |
if settings.ssn("//ideas").text{ | |
ideas() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
url:="https://api.github.com/gists" | |
info:="Code to post goes here" ;Change this to create the new text for the Gist | |
access_token:="" ;Your Github access token goes here if you want to publish it to your Gist list | |
filename:="mygit.txt" ;change this to whatever you want your file name to be | |
desc:="my description" ;This is where you would have a description for your Gist | |
info:=RegExReplace(info,"([" Chr(34) "\\])","\$1") | |
StringReplace,info,info,`r,,All | |
StringReplace,info,info,`n,\n,All | |
StringReplace,info,info,`t,\t,All | |
http:=ComObjCreate("WinHttp.WinHttpRequest.5.1") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance,force | |
Menu,Tray,Add | |
Menu,Tray,Add,Grab,grab | |
return | |
grab: | |
Hotkey,LButton,select,On | |
Hotkey,RButton,Select,On | |
Hotkey,^F1,getinfo,On | |
return | |
getinfo: |