Messages - jgpaiva [ switch to compact view ]

Pages: prev1 2 3 4 [5] 6 7 8 9 10 ... 919next
21
JGPaiva's GridMove and Ahk Tools / Re: Gridmove Top Right Corner issue
« on: November 07, 2013, 02:04 PM »
Hi,

Please correct me if I'm wrong, but I think you refer to top-left corner of the window and not the top-right corner. That is, you're referring to the one that has the icon of the application and no the one with the close button. Is this right?
Actually, GridMove was designed to ignore that portion of the icon, but maybe it's miscalibrated?

22
Hi,
I have edited your original post to attach the file to the post instead of using an external host which may die at any moment.

23
General Software Discussion / Re: memory use and reason
« on: September 16, 2013, 12:48 PM »
I'm not sure about the Windows version, but the Mac version does this constantly. I have to routinely kill it, to keep it from taking over the computer (which isn't hard, given that it's a Mac, i.e. a severely underpowered PC :P ).

24
Ah, I see your problem. Adding to an existing grid won't work, because the elements overlap completely and the elements with smaller indexes will always have priority.
You need to use triggers for your grids. When you omit the "Grid" part of the configuration, it creates a grid and a trigger which are exactly the same. However, it doesn't need to be like this. Here's a simple example:

[Groups]

  NumberOfGroups = 2

[1]
  TriggerTop    = [Monitor1Top]
  TriggerRight  = [Monitor1Left] + [Monitor1Width]  /2
  TriggerBottom = [Monitor1Top]  + [Monitor1Height] /4
  TriggerLeft   = [Monitor1Left]

  GridTop    = [Monitor1Top]
  GridRight  = [Monitor1Left] + [Monitor1Width]  /2
  GridBottom = [Monitor1Top]  + [Monitor1Height] /2
  GridLeft   = [Monitor1Left]

[2]
  TriggerTop    = [Monitor1Top] + [Monitor1Height] /4
  TriggerRight  = [Monitor1Left] + [Monitor1Width]  /2
  TriggerBottom = [Monitor1Top]  + [Monitor1Height] /2
  TriggerLeft   = [Monitor1Left]

  GridTop    = [Monitor1Top]
  GridRight  = [Monitor1Left] + [Monitor1Width]  /2
  GridBottom = [Monitor1Top]  + [Monitor1Height]
  GridLeft   = [Monitor1Left]

25
i have a small question if i would like to make 3 separate 1920x1080 windows (since its 3 monitors as 1 = 5980x1080) would i divide this in 1/3? to be able to place the windows in such a way?
That's simple :) Something like this?

[Groups]
  NumberOfGroups = 12

[1]
  TriggerTop    = [Monitor1Top]
  TriggerRight  = [Monitor1Left] + [Monitor1Width]  /3*1
  TriggerBottom = [Monitor1Top]  + [Monitor1Height]
  TriggerLeft   = [Monitor1Left] + [Monitor1Width]  /3*0

[2]
  TriggerTop    = [Monitor1Top]
  TriggerRight  = [Monitor1Left] + [Monitor1Width]  /3*2
  TriggerBottom = [Monitor1Top]  + [Monitor1Height]
  TriggerLeft   = [Monitor1Left] + [Monitor1Width]  /3*1

[3]
  TriggerTop    = [Monitor1Top]
  TriggerRight  = [Monitor1Left] + [Monitor1Width]  /3*3
  TriggerBottom = [Monitor1Top]  + [Monitor1Height]
  TriggerLeft   = [Monitor1Left] + [Monitor1Width]  /3*2

Pages: prev1 2 3 4 [5] 6 7 8 9 10 ... 919next
Go to full version