-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
command first param to func outputVar\ ; #6 ; githubPages
- Loading branch information
1 parent
6a3123d
commit 5adebf9
Showing
8 changed files
with
502 additions
and
8 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
ahk_language/command first param to func outputVar/ArgIsVar in typeOfValidVarName obj.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
CATCH | ||
TRANSFORM | ||
STRINGLEFT | ||
GETKEYSTATE | ||
CONTROLGETFOCUS | ||
CONTROLGETTEXT | ||
CONTROLGET | ||
GUICONTROLGET | ||
STATUSBARGETTEXT | ||
INPUTBOX | ||
RANDOM | ||
INIREAD | ||
REGREAD | ||
DRIVESPACEFREE | ||
DRIVEGET | ||
SOUNDGET | ||
SOUNDGETWAVEVOLUME | ||
FILEREAD | ||
FILEREADLINE | ||
FILEGETATTRIB | ||
FILEGETTIME | ||
FILEGETSIZE | ||
FILEGETVERSION | ||
FILESELECTFILE | ||
FILESELECTFOLDER | ||
WINGETTITLE | ||
WINGETCLASS | ||
WINGET | ||
WINGETTEXT | ||
SYSGET | ||
ENVGET | ||
PIXELGETCOLOR | ||
INPUT | ||
FORMATTIME | ||
SORT | ||
IFINSTRING | ||
IFNOTINSTRING | ||
IFEQUAL | ||
IFNOTEQUAL | ||
IFGREATER | ||
IFGREATEROREQUAL | ||
IFLESS | ||
IFLESSOREQUAL |
18 changes: 18 additions & 0 deletions
18
ahk_language/command first param to func outputVar/in v2 commands
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
statusbargettext | ||
random | ||
iniread | ||
regread | ||
fileread | ||
filegetattrib | ||
filegettime | ||
filegetsize | ||
filegetversion | ||
wingettitle | ||
wingetclass | ||
wingettext | ||
sysget | ||
envget | ||
formattime | ||
sort | ||
|
||
pixelgetcolor |
36 changes: 36 additions & 0 deletions
36
ahk_language/command first param to func outputVar/manually filtered
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
TRANSFORM | ||
STRINGLEFT | ||
GETKEYSTATE | ||
CONTROLGETFOCUS | ||
CONTROLGETTEXT | ||
CONTROLGET | ||
GUICONTROLGET | ||
STATUSBARGETTEXT | ||
INPUTBOX | ||
RANDOM | ||
INIREAD | ||
REGREAD | ||
DRIVESPACEFREE | ||
DRIVEGET | ||
SOUNDGET | ||
SOUNDGETWAVEVOLUME | ||
FILEREAD | ||
FILEREADLINE | ||
FILEGETATTRIB | ||
FILEGETTIME | ||
FILEGETSIZE | ||
FILEGETVERSION | ||
FILESELECTFILE | ||
FILESELECTFOLDER | ||
WINGETTITLE | ||
WINGETCLASS | ||
WINGET | ||
WINGETTEXT | ||
SYSGET | ||
ENVGET | ||
PIXELGETCOLOR | ||
INPUT | ||
FORMATTIME | ||
SORT | ||
IFINSTRING | ||
IFNOTINSTRING |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
v2 commands: https://github.com/Lexikos/AutoHotkey_L-Docs/tree/v2/docs/commands | ||
|
||
remove these: | ||
|
||
IFEQUAL | ||
IFNOTEQUAL | ||
IFLESS | ||
IFLESSOREQUAL | ||
IFGREATER | ||
IFGREATEROREQUAL | ||
|
||
CATCH | ||
|
||
STRINGLEFT doesn't have v2 func: | ||
|
||
ok, so if in v2 commands | ||
|
||
PIXELGETCOLOR is special | ||
sysget, I don't understand | ||
Sort has custom function | ||
v1: | ||
Sort, MyVar, F IntegerSort D, | ||
IntegerSort(a1, a2) | ||
{ | ||
return a1 - a2 | ||
} | ||
v2: | ||
SortedString := Sort(String [, Options, Callback]) |
Oops, something went wrong.