-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Office 365 pops up unexpectedly #2
Comments
Hmm, I noticed that the active window list has some windows that aren't visible. I filter them out by only using directly visible windows I think. That's the only thing I can think it possibly causing it, there's something in the background that gets triggered. It is a peculiar issue. I've noticed myself that parts of these shortcuts sometimes stop working then start again with different windows updates, heh. I'm on Win11 22H2 23451.1 Insider Preview and am |
Maybe there's a hidden office window that could be added to the list here: https://github.com/phazei/Win11AutoHotKeyFixes/blob/main/VD-move-window-with-desktop.ahk#L23 I'm guessing that's what that line is for. I say guessing because I'm exceptionally good at learning something for a specific purpose and then promptly entirely forgetting it. Pretty sure I knew what every line did when I wrote it. If you want to try it out, https://www.autohotkey.com/scite4ahk/ that's the best/only tool to let you debug AHK scripts and examine parameters as it runs. |
what commit of VD.ahk are you on ? a little debug script: "WinGetTitle and Style.ahk" f1::
WinGetTitle winTitle, A
WinGetClass className, A
WinGet processName, ProcessName, A
WinGet winStyle, Style, A
WinGet winExStyle, ExStyle, A
clipText:=winTitle "`n" className "`n" processName "`n" winStyle "`n" winExStyle
Clipboard:=clipText
ToolTip % clipText
Sleep 500
ToolTip
return try with ; move window to left and follow it
^#+left::VD.goToDesktopNum(VD.MoveWindowToRelativeDesktopNum("A", -1))
; move window to right and follow it
^#+right::VD.goToDesktopNum(VD.MoveWindowToRelativeDesktopNum("A", 1)) |
All these processes appear out of the blue. None was present before moving the Terminal Window using WinCtrlShiftArrow back and forth between the first and the second virtual desktop. My Windows version: |
Hello, thanks a lot for your repository! I use Windows 11 Pro 22H2, and I am experiencing super strange behavior when I move a window for a second time using WinCtrlShift and the arrow keys: The window carries just fine between the virtual desktops, but after the second movement, the Office 365 setup pops up! Of course, I can quickly close the popup, and even with this glitch moving windows between desktops is super easy instead of clicking on the taskbar with dragging and dropping.
Office 365 is already installed, and I am using it through my university subscription. I wonder if I am the only one experiencing this strange behavior. Am I missing something here? I am not a Windows power user, and I miss the shortcuts of the Linux desktop.
Thanks again.
The text was updated successfully, but these errors were encountered: