pj4533/PokerNowGrabber

HUD with pokeit.co

Opened this issue · 2 comments

Hi!

Could you give some information about that 'fake' window, please?

I am trying to use the pokeit.co HUD with PokerNowGrabber, but it does not work.
I tried the HUD with PokerStars and it is working great. Maybe it needs some configuration in my pokeit Client.

Thanks! :)

The fake window works by overlaying an invisible window on top of your chrome browser (that should be cross HUD usable), however the issue is in how exactly the HUD finds that window. Basically, apps usually just iterate thru a list of window names (which is how PokerTracker does it). So I name the window title similar to how PokerStars does it, as shown here:

window.title = "PokerNowGrabber - Table: \(gameId)"

So then I can use the internal PokerStars HUD in PokerTracker, and when it looks for the PokerStars window, it instead sees my fake overlay on Chrome, and shows the HUD.

The question is how is PokeIt.co HUD looking for that window. First thing I would check is that they work with PokerStars. If so, they likely look for that window in a similar way, so its possible some small tweak could make it work? Not really sure.

thanks! I will look after it :)