Mr. Doge
Mr. Doge
using Microsoft Media Creation Tool, were you able to boot with Secure Boot enabled ? ___ if you went on Windows, did you try [Rufus](https://rufus.ie/en_US)? https://github.com/pbatard/rufus if yes, were you...
if "VD examples.ahk" works fine, then you got it VD.ahk was not meant to be ran, it was meant to be #Included by other scripts because I can't, I need...
I could literally send alt+tab, but that's probably slower than WinActivate, search: autohotkey get window below active window search: autohotkey get all windows in alt tab * Get last active...
https://github.com/FuPeiJiang/VD.ahk/tree/v2_port used https://github.com/FuPeiJiang/ahk_to_v2.ah2: pass [_VD.ahk](https://github.com/FuPeiJiang/ahk_to_v2.ah2/blob/main/_VD.ahk) through [bruh.ah2](https://github.com/FuPeiJiang/ahk_to_v2.ah2/blob/main/bruh.ah2) (it reads from `A_Clipboard` as input)
check out https://github.com/FuPeiJiang/VD.ahk/blob/class_VD/other%20examples/Task%20Switcher3.ahk or you could use `VD.getNameFromDesktopNum()`: I should have documented it when I added this function but was lazy / preoccupied by recreating a gui `VD.getNameFromDesktopNum(VD.getCurrentDesktopNum())` ___ you...
ty, I didn't know this feature existed It is recognized, but since it's on all desktops, there's no desktopNumber so `desktopOfWindow=""` and I've happened to filter out windows with no...
@grpawel [VD.ahk](https://github.com/FuPeiJiang/VD.ahk#readme) is a class you #Include it had no `#Include` inside, no `.dll` dependencies example usage: ```autohotkey #Include path\to\VD.ahk VD.createUntil(3) ;3 virtual desktops VD.PinWindow("ahk_exe explorer.exe") Numpad0::VD.TogglePinWindow("A") ;active window ```...
another solution (by [mzomparelli](https://github.com/mzomparelli/zVirtualDesktop/issues/59#issuecomment-317613971)) in autohotkey: https://github.com/FuPeiJiang/VD.ahk/blob/e74cfaa4a15a044a0ba58106b26b5927364947df/VD.ahk#L349-L356 ```autohotkey _SwitchDesktop(IVirtualDesktop) { ;activate taskbar before ;https://github.com/mzomparelli/zVirtualDesktop/issues/59#issuecomment-317613971 WinActivate, ahk_class Shell_TrayWnd WinWaitActive, ahk_class Shell_TrayWnd this._dll_SwitchDesktop(IVirtualDesktop) this._dll_SwitchDesktop(IVirtualDesktop) WinMinimize, ahk_class Shell_TrayWnd } ``` I Don't know...
@marium0505 another repo: [VD.ahk](https://github.com/FuPeiJiang/VD.ahk#readme) example: ```autohotkey #Include path\to\VD.ahk VD.PinWindow("ahk_exe explorer.exe") Numpad0::VD.TogglePinWindow("A") ;active window ``` this is a class, #include it https://github.com/FuPeiJiang/VD.ahk/blob/class_VD/VD.ahk ___ ```autohotkey ; "Show this window on all desktops"...
does this work without changing `result->pageSize = sysInfo.dwPageSize;` to `result->pageSize = old_header->OptionalHeader.SectionAlignment` ? `module->pageSize` is referenced multiple times, but now it's undefined because the call to `GetNativeSystemInfo(&sysInfo);` has been removed,...