Search found 143 matches

by gallaxhar
19 May 2016, 10:01
Forum: Scripts and Functions (v1)
Topic: AHK Lookup Selection with Online Help Docs
Replies: 20
Views: 9651

Re: AHK Lookup Selection with Online Help Docs

I would wrap that F1 hotkey in
#IfWinActive ahk_exe SciTE.exe
#IfWinActive
so you can still use F1 help in other program like autocad etc

otherwise that is a huge improvement, I'm going to link to that one in the OP since mine is useless now
by gallaxhar
19 May 2016, 09:53
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

#IgnoreWin10Borders, On might conflict with win7 and before compatibility, if it forces winmove to always offset as if the script is running on win 10 so it shouldn't be a directive that executes before runtime probably buggy behavior fixes are always wished for, but that doesn't make them more wish...
by gallaxhar
19 May 2016, 09:36
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

Yes, others have, and you did provide one insight in one post, at the very beginning, about Windows 10, and about how the bug is in Windows API, yet Windows 10 seems to be functioning just fine with window-sizing, so you're mistaken, there is no bug for Window Sizing in windows 10. The behavior we a...
by gallaxhar
19 May 2016, 09:24
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

I'm not currently looking for a solution/workaround, even though they are welcome if anyone else stumbles on those solutions. This isn't an ask for help topic. I'm reporting the problem on WinMove/Windows 10 and arguing for why it should be fixed internally, whether or not that happens is not in my ...
by gallaxhar
19 May 2016, 09:04
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

@Bruttosozialprodukt While in theory that may seem like a good reason, a window that is 5 pixels in width each is an extreme case that is not really useful or the norm.. which should be obvious In real-world situations, you can activate another window (just about anything over 5 pixels in width) sim...
by gallaxhar
19 May 2016, 08:47
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

I didn't request any help, if I did, I'd post it in the Ask For Help section. This is a bug report. At least one developer is already aware of the weird behavior on windows 10 from using winmove (which I didn't know when I made the original thread). Now other people might become aware of it to, when...
by gallaxhar
19 May 2016, 08:28
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

quoting me with things I didn't actually say is pretty childish, I won't respond to you, even if your arguments are stupid
if you can actually respond with substance, rather than childish nonsense, maybe I'll invite you to the grown up table
by gallaxhar
19 May 2016, 08:12
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

what could be more important of a fix for Windows 10 users than the easy ability to size every single Windows 10 top-level window based on its useful, visible, frame (this is a universal mathematical offset apparently, minus the invisible frame)? Like really, name one new feature in ahk v2 that warr...
by gallaxhar
19 May 2016, 07:28
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

It doesn't make much sense for every individual ahk script, and every individual ahk-user to have to mathematically compensate for a universal phenomenon on Windows 10 top level windows. It only makes sense that AHK internally does this. When it doesn't, you offset the work the few have to do to mak...
by gallaxhar
19 May 2016, 07:04
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

WinMove isn't doing what its expected to do to the visible regions of the window, like it does in older versions of the OS At the same time it's not doing what native Windows 10 does to size/pos windows At the same time it's also not doing what I want it to do, but what I want is irrelevant. The int...
by gallaxhar
19 May 2016, 06:56
Forum: Scripts and Functions (v1)
Topic: AHK Lookup Selection with Online Help Docs
Replies: 20
Views: 9651

Re: AHK Lookup Selection with Online Help Docs

Yes there is a beautiful solution but I am struggling with arrays to understand how to implement it. The solution is like this: Take Nextron's script below to start with, F1:: AutoHotkeyCommands(q:=""){ static command url:="https://autohotkey.com/docs/commands/" If (q="") If !(q:=Trim(CtrlC()," `t`n...
by gallaxhar
19 May 2016, 06:46
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

Yes moving and snapping windows are different actions, which both result in a window being moved and/or resized The proof that it's not functioning properly is that currently WinMove leaves voidspaces when you try to make a window occupy certain regions, such as the left 25% of the screen width and ...
by gallaxhar
19 May 2016, 06:29
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

Microsoft added those padded invisible borders to the frames of windows, but they also implemented a way to handle those borders when you want to snap a window to the sides or quarter points, so that the improper side-effect having a void space never comes up natively. AHK brings this up because un...
by gallaxhar
19 May 2016, 05:42
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

How can a program reliably detect whether a window is partially invisible? By detecting the operating system and if it's a top level parent window (is my first guess) A_OSVersion https://autohotkey.com/docs/Variables.htm#OSVersion and Getparent https://msdn.microsoft.com/en-us/library/windows/deskt...
by gallaxhar
19 May 2016, 04:55
Forum: Scripts and Functions (v1)
Topic: AHK Lookup Selection with Online Help Docs
Replies: 20
Views: 9651

Re: AHK Lookup Selection with Online Help Docs

go here in chrome https://autohotkey.com/docs/commands/ click the INDEX button then start typing in the edit box below INDEX button you'll see the results kind of "filter" this is the functionality required then open up your script using jznizm stuff, run it and click the index button , and start ty...
by gallaxhar
19 May 2016, 04:47
Forum: Scripts and Functions (v1)
Topic: AHK Lookup Selection with Online Help Docs
Replies: 20
Views: 9651

Re: AHK Lookup Selection with Online Help Docs

Just a hint, I tried integrating jnizm's solution, but at the end discovered it breaks the javascript functionality of the index control on the documentation page, which is required for this script to work. I don't think using that solution will be easy to make work. There is a way to get a similar ...
by gallaxhar
19 May 2016, 03:15
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

I don't want to snap. I want to WinMove a window with potentially no voidspace except the taskbar, that is not always the same as snapping. Snapping using #{left} and the various other hotkeys would only work for a few cases. Furthermore, the Windows 10 snap hotkeys #{left} can be turned off indirec...
by gallaxhar
18 May 2016, 22:26
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

Windows 10 OS can correctly snap a window to the sides with no void space around the taskbar or right/left edge It can correctly snap to quarter-corners as well If a few internal API's take the invisible borders into account as the actual window, that is not the end of what Windows 10 does because i...
by gallaxhar
18 May 2016, 15:49
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

mouse-dragging a window to the sides on Windows 10 reveals the padding the window will have
but instead it appears windows does an extra-step that fixes this padding when you use the snap-behavior

Image
by gallaxhar
18 May 2016, 15:37
Forum: Bug Reports
Topic: WinMove is broken on Windows 10
Replies: 62
Views: 30404

Re: WinMove is broken on Windows 10

The coordinates may not be wrong, but the WinMove behavior is wrong If this is due to Windows 10 OS and not AHK, then in order to automate Windows 10 correctly AHK has to take extra (even optional for non-Windows 10 users) steps If they don't, they can only hope that Windows 10 OS changes to suit th...

Go to advanced search