AHKCommandPicker VS CbAutoComplete

Compare AHKCommandPicker vs CbAutoComplete and see what are their differences.

AHKCommandPicker

An AutoHotkey (AHK) script that allows you to easily run AHK functions. Instead of having to remember what shortcut key maps to each of your AHK scripts, this displays a list of all your AHK functions and allows you to easily run them. (by deadlydog)

CbAutoComplete

Auto-completes typed values in an AHK ComboBox. (by Pulover)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
AHKCommandPicker CbAutoComplete
1 1
79 25
- -
6.3 10.0
7 months ago about 8 years ago
AutoHotkey AutoHotkey
MIT License The Unlicense
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

AHKCommandPicker

Posts with mentions or reviews of AHKCommandPicker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-08.
  • Help with AHK v2 - GUI with ComboBox - Adding "AutoComplete"
    2 projects | /r/AutoHotkey | 8 Feb 2023
    Background On my v1 journey, I eventually made so many hotkey functions that I started to run out of unused hotkeys. I was inspired by deadlydog/AHKCommandPicker, and recently by PowerToys Run, to create a minimalist GUI with a combobox of essentially script names to free up using more hotkeys by calling the GUI and typing in a function name.

CbAutoComplete

Posts with mentions or reviews of CbAutoComplete. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-08.
  • Help with AHK v2 - GUI with ComboBox - Adding "AutoComplete"
    2 projects | /r/AutoHotkey | 8 Feb 2023
    SetCapsLockState "Off" Hotkey "CapsLock", (*) => createGUI() initQuery := "Turtles" entriesList := ["Red", "Green", "Blue"] createGUI() { global QSGui QSGui := Gui("AlwaysOnTop -Resize +ToolWindow -Caption", "Debug GUI") QSGui.SetColor := 0x161821 QSGui.BackColor := 0x161821 QSGui.SetFont "s10 q5", "Fira Code" QSCB := QSGui.AddComboBox("vQSEdit w200", entriesList) QSCB.Text := initQuery QSCB.OnEvent "Change", (*) => AutoComplete(QSCB) QSBtn := QSGui.AddButton("default hidden yp hp w0", "OK") QSBtn.OnEvent "Click", (*) => processInput() QSGui.OnEvent "Close", (*) => QSGui.Destroy() QSGui.OnEvent "Escape", (*) => QSGui.Destroy() QSGui.Show "w222" } processInput() { QSSubmit := QSGui.Submit() ; Save the contents of named controls into an object. if QSSubmit.QSEdit { MsgBox(QSSubmit.QSEdit, "Debug GUI") initQuery := QSSubmit.QSEdit } QSGui.Destroy() } ; https://github.com/Pulover/CbAutoComplete ; Rewritten for AutoHotkey v2 AutoComplete(ComboBox) { ; CB_GETEDITSEL = 0x0140, CB_SETEDITSEL = 0x0142 if ((GetKeyState("Delete", "P")) || (GetKeyState("Backspace", "P"))) return MakeShort SendMessage(0x0140, 0, 0, , "ahk_id" ComboBox.Hwnd), &Start, &End try { if !ControlChooseString(ComboBox.Text, ComboBox) { ControlSetText ComboBox.Text, ComboBox PostMessage 0x0142, 0, MakeLong(Start, End), , "ahk_id " ComboBox.Hwnd } else PostMessage 0x0142, 0, MakeLong(Start, StrLen(ComboBox.Text)), , "ahk_id " ComboBox.Hwnd } MakeShort(Long, &LoWord, &HiWord) { LoWord := Long & 0xffff , HiWord := Long >> 16 } MakeLong(LoWord, HiWord) { return (HiWord << 16) | (LoWord & 0xffff) } }

What are some alternatives?

When comparing AHKCommandPicker and CbAutoComplete you can also consider the following projects:

intuiter - Globally available Vim like productivity application with a fancy mouse control. Home row keyboard mapping makes typing innovatively fast in everywhere

ImagePut - A core library for images in AutoHotkey. Supports AutoHotkey v1 and v2.

PuloversMacroCreator - Automation Utility - Recorder & Script Generator