Open Side Menu Go to the Top
Register
Quick Questions & Answers Thread Quick Questions & Answers Thread

12-28-2010 , 09:44 AM
I'd like some help with Juk's Postleftclick please.

At present I am using the following:
Code:
#IfWinActive ahk_class PTIODEVICE
xbutton1::
MouseGetPos HereX, HereY


{
Click 475, 470
Click 345,424

}
Mousemove %HereX%, %HereY%,
return
#IfWinactive
to send a couple of clicks to iPoker tables. I realise I need to change my mouse coordinates to reflect the fact that clicks are sent in relation to the client area not the window.

I'd like to know how I adapt the Juk's Rocks code
Code:
;Juks rocks
; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
;       window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
postLeftClick(x, y, win, activate=1) {
ifEqual, activate, 1, WinActivate, ahk_id%win%
PostMessage, 0x201, 0x0001, ((y<<16)^x),, ahk_id%win%
PostMessage, 0x202 , 0, ((y<<16)^x),, ahk_id%win%
}

; postLeftClick...
plc(x, y, table_id, activate=1) {
postLeftClick(x, y, table_id, activate)
}
to do the same as my code above.

Window Info
Title: MyUsername: Haren (No DP) - Texas Hold'em, No limit - $0.25/$0.50
Class: PTIODEVICE
Process: casino.exe
Unique ID: 0x50a4a and different table 0xc0cd2
Process ID: 4880

All help gratefully received, thank you.
Quick Questions &amp; Answers Thread Quote
12-28-2010 , 11:05 AM
Quote:
Originally Posted by fozzy71
Merry Xmas from my iPad. Fml I got a Mac.
Merry Christmas to all. I got a Mac book pro this year (I paid for it though ). I'm a reluctant Mac owner but so far so good. More developer friendly than Windows it seems.
Quick Questions &amp; Answers Thread Quote
12-29-2010 , 10:58 PM
Quote:
Originally Posted by Rhibee
I'd like some help with Juk's Postleftclick please.

At present I am using the following:
Code:
#IfWinActive ahk_class PTIODEVICE
xbutton1::
MouseGetPos HereX, HereY


{
Click 475, 470
Click 345,424

}
Mousemove %HereX%, %HereY%,
return
#IfWinactive
to send a couple of clicks to iPoker tables. I realise I need to change my mouse coordinates to reflect the fact that clicks are sent in relation to the client area not the window.

I'd like to know how I adapt the Juk's Rocks code
Code:
;Juks rocks
; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
;       window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
postLeftClick(x, y, win, activate=1) {
ifEqual, activate, 1, WinActivate, ahk_id%win%
PostMessage, 0x201, 0x0001, ((y<<16)^x),, ahk_id%win%
PostMessage, 0x202 , 0, ((y<<16)^x),, ahk_id%win%
}

; postLeftClick...
plc(x, y, table_id, activate=1) {
postLeftClick(x, y, table_id, activate)
}
to do the same as my code above.

Window Info
Title: MyUsername: Haren (No DP) - Texas Hold'em, No limit - $0.25/$0.50
Class: PTIODEVICE
Process: casino.exe
Unique ID: 0x50a4a and different table 0xc0cd2
Process ID: 4880

All help gratefully received, thank you.
Take a look at StarsPlanner (there's lots in that) or BetPot (the FoldIpoker(id) function for example) - most of my scripts use Juk's postleftclick in some form or another, and betpot in particular does: get id from table under mouse x/y -> send a postleftclick to certain coordinates on that table. There's lines in both scripts I can't recall properly now, something like "Winget, caption, something" and "winget, border, something" that return you the sdize of the window surroundings so you can subtract them to get client coordinates from table's wingetpos coordinates.
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 03:09 PM
Hi guys

Would appreciate a little AHK help.

Normally to identify a window I would use a combination of window title and ahk class. However, what happens if the window has no title? I'm specifically talking about iPoker dialogs asking if you want to join table, buyin etc.

What's the best way to identify these? I was thinking window size but some of them are the same. I guess pixel color matching would be another way but this is quite laborious as there are many of these dialogs.

Thanks
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 08:22 PM
Hi. Just started playing on ongame and already have some problems. Everyhing is good on full rings but when im playing 5max hud doesnt show stats for every players(usualy shows 3-4/5players). I have the newest version of hm. Thanks for any help
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 08:39 PM
Quote:
Originally Posted by piachu01
Hi. Just started playing on ongame and already have some problems. Everyhing is good on full rings but when im playing 5max hud doesnt show stats for every players(usualy shows 3-4/5players). I have the newest version of hm. Thanks for any help
ongame skins treat every table as 10 max

http://faq.holdemmanager.com/questio...Bwin%5CBetfair
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 09:58 PM
Quote:
Originally Posted by pokerash
What's the best way to identify these? I was thinking window size but some of them are the same. I guess pixel color matching would be another way but this is quite laborious as there are many of these dialogs.
http://www.autohotkey.com/docs/commands/ImageSearch.htm is prolly your best bet.

Juk
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 11:04 PM
Hello..need some help.

I just got autohotkey & betpot script going ona new comp, but I cant seem to get the scrollwheel to go up in smallblind increments like I used to have. I'm sure its simple...but so am I.

Thank you.
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 11:30 PM
it's in editing the betpot_default_hotkeys.ahk file. by default CTRL+scroll wheel will go in SB tho
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 11:49 PM
Quote:
Originally Posted by jukofyork
Thanks for letting me know. The problem with.that is it doesn't see covered windows. I know I ask a lot lol. Maybe I'll just have to deal with cycling tables.
Quick Questions &amp; Answers Thread Quote
12-30-2010 , 11:59 PM
If it's just for pop-up dialogs, I'd activate them to make sure they're uncovered then winwaitactive/run imagematch for something unique to them, then handle them. a pop-up shouldn't cause too much bother popping up, it probably did so by itself already anyway.
Quick Questions &amp; Answers Thread Quote
12-31-2010 , 12:03 AM
Tx dave..using CTRL does work but is there a way to set it so that it works without having to CTRL..? I used to play nl25 and the way I had it set it would go up in 5c increments..which was perfect.

Also I cant seem to get the pot bets to work using any of the buttons. I'm a bit of an idiot when it comes to things like this and its been so long since I did it I've forgotten.

Last edited by Joe Pike; 12-31-2010 at 12:16 AM. Reason: change 10c to 5c
Quick Questions &amp; Answers Thread Quote
12-31-2010 , 12:32 AM
Quote:
Originally Posted by _dave_
If it's just for pop-up dialogs, I'd activate them to make sure they're uncovered then winwaitactive/run imagematch for something unique to them, then handle them. a pop-up shouldn't cause too much bother popping up, it probably did so by itself already anyway.
Thanks will try
Quick Questions &amp; Answers Thread Quote
01-01-2011 , 01:16 PM
Are there any scripts that work for draw games? Like 5 Card draw, Badugi and 2-7TD.
Quick Questions &amp; Answers Thread Quote
01-01-2011 , 05:37 PM
Wondering if there are any scripts or apps like in that Athene multi-tabling video. The feature I'm looking for is the one where your stacking and then it moves the tables requiring action tiled on the side. You can see it at http://www.youtube.com/watch?v=wmzzjzfF6qM&t=2m14s

Sorry if this has been asked and answered a million times like it likely has.
Quick Questions &amp; Answers Thread Quote
01-01-2011 , 08:45 PM
Athene's is custom IIRC - but there's Greg's Stack & Tile in the Free subforum
Quick Questions &amp; Answers Thread Quote
01-01-2011 , 11:22 PM
hud tracks players on full tilt just fine, but doesn't follow players on stars... any advice would be greatly appreciated thanks for the help.
Quick Questions &amp; Answers Thread Quote
01-02-2011 , 05:49 AM
It might be easier to help you, if you told us which HUD you use? There are dedicated threads for PT3 and HM support.
Quick Questions &amp; Answers Thread Quote
01-03-2011 , 09:44 AM
does anyone know of any software that will show me what percentage my whole cards are in sklansky's range or some other hand quality system, in real time while i'm playing
Quick Questions &amp; Answers Thread Quote
01-03-2011 , 01:10 PM
Quote:
Originally Posted by secret line checks
does anyone know of any software that will show me what percentage my whole cards are in sklansky's range or some other hand quality system, in real time while i'm playing
That should be illegal at most (all?) sites.
Quick Questions &amp; Answers Thread Quote
01-03-2011 , 03:00 PM
For full tilt poker:
Is there an easy way to log my chat? I didn't see in the options, and I would like to save all my chat logs if possible. I could easily write a script that copy-pastes every line to a file, but I see how that might come off as suspicious (botting or w/e). I obviously don't want to put my account in danger.

I enjoy some table banter and I would like to save that for the future
Quick Questions &amp; Answers Thread Quote
01-04-2011 , 11:57 AM
i need a programmer that can build me a program that can take the hand histories from my room e convert it into a fulltilt/stars/whatever hand histories, so i can import them in HM. The hand histories are not saved on my hard disk but are on the poker room, so it may be a bit complex.
Where do u think should i search him?
Quick Questions &amp; Answers Thread Quote
01-04-2011 , 04:31 PM
I just got a new laptop and want to transfer all of my PokerStars and Full Tilt notes and settings over to it. How do I go about doing this?
Quick Questions &amp; Answers Thread Quote
01-04-2011 , 05:51 PM
I think it's just a matter of copying the notes.xml files in to the right folder on the new client. not exactly sure of the name "notes.xml" - but it's hopefully obvious when browsing the stars / tilt settings folders.
Quick Questions &amp; Answers Thread Quote

      
m