ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > JGPaiva's GridMove and Ahk Tools

Maximize on second screen?

(1/1)

boersnoes:
Hi all,

I started using this nice utility today and made my own grid.
Everything is working rather nice except for one thing.
I would each of my screens (2) to have a square in the middle to maximize to that screen.
On the first screen no problem. The one on the second screen however shows up on the first screen.
I don't know if either the maximize to second screen is not working because it is hidden behind the one for the first screen (they are at the exact same position) or the functionality is not correct.

Here's the relevant part of the grid I made:

[6]
   TriggerTop    = [Monitor2Height] / 3
   TriggerRight  = [Monitor2Width] / 3 * 2
   TriggerBottom = [Monitor2Height] / 3 * 2
   TriggerLeft   = [Monitor2Width] / 3
   GridTop       = Maximize
   GridRight     = Maximize
   GridBottom    = Maximize
   GridLeft      = Maximize

PS: what forum markup is best for code? I used Teletype.

jgpaiva:
Actually, it's the Maximize that possibly isn't correctly implemented.
Currently, it maximizes the window on the monitor where the window is and not on the monitor where the mouse is.
I suggest that you use the following workaround:

--- ---[6]
   TriggerTop    = [Monitor2Height] / 3
   TriggerRight  = [Monitor2Width] / 3 * 2
   TriggerBottom = [Monitor2Height] / 3 * 2
   TriggerLeft   = [Monitor2Width] / 3
   GridTop       = [Monitor2Top]
   GridRight     = [Monitor2Right]
   GridBottom    = [Monitor2Bottom]
   GridLeft      = [Monitor2Left]

ps: there's a [Code][/Code] tag for posting code on the forum.

boersnoes:
Yes, that's what I first had, but that doesn't really maximize.
Thanks for the reply though.

Navigation

[0] Message Index

Go to full version