nice
another vim user
Search found 3161 matches
- 05 Mar 2021, 14:53
- Forum: Scripts and Functions
- Topic: Vim keybindings for File Explorer (explorer.exe)
- Replies: 1
- Views: 132
- 26 Feb 2021, 18:46
- Forum: Scripts and Functions
- Topic: MoveWindowUnderMouseCursor() with a hotkey
- Replies: 10
- Views: 503
Re: MoveWindowUnderMouseCursor() with a hotkey
The script: MoveWindowUnderMouseCursor(Except:="Progman WorkerW Shell_TrayWnd") { ; By SKAN on D38S/D38S Local ; @ autohotkey.com/boards/viewtopic.php?t=80416 MouseGetPos,,, hWnd WinGetClass, Class, % "ahk_id" . WinExist("ahk_id" . hWnd) If ( DllCall("IsZoomed", "Ptr",hWnd) || InStr(" " . Except . ...
- 20 Feb 2021, 20:07
- Forum: Gaming
- Topic: ControlClick not clicking in BlueStacks 5 Topic is solved
- Replies: 14
- Views: 351
Re: ControlClick not clicking in BlueStacks 5 Topic is solved
yeah the control hwnd will likely be different, but that shouldn't matter, you dont have to worry about that
it was just an idea, sometimes it works for some applications. other times, ControlClick just doesnt work at all, and you have to use normal Clicks
it was just an idea, sometimes it works for some applications. other times, ControlClick just doesnt work at all, and you have to use normal Clicks
- 20 Feb 2021, 09:24
- Forum: Gaming
- Topic: ControlClick not clicking in BlueStacks 5 Topic is solved
- Replies: 14
- Views: 351
Re: ControlClick not clicking in BlueStacks 5 Topic is solved
you can try sending WM_MOUSEMOVE beforehand, that works in some applications:
https://autohotkey.com/board/topic/96952-possible-controlclick-improve/
https://autohotkey.com/board/topic/96952-possible-controlclick-improve/
- 13 Feb 2021, 14:32
- Forum: AutoHotkey_H
- Topic: [Info] MD vs MT && Unicode vs ANSI
- Replies: 8
- Views: 2563
Re: [Info] MD vs MT && Unicode vs ANSI
where do i find this vcruntime140.dll to distribute with my app?
when i compile with vs2017 there is no .dll file inside the /win32w/bin/ output folders
also, if the user has both vcredist2015 and the vcruntime dll in the app folder, which takes precedence?
when i compile with vs2017 there is no .dll file inside the /win32w/bin/ output folders
also, if the user has both vcredist2015 and the vcruntime dll in the app folder, which takes precedence?
- 06 Feb 2021, 19:02
- Forum: Ask For Help
- Topic: help with Regex OR Topic is solved
- Replies: 4
- Views: 128
Re: help with Regex OR Topic is solved
thank you sirteadrinker wrote: ↑06 Feb 2021, 18:17Code: Select all
RegExMatch("84 $5", "\$\d+|\d+ \$(?!\d)", match) MsgBox, % match
- 06 Feb 2021, 17:49
- Forum: Ask For Help
- Topic: help with Regex OR Topic is solved
- Replies: 4
- Views: 128
help with Regex OR Topic is solved
i want a regex that will match both $5 or 5 $ but i want the first to always take precedence however when both are possible, it always matches the 2nd possibility, when i want to match the first: FoundPos := RegExMatch("84 $5", "(\$\d+|\d+ \$)", match) ;reversing the order of conditions fails too: ;...
- 02 Feb 2021, 17:06
- Forum: Ask For Help
- Topic: Potential bug AHK 1.1.33.02
- Replies: 3
- Views: 140
Re: Potential bug AHK 1.1.33.02
Got any insight on this? no bug, multiple errors in your script 1. the first hotkey routine automatically ends the autoexec portion of the script, and therefore has an implicit return. you should move this to the bottom of the script 2. #ifwinactive with the # is used for set the context for hotkey...
- 25 Jan 2021, 22:03
- Forum: Scripts and Functions
- Topic: GDI+ standard library 1.45 by tic
- Replies: 385
- Views: 145585
- 22 Jan 2021, 11:58
- Forum: General Discussion
- Topic: Another ahk solution, coffeescript to ahk
- Replies: 4
- Views: 853
Re: Another ahk solution, coffeescript to ahk
interesting
- 09 Jan 2021, 21:55
- Forum: AutoHotkey_H
- Topic: [Info] MD vs MT && Unicode vs ANSI
- Replies: 8
- Views: 2563
- 09 Jan 2021, 21:52
- Forum: Scripts and Functions
- Topic: Python-like Error System
- Replies: 3
- Views: 280
Re: Python-like Error System
interesting thank you
- 09 Jan 2021, 01:43
- Forum: Scripts and Functions
- Topic: Python-like Error System
- Replies: 3
- Views: 280
Re: Python-like Error System
for those of us who are not familiar with python, what new features / usability does this provide that normal ahk doesn't?
- 14 Nov 2020, 18:05
- Forum: Offtopic
- Topic: What keyboard you are using for AutoHotKey?
- Replies: 12
- Views: 459
Re: What keyboard you are using for AutoHotKey?
@guest3456 , I have same laptop, but different version "Lenovo TouchPad x130e", but it's super uncomfortable for keyboard. So I am using the cheap keyboard "ICAN wk-618" for over 5 years. But soon I will be changing to a mechanical keyboard. Touchpad's are not the same laptop at all. Thinkpad's are...
- 14 Nov 2020, 18:03
- Forum: Offtopic
- Topic: YouTube Ads
- Replies: 18
- Views: 3000
- 14 Nov 2020, 14:43
- Forum: Offtopic
- Topic: YouTube Ads
- Replies: 18
- Views: 3000
- 14 Nov 2020, 14:41
- Forum: Offtopic
- Topic: What keyboard you are using for AutoHotKey?
- Replies: 12
- Views: 459
- 12 Nov 2020, 10:35
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4493
- Views: 1070657
Re: « What's on your mind? »
hope everyone is ready to get rich next year with Bitcoin
i may build an AHK cryptocurrency just for fun
i may build an AHK cryptocurrency just for fun
- 23 Oct 2020, 06:01
- Forum: AutoHotkey v2 Development
- Topic: change from v1 to v2 - is it possible to get a whole list of all errors?
- Replies: 6
- Views: 1712
Re: change from v1 to v2 - is it possible to get a whole list of all errors?
you can try this, its old and definitely not up to date, but can maybe save some time: https://www.autohotkey.com/boards/viewtopic.php?t=25100 actually i think that converter still uses the old command syntax, and now in v2 its all functions just without the parens() and so all params are expression...
- 21 Oct 2020, 02:17
- Forum: Scripts and Functions
- Topic: TV_DragAndDrop - Drag & Drop function for TreeView controls (Updated Nov, 13, 2020)
- Replies: 20
- Views: 946