StackAndTile Forums
Table Include/Exclude Title Text - Printable Version

+- StackAndTile Forums (https://www.stackandtile.com/forum)
+-- Forum: General (https://www.stackandtile.com/forum/forumdisplay.php?fid=1)
+--- Forum: Support Help (https://www.stackandtile.com/forum/forumdisplay.php?fid=2)
+--- Thread: Table Include/Exclude Title Text (/showthread.php?tid=246)



Table Include/Exclude Title Text - statico - 02-25-2012

Is it possible to put OR and AND operators on these? If not, it would be nice because on some sites i cannot find a string that defines a table across multiple game types. I then have to choose something generic like 'Table' which interferes with many of the sites windows, e.g. 'Table Options'.


RE: Table Include/Exclude Title Text - SaT_Admin - 02-25-2012

They are regular expressions. You can use this guide here:
http://www.autohotkey.com/docs/misc/RegEx-QuickRef.htm

The OR operator is simply a |, so for example:

Code:
table_include_title_text=NLHE|PLO

matches both "NLHE" in the titlebar or "PLO"

For the AND, its a little more complicated but I can help if you need it.