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

07-16-2010 , 09:30 PM
here is the cake regex i am using, it still works for NL tables but not for fixed limit tables on cake poker, does any one know why?

^(Tournament#\d+:|[\w\.\s]+)\s((\(Turbo\s?|\(|)(\)|\)|6-(M|m)ax\)|1\son\s1\)|)\s?\d+|Buy-In\s\$[\d\.,]+\s:\sTable\s\d+)\s-\s(Limit|No Limit|Pot\sLimit)\s(Texas\sHold'em|Omaha)\s-\s\$?[\d\.,]+/\$?[\d\.,]+(\sAnte\s\$?[\d\.,]+)?$
PlaceMint: Window Positioning Tool Quote
07-16-2010 , 09:49 PM
Kwantum,
Your code has a slash before the pound sign. If you are setting the expression within the gui, like you should, you don't need to do any extra escaping of characters unless you writing a real regular expression and know how it works.

I should have explained some of how titles and classes work together. If you don't select any classes, it works exactly like it did before. If you only have classes selected, the window will match if it's window class matches any of the selected classes. If you are using both, the window is only matched if it matches one of the classes AND one of the titles.

Mylife0115,
Post some example window titles of the tables that are not being matched and someone can try to fix the expression.
PlaceMint: Window Positioning Tool Quote
07-16-2010 , 10:04 PM
Yeah, I put the slash in because I thought maybe # signs had to be escaped. It seems to work both ways, regardless.

So in my player note example, I can't really have FTP Player Notes (Title RegEx) and HEM Player Notes (Class RegEx) in the same window group?

Based on your description of how it works, HEM Player Notes won't be recognized because I have no way of predicting the title (it's just the player name).

FTP windows all seem to use the same class: QWidget

Is there any way to have a checkbox added under Settings that will allow for "Or" behavior when Title and Class RegEx are both in use for a window group? Instead of the default behavior where one of the Title and Class RegEx expressions have to be matched?

Thanks
PlaceMint: Window Positioning Tool Quote
07-16-2010 , 10:17 PM
Yeah, it might be a good idea to let that be configurable as I was not thinking that people would need to use them independently.
PlaceMint: Window Positioning Tool Quote
07-17-2010 , 08:19 AM
Quote:
Originally Posted by Mylife0115
here is the cake regex i am using, it still works for NL tables but not for fixed limit tables on cake poker, does any one know why?

^(Tournament#\d+:|[\w\.\s]+)\s((\(Turbo\s?|\(|)(\)|\)|6-(M|m)ax\)|1\son\s1\)|)\s?\d+|Buy-In\s\$[\d\.,]+\s:\sTable\s\d+)\s-\s(Limit|No Limit|Pot\sLimit)\s(Texas\sHold'em|Omaha)\s-\s\$?[\d\.,]+/\$?[\d\.,]+(\sAnte\s\$?[\d\.,]+)?$
thanks.

The window title of the tables that don't work is: St.Moritz (Turbo, 6-max) 11671 - Limit Texas Hold'em - $1/$2
PlaceMint: Window Positioning Tool Quote
07-17-2010 , 08:41 AM
Wiiiiiii am trying this for the first time and I really like it. Only took me ~2 hours to setup ... Beta 3 seems to be working fine for me on PokerStars btw.

However, it would be great if you could exclude slots from being a part of "Ripple Forward".

I like to Stack Tables but have deep tables tiled, but occasionally I use slots for pulling tables out with important hands.

So I'd like Slots 1,2,3 to be my deep tiled tables, Slot 4 to be my stack, and for all these to have ripple forward in effect. But slots 5,6 to keep free only for when I want to look at a hand, and for them not to get instantly moved back into my stack.

Is this already possible, and if not is it something you think you could implement?
PlaceMint: Window Positioning Tool Quote
07-17-2010 , 08:49 AM
Code:
^(Tournament#\d+:|[\w\.\s]+)\s(\(?((Turbo\s?)?[\s,]*(6-(M|m)ax|1\son\s1)?\))?\s?\d+|Buy-In\s\$[\d\.,]+\s:\sTable\s\d+)\s-\s(Limit|No Limit|Pot\sLimit)\s(Texas\sHold'em|Omaha)\s-\s\$?[\d\.,]+/\$?[\d\.,]+(\sAnte\s\$?[\d\.,]+)?$
Try that, it looks like the coma between Turbo and 6-max was new.
PlaceMint: Window Positioning Tool Quote
07-17-2010 , 08:53 AM
theMBK,
That is not possible and is the reason Ripple Forward was added to the system tray menu. You can run with it off, but when you need to clean up you windows, you click that menu option. This will do one refresh of the windows with Ripple Forward enabled and then turn it off again.
PlaceMint: Window Positioning Tool Quote
07-17-2010 , 09:29 AM
Quote:
Originally Posted by TheIrishThug
theMBK,
That is not possible and is the reason Ripple Forward was added to the system tray menu. You can run with it off, but when you need to clean up you windows, you click that menu option. This will do one refresh of the windows with Ripple Forward enabled and then turn it off again.
Ok cool that's a decent compromise.

Any chance of a hotkey to Ripple Forward ?... I play with XBox Controller and having to right click an icon in the system tray is a bit of a hindrance mid-grind
PlaceMint: Window Positioning Tool Quote
07-17-2010 , 11:24 AM
Quote:
Originally Posted by TheIrishThug
Code:
^(Tournament#\d+:|[\w\.\s]+)\s(\(?((Turbo\s?)?[\s,]*(6-(M|m)ax|1\son\s1)?\))?\s?\d+|Buy-In\s\$[\d\.,]+\s:\sTable\s\d+)\s-\s(Limit|No Limit|Pot\sLimit)\s(Texas\sHold'em|Omaha)\s-\s\$?[\d\.,]+/\$?[\d\.,]+(\sAnte\s\$?[\d\.,]+)?$
Try that, it looks like the coma between Turbo and 6-max was new.
I tried and it still doesn't work for only 6 max limit table as before.

6max No limit is working, it's windows title is: Seville (6-max) 11488 - No Limit Texas Hold'em - $1/$2
9 max Fixed limit is working, it's windows title is: St.Moritz (Turbo) 11042 - Limit Texas Hold'em - $1/$2


6 max Fixed limit IS NOT working, it's windows title is: St.Moritz (Turbo, 6-max) 11671 - Limit Texas Hold'em - $1/$2

thanks a lot
PlaceMint: Window Positioning Tool Quote
07-18-2010 , 12:48 AM
theMBK,
Yes, I can build that in.

Mylife0115,
I'm not sure what to say, the expression matches all three of the titles you just posted. Make sure you don't have any extra spaces before or after the expression.
PlaceMint: Window Positioning Tool Quote
07-18-2010 , 12:32 PM
Quote:
Originally Posted by TheIrishThug
theMBK,
Yes, I can build that in.

Mylife0115,
I'm not sure what to say, the expression matches all three of the titles you just posted. Make sure you don't have any extra spaces before or after the expression.
it is working now after I add a space after [\s, ]
so it should be [\s, ]*(6-(M|m)ax....

I would like to make a small donation and I am sure some where in this thread has posted how to do so. However to save me time to go through the thread again, PM me or send me an email please.
PlaceMint: Window Positioning Tool Quote
07-18-2010 , 03:07 PM
\s is the code for white space, so adding the space directly should not make a difference. Thanks for wanting to make a donation, all sizes are accepted. The PM has been sent.
PlaceMint: Window Positioning Tool Quote
07-18-2010 , 03:45 PM
Great software, thanks very much! Expect a little donation for me for sure after I get it working the way I want.

One issue I'm having as I try to set it up for the first time, I made groups for the stars and full tilt lobby window so they appear at the slot I defined for them, and they will happily conform to staying in that slot. But when I made my own RegEx for the Ladbrokes Poker Lobby and defined a slot where I want that lobby to go, the Ladbrokes window won't conform to that slot unlike the full tilt/stars lobbies. I'm pretty sure I didn't screw up defining the ladbrokes lobby regex since it shows up in the main placement window (as show in pic below)



Everything for stars and full tilt lobbies are configured with their slots in exactly the same way as I've done for the ladbrokes lobby, except the other 2 lobbies will go to their slot but the ladbrokes one won't. halp!
PlaceMint: Window Positioning Tool Quote
07-18-2010 , 04:29 PM
The window is showing in the tree, so that means the regex is working correctly. Make sure you have Move and Size checked for the Ladbrokers group. There isn't much else that could be going wrong.
PlaceMint: Window Positioning Tool Quote
07-18-2010 , 07:20 PM
Those are checked, still won't get in the slot:/ Same thing is happening with the custom RegEx I made for another poker site lobby that's not on the "RegexList_Poker8.zip" list.

edit: tried something else that didn't fix the problem. which was to make sure im using the exact lobby window dimensions for the slot and not being a few pixels off

Last edited by Born2DogBaby; 07-18-2010 at 07:30 PM.
PlaceMint: Window Positioning Tool Quote
07-19-2010 , 05:15 PM
I am running v2.1 of PlaceMint and struggling to make it work with FTP Rush tables.

Do I need to update to a newer version of PlaceMint, is there a way to make it work with these rush tables. Thanks!
PlaceMint: Window Positioning Tool Quote
07-19-2010 , 07:39 PM
Could someone please help me with a reg ex code for all 45-man tourneys on PokerStars.

Want them separate to my main stack hence reason for needing the code.

I actually had edited it to the point it was working but I guess I didn't save it and now I forget what I did.

Pretty sure the "(3.25|6.50|12|27|38)" bit is the problem...

^\$((3.25|6.50)(12|27|38))\sNL\sHold'em\s\[Turbo\,\s45\sPlayers\]\s\-\s(Tournament\s?[\d,.]+\sTable\s?[\d,.]+(\s-\s(Blinds|Stakes))?\s\$?[\d,.]+/\$?[\d.,]+(\sAnte\s\$?[\d.,]+))
PlaceMint: Window Positioning Tool Quote
07-19-2010 , 08:33 PM
Quote:
Originally Posted by theMBK
Could someone please help me with a reg ex code for all 45-man tourneys on PokerStars.

Want them separate to my main stack hence reason for needing the code.

I actually had edited it to the point it was working but I guess I didn't save it and now I forget what I did.

Pretty sure the "(3.25|6.50|12|27|38)" bit is the problem...

^\$((3.25|6.50)(12|27|38))\sNL\sHold'em\s\[Turbo\,\s45\sPlayers\]\s\-\s(Tournament\s?[\d,.]+\sTable\s?[\d,.]+(\s-\s(Blinds|Stakes))?\s\$?[\d,.]+/\$?[\d.,]+(\sAnte\s\$?[\d.,]+))
Should have mentioned the titles appear like this:

$xx NL Hold'em [Turbo, 45 Players] - Tournament 123456789 Table x - Blinds $xxx/$xxx Ante $xx
PlaceMint: Window Positioning Tool Quote
07-19-2010 , 10:23 PM
Born2DogBaby,
Check your PM box for a message with how to contact me so I can do more detailed debug work.

tagWAG,
Rush tables have always been funky and I haven't had time to look at them since I've been working on v3.0.

theMBK,
It was almost all the way there.
Code:
^\$((3\.25|6\.50|12|27|38))\sNL\sHold'em\s\[Turbo\,\s45\sPlayers\]\s\-\s(Tournament\s?[\d,\.]+\sTable\s?[\d,\.]+(\s-\s(Blinds|Stakes))?\s\$?[\d,\.]+/\$?[\d,\.]+(\sAnte\s\$?[\d,\.]+))
PlaceMint: Window Positioning Tool Quote
07-19-2010 , 10:46 PM
Code:
[0-9]\s\-\s\sLogged\sIn\sAs\s[a-zA-Z0-9\s]{4,}$
You can try this for rush. It works for me but you will have to check this expression and the regular FTP one, as when you sit out the win title changes so you need both.
PlaceMint: Window Positioning Tool Quote
07-20-2010 , 09:01 AM
Quote:
Originally Posted by madlion
Code:
[0-9]\s\-\s\sLogged\sIn\sAs\s[a-zA-Z0-9\s]{4,}$
You can try this for rush. It works for me but you will have to check this expression and the regular FTP one, as when you sit out the win title changes so you need both.
Hi madlion

Thanks, i tried this with no luck - where did you get that bit of code from? I just want to play $2 nl 6m thats "Swiftly Tilting" and $2 nl fr thats "Hermes".

Very happy to send a donation if you can help me get this working.

Thanks
PlaceMint: Window Positioning Tool Quote
07-20-2010 , 09:10 AM
Could you disable windows aero snap (maximises a window when its dragged near the corner of the screen)

Its fair to say that when this program runs.. random maximising of windows is anoying!
PlaceMint: Window Positioning Tool Quote
07-20-2010 , 09:43 AM
PM me and I can have a quick look on teamviewer, I don't understand why its fine for me and not for others. Donate to TheIrishThug obv, I'm just happy to help
PlaceMint: Window Positioning Tool Quote
07-20-2010 , 09:44 AM
Quote:
theMBK,
It was almost all the way there.
Code:
^\$((3\.25|6\.50|12|27|38))\sNL\sHold'em\s\[Turbo\,\s45\sPlayers\]\s\-\s(Tournament\s?[\d,\.]+\sTable\s?[\d,\.]+(\s-\s(Blinds|Stakes))?\s\$?[\d,\.]+/\$?[\d,\.]+(\sAnte\s\$?[\d,\.]+))?
Tytyty
PlaceMint: Window Positioning Tool Quote

      
m