Open Side Menu Go to the Top
Register
PlaceMint: Window Positioning Tool PlaceMint: Window Positioning Tool

01-13-2009 , 06:32 PM
PlaceMint: Window Positioning Tool Quote
01-13-2009 , 07:41 PM
I am trying to get Notepad and Notepad++ to work (which starts w/ the doc title, but I want all docs to be moved to a certain spot). I'm sure it's pretty simple but looking through here I can't figure it out. The length of the doc titles won't be constant. Is there another link that explains this or am I just being an idiot?

Ty.
PlaceMint: Window Positioning Tool Quote
01-13-2009 , 08:09 PM
I'm not sure, I'm really just learning this stuff, but for now you should be able to use this for notepad...

Code:
\s-\sNotepad$
I'm not sure about notepad++ cause of the "+" symbols...tho I suppose you could simply use...

Code:
Notepad
...for both (np and np++). I guess it's an uncommon enough term that it would be okay to just do that, at least until someone comes up w/ something better for you.
PlaceMint: Window Positioning Tool Quote
01-13-2009 , 08:22 PM
Quote:
Originally Posted by Chipp
I'm not sure, I'm really just learning this stuff, but for now you should be able to use this for notepad...

Code:
\s-\sNotepad$
I'm not sure about notepad++ cause of the "+" symbols...tho I suppose you could simply use...

Code:
Notepad
...for both (np and np++). I guess it's an uncommon enough term that it would be okay to just do that, at least until someone comes up w/ something better for you.
First code doesn't move Notepad or Notepad++ windows. I tried just Notepad earlier, doesn't work. I also tried \s-\sNotepad cause I wasn't sure if that's what you meant, but that didn't work either. \s-\Notepad says Invalid regular expression

I really appreciate the help.
PlaceMint: Window Positioning Tool Quote
01-13-2009 , 08:47 PM
Weird, both are working for me w/ Notepad (I don't have np++). I guess double-check everything if you haven't already, or just wait for thug or somebody to help.

And np, I've been meaning to learn a little about this anyway.
PlaceMint: Window Positioning Tool Quote
01-13-2009 , 09:11 PM
Ok, sorry, both work w/ Notepad, I just suck. Not Notepad++ though. I don't understand why "Notepad" works for Notepad but not Notepad++. The Notepad doc that moved had other characters before "Notepad" and it still worked w/ just Notepad (maybe it's because the characters are after? or maybe it's looking for words only not just part of the word?).

I can't just create another and put it in the same slot for Notepad++ because it says Invalid regular expression: parsing "Notepad++" - Nested quantifier +.
PlaceMint: Window Positioning Tool Quote
01-13-2009 , 09:24 PM
Quote:
Originally Posted by a nonymous
maybe it's because the characters are after?
This won't matter afaik. It would've w/ the first expression I posted, cause the "$" symbol basically means "ends w/" (and while we're at it, "^" basically means "begins w/").

Quote:
or maybe it's looking for words only not just part of the word?).
Yea, I think that's it. And as you experienced, the + symbols bring up an issue, and I'm not sure how to deal w/ it yet.
PlaceMint: Window Positioning Tool Quote
01-13-2009 , 11:59 PM
Quote:
Originally Posted by Chipp
This won't matter afaik. It would've w/ the first expression I posted, cause the "$" symbol basically means "ends w/" (and while we're at it, "^" basically means "begins w/").



Yea, I think that's it. And as you experienced, the + symbols bring up an issue, and I'm not sure how to deal w/ it yet.
try \+ if you mean a +, because normaly the + means one or more of the previous character in regex's like t+ means one or more t's. If you put a backslash in front of it, it treats it as a normal plus character.
Also, I recomand http://regexpal.com/ for testing your regex's.
PlaceMint: Window Positioning Tool Quote
01-14-2009 , 12:11 AM
Quote:
Originally Posted by EazyDoesIt
try \+ if you mean a +, because normaly the + means one or more of the previous character in regex's like t+ means one or more t's. If you put a backslash in front of it, it treats it as a normal plus character.
Also, I recomand http://regexpal.com/ for testing your regex's.
Tried Notepad\+\+ and Notepad/+/+, didn't work.
PlaceMint: Window Positioning Tool Quote
01-14-2009 , 12:14 AM
"Notepad\+\+" does match "Notepad++". Make sure you don't have any stray spaces in your expression string as that can cause problems.
PlaceMint: Window Positioning Tool Quote
01-14-2009 , 12:40 AM
Thanks Eazy, that's quite helpful.
PlaceMint: Window Positioning Tool Quote
01-14-2009 , 12:50 AM
Quote:
Originally Posted by TheIrishThug
"Notepad\+\+" does match "Notepad++". Make sure you don't have any stray spaces in your expression string as that can cause problems.
After checking to make sure I had everything right about 10 times, I deleted the group and created another w/ the same settings and it immed worked (guess I should have tried deleting/recreating earlier).

Ty all for the help.
PlaceMint: Window Positioning Tool Quote
01-14-2009 , 12:05 PM
Excellent software, thanks a lot.

Is there a way to have a hotkey to move a table from one group to another?
i would like to have 2 groups: group A with 20+ slots in cascade and group B with 4 slots in order to have the below setup:

a
a
a
a B B
a B B
a

the reason to use 2 groups is to be able to use the ripple function on both group and only 2 hotkeys to transfer the table from one group to the other.
PlaceMint: Window Positioning Tool Quote
01-14-2009 , 01:11 PM
There is no to move a window to a different group. If you have two groups that use the same regular expression, there is no guarantee that windows will be placed in the group that appears first.
PlaceMint: Window Positioning Tool Quote
01-14-2009 , 02:04 PM
didn't see cake listed in the REg list
PlaceMint: Window Positioning Tool Quote
01-16-2009 , 04:50 PM
ok - it's important to understand that I am pretty clueless with most of this. How do I modify a regex list for Cake poker? After that I think I can muddle through
PlaceMint: Window Positioning Tool Quote
01-16-2009 , 10:32 PM
Quote:
Originally Posted by hoosiertim
ok - it's important to understand that I am pretty clueless with most of this.
Same here, trying to get this to work with iPoker and don't really know what to do. Do I need AHK to run this? This is what I have for the moment;

http://s5.tinypic.com/2n72psx.jpg

I just want something simple like 9tiled or a stack, with the lobby on the 2nd monitor.
PlaceMint: Window Positioning Tool Quote
01-16-2009 , 11:03 PM
Quote:
Originally Posted by hoosiertim
ok - it's important to understand that I am pretty clueless with most of this. How do I modify a regex list for Cake poker? After that I think I can muddle through
Hi,

I can make the regex for you. I would need a little bit of help from you, because I don't feel like installing cake poker. I have made a post earlier about requesting regex's, I have quoted it below.

Quote:
Requesting regular expressions
To make the regex I need the window title form the table (or lobby), so I know what to aim for. The easiest way to copy the window title is with Autohotkey's windowspy. It can be downloaded here: http://www.autohotkey.com/download/
Then start window spy, activate the window you want the title from. A lot of information will appear in windowspy. Just Copy the title bar. Send that information along with brief information telling me what poker site it is from and what game type by PM or post it here. It is important that you do this while logged into your poker account, because the window title might be different. If the title includes your username, replace it by "username" before you send it, so you don't make your username public.
If you want regex's for a site that is not yet included. please include window titles for all different games and one from the lobby (one when logged in and one when not yet logged in if that one is different). Most importantly No limit holdem, omaha and limit holdem. Also try including the other games and different kind of tournaments and SNGs (the title bar is what matters). Please for new sites send requests that cover all game types on that site. Also I have already made regex's for skins from boss, crypto and prima/micro. If you want a regex for an other skin from those networks, that would be fairly easy since they should be pretty similar to the other skins. I kinda like making these regex's. Also it would be cool if PlaceMint would cover all the sites (and all the games played on them). So I'm happy to do this. However I do expect some feedback if they work or not. And if not I would also like the window titles they don't work on.
PlaceMint: Window Positioning Tool Quote
01-17-2009 , 05:32 AM
Im testing placemint with FTP, figured out how to make the slots on both monitors but only the lobby snaps in the slots. I put it in Slot5(topleft screen2) but whenever I close the 'Configure window groups' it moves it back to Slot1(topleft screen1). How do I get the tables to go in Slot1 to 4 and the lobby to stay in Slot5? Thank you and hope that make sense.
PlaceMint: Window Positioning Tool Quote
01-17-2009 , 08:08 AM
Cancel the last post I figured it out. Couldn't get it to work with FTP but everything is fine with iPoker. Wonderful program, thank you very much TheIrishThug.
PlaceMint: Window Positioning Tool Quote
01-17-2009 , 02:59 PM
thanks eazy - i will do it from home this evening
PlaceMint: Window Positioning Tool Quote
01-17-2009 , 08:47 PM
Stars 6max tables seem to work fine but I cannot get heads up tables to work. can anybody help?

EDIT: Can't get the lobby to work either

Last edited by LT22; 01-17-2009 at 09:14 PM.
PlaceMint: Window Positioning Tool Quote
01-18-2009 , 12:07 AM
Quote:
Originally Posted by LT22
Stars 6max tables seem to work fine but I cannot get heads up tables to work. can anybody help?

EDIT: Can't get the lobby to work either
Here you go, an updated regex for pokerstars tables:
Code:
(\s-\s(No\sLimit|Pot\sLimit|Limit)\s(Hold'em|Omaha\sH/L|Omaha|Stud H/L|Stud|Razz|5-Card\sDraw|Triple\sDraw\s2-7)\s-\sBlinds\s\$?[\d,.]+/\$?[\d.,]+\s(Ante\s\$?[\d.,]+)?(\s-\sLogged\sIn\sas\s.+)?$|\s-\s\$?[0-9]+(|\.[0-9][0-9])/\$?[0-9]+(|\.[0-9][0-9])\s(Ante\s\$?[\d.]+\s)?(Play\sMoney\s)?-\s(No\sLimit|Pot\sLimit|Limit)\s(Hold'em|Omaha\sH/L|Omaha|Stud H/L|Stud|Razz|5-Card\sDraw|Triple\sDraw\s2-7)(\s-\s1\son\s1)?(\s-\sLogged\sIn\sas\s.+)?$)
And the lobby:
Code:
^PokerStars\sLobby
PlaceMint: Window Positioning Tool Quote
01-18-2009 , 04:33 AM
ty very much everything working smooth now
PlaceMint: Window Positioning Tool Quote
01-18-2009 , 04:47 AM
Quote:
Originally Posted by EazyDoesIt
Hi,

I can make the regex for you. I would need a little bit of help from you, because I don't feel like installing cake poker. I have made a post earlier about requesting regex's, I have quoted it below.
PM sent with pics
PlaceMint: Window Positioning Tool Quote

      
m