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

01-05-2011 , 11:19 AM
hi -- on a MS intelliMouse Optical there is a left side and right side button. It performs the function of (alt + Left) to back page or forward page on a browser. Does anyone know the syntax to remap so when I hit the button it can be F1?

(____fill in the blank)::F1

thanks (couldn't find anything via google search)
Quick Questions & Answers Thread Quote
01-05-2011 , 12:53 PM
Dave, hello. Where can I find the latest version of betpot? because overcards betpot page was updated half year ago
Quick Questions & Answers Thread Quote
01-05-2011 , 03:11 PM
Idaho - Xbutton1 / Xbutton2

naTpuk - there's a few little edits posted in the betpot thread to make it work again. depends on site. I really need to make a new version soon.
Quick Questions & Answers Thread Quote
01-06-2011 , 06:58 AM
Can anyone tell me if there is a way on how to configure the HEM Reports filters to find out the number of times I hit the flop?

I tried but couldn't manage to isolate those hands where I actually hit the flop

It would be interesting to know since sometimes you run good/bad not just by being lucky in All ins but also by never/always hitting the flop for extended periods of time
Quick Questions & Answers Thread Quote
01-06-2011 , 10:34 AM
Quote:
Originally Posted by jacket882
Can anyone tell me if there is a way on how to configure the HEM Reports filters to find out the number of times I hit the flop?
......
I think you need to be a lot more specific, if you want to filter for these situations. There isn't anything that is quite so general. The Filter > Edit > sub-tabs are very powerful, if you take the time to learn them.

filter > edit > hand values

[ ] any flop hand value

Select (Ctrl+Click for multiples) how 'you hit the flop'

save and close
Quick Questions & Answers Thread Quote
01-06-2011 , 12:43 PM
Quote:
Originally Posted by fozzy71
I think you need to be a lot more specific, if you want to filter for these situations. There isn't anything that is quite so general. The Filter > Edit > sub-tabs are very powerful, if you take the time to learn them.

filter > edit > hand values

[ ] any flop hand value

Select (Ctrl+Click for multiples) how 'you hit the flop'

save and close
Looks like we had a bit of a pop at this here http://forums.holdemmanager.com/cust...-hit-flop.html, dunno if this helps?
Quick Questions & Answers Thread Quote
01-06-2011 , 01:26 PM
thx
Quick Questions & Answers Thread Quote
01-06-2011 , 02:04 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.
try this, note you might have to change the coordinates slightly since PostLeftClick uses client area whereas Click uses full window coords

Code:
xbutton1::
  MouseGetPos, HereX, HereY, mouseWin
  WinGetClass, mouseWinClass, ahk_id %mouseWin%
  if (mouseWinClass = "PTIODEVICE")
  {
    PostLeftClick(475, 470, mouseWin)
    PostLeftClick(345, 424, mouseWin)
  }
return
untested
Quick Questions &amp; Answers Thread Quote
01-09-2011 , 04:05 PM
sorry guys im a newbie. I use pokershortcuts and have a 30 inch monitor i have 3 rows 9 tables tiled with a layer overlapping to fit 18 tables .My question is my table with required action gets higlighted but if i do not want to act on that table what software script can i use to skip that action and move to the next table pending action. I f too many tables get highlighted i lose my concentration. Im not familiar with table ninja but is it a better pending action scrip then fulltilt shortcuts. thanks in advance
Quick Questions &amp; Answers Thread Quote
01-10-2011 , 05:19 AM
Looking for a super simple AHK script, will ship $5 to whoever can do it. PM me if you create the script.

I want it to remap the following keys:

F2 = Fn + F2 (Pressing F2 would be as if one had pressed the function key and F2)
F3 = Fn + F3
F4 = Fn + F4
F5 = Fn + F5
F6 = Fn + F6

And the opposite as well:
Fn + F2 = F2
Fn + F3 = F3
Fn + F4 = F4
Fn + F5 = F5
Fn + F6 = F6

Thanks!
Quick Questions &amp; Answers Thread Quote
01-10-2011 , 01:11 PM
Quote:
Originally Posted by Antidote
Looking for a super simple AHK script, will ship $5 to whoever can do it. PM me if you create the script.

I want it to remap the following keys:

F2 = Fn + F2 (Pressing F2 would be as if one had pressed the function key and F2)
F3 = Fn + F3
F4 = Fn + F4
F5 = Fn + F5
F6 = Fn + F6

And the opposite as well:
Fn + F2 = F2
Fn + F3 = F3
Fn + F4 = F4
Fn + F5 = F5
Fn + F6 = F6

Thanks!
the only difficulty is in finding out what the keycode is for your function Fn button. i found it using the directions here:
http://www.autohotkey.com/docs/KeyList.htm#SpecialKeys

basically just create a script with these lines:

Code:
#Persistent
#InstallKeybdHook

return
run the script, and press for example, 'z' and then your Fn button. open up the AHK script window by double clicking the icon in the tray, and then go to View->Key History, you should see your 'z' key press and then an 'unknown' key, youll want to get the numbers from the VK and SC column.

then to remap you can check out these:

http://www.autohotkey.com/docs/misc/Remap.htm
http://www.autohotkey.com/docs/commands/Send.htm#vk

Code:
SC163::a
that remaps my Fn button to send 'a' in its place
Quick Questions &amp; Answers Thread Quote
01-10-2011 , 07:30 PM
I'm trying to edit an AHK for merge poker. I've got everything working except I want to be able to use the fold hotkey to check, if no bets have been made.

If you click fold, merge pops up a window: "You can check instead of folding, Do you want to check? Yes / No"

That window is:
ClassNN: SWT_Window01
ahk_class: #32770

And the yes button can be clicked at 60, 105 within the window.

How do I autodetect if this window pops up, and auto click yes?
Quick Questions &amp; Answers Thread Quote
01-10-2011 , 08:30 PM
Read the StarsPlanner source, there's a ton of such pop-up detect & close routines at the end of the script. With a class #32770 that's standard Windows, so hopefully the buttons can be pressed by name - but even if not as you've noted the coordinates will do the job. Only problem is if it has readable and unique title text, but I guess it will do and you just didn't mention it explicitly.
Quick Questions &amp; Answers Thread Quote
01-10-2011 , 10:53 PM
I have a question about Tableninja Full tilt. I have been experiencing bet size flickering since day 1. I would put in a certain amount, then a second or two later, it would change to a random amount. Any way to fix it? I use windows XP with overlapping, tile tables.
It's not really that much of a big deal but it's still a little annoying.

This problem doesnt happen on Tableninja stars though.
Quick Questions &amp; Answers Thread Quote
01-11-2011 , 12:57 AM
Quote:
Originally Posted by greg nice
the only difficulty is in finding out what the keycode is for your function Fn button. i found it using the directions here:
http://www.autohotkey.com/docs/KeyList.htm#SpecialKeys

basically just create a script with these lines:

Code:
#Persistent
#InstallKeybdHook

return
run the script, and press for example, 'z' and then your Fn button. open up the AHK script window by double clicking the icon in the tray, and then go to View->Key History, you should see your 'z' key press and then an 'unknown' key, youll want to get the numbers from the VK and SC column.

then to remap you can check out these:

http://www.autohotkey.com/docs/misc/Remap.htm
http://www.autohotkey.com/docs/commands/Send.htm#vk

Code:
SC163::a
that remaps my Fn button to send 'a' in its place
Thanks Greg, I shipped you $5 on FT.
Quick Questions &amp; Answers Thread Quote
01-11-2011 , 07:40 AM
sorry guys im a newbie. I use pokershortcuts and have a 30 inch monitor i have 3 rows 9 tables tiled with a layer overlapping to fit 18 tables .My question is my table with required action gets higlighted but if i do not want to act on that table what software script can i use to skip that action and move to the next table pending action . I f too many tables get highlighted i lose my concentration. Im not familiar with table ninja but is it a better pending action scrip then fulltilt shortcuts. thanks in advance
todddukejr is online now Report Post Reply With Quote
Quick Questions &amp; Answers Thread Quote
01-11-2011 , 03:55 PM
This is actually a hardware question, but figured people in here would know the answer:

Would mass-tabling lag a computer? I just bought this notebook a few months ago, but it was really inexpensive, so it's not super powerful.

I'm not running HEM alongside. Just wondering if PokerStars alone, could be making me lag. Thanks.
Quick Questions &amp; Answers Thread Quote
01-11-2011 , 04:00 PM
Without running a HUD or import, it's unlikely Stars alone will lag even a modest computer these days. Check task manager and see if all your RAM is used up - if it's paging to disk anything will lag.
Quick Questions &amp; Answers Thread Quote
01-11-2011 , 04:02 PM
Quote:
Originally Posted by todddukejr
sorry guys im a newbie. I use pokershortcuts and have a 30 inch monitor i have 3 rows 9 tables tiled with a layer overlapping to fit 18 tables .My question is my table with required action gets higlighted but if i do not want to act on that table what software script can i use to skip that action and move to the next table pending action . I f too many tables get highlighted i lose my concentration. Im not familiar with table ninja but is it a better pending action scrip then fulltilt shortcuts. thanks in advance
todddukejr is online now Report Post Reply With Quote
I doubt table ninja FT is any different, but I'm not sure. skipping a table with pending action is tricky imo.
Quick Questions &amp; Answers Thread Quote
01-11-2011 , 04:03 PM
Thanks, _dave_.
Quick Questions &amp; Answers Thread Quote
01-12-2011 , 04:39 PM
Quote:
Originally Posted by _dave_
I doubt table ninja FT is any different, but I'm not sure. skipping a table with pending action is tricky imo.
dave thanks for the response, its tricky because my setup is a combo of tiling and a little cascading.I would completely tile but screens are to small.
3 more questions
1. is there a simple script on fulltilt for just auto time bank.I have been using pokershortcuts for this but im getting big time lag.
2. my computer says im very low on disk d space.I have alot of hands in my holdem manager data base, i purged them and did a vaccum clean up but this didnt help my space.Im not playing on stars anytime soon so how to i export my stars hand and put it somewhere where i can save info to free up space and when i need them eventually i can re import them.
3. your screen name of fulltilt so i can send small donation.
Quick Questions &amp; Answers Thread Quote
01-13-2011 , 12:41 PM
Hey Guys! Do anyone know how to make a change at Poker table ratings, to not show the stats of a plaeyr?

Ty!
Quick Questions &amp; Answers Thread Quote
01-13-2011 , 07:10 PM
Did Pokerstars change something in their last update, so that MouseMove and MouseClick in AHK didn't function anymore? Or it is a problem by me/my computer?
Quick Questions &amp; Answers Thread Quote
01-13-2011 , 07:39 PM
I doubt any program can prevent those two commands from working since they simulate real interactions. Most likely your system.
Quick Questions &amp; Answers Thread Quote
01-13-2011 , 09:05 PM
hmm, thats really strange, because the problem occurs only on pokerstars windows and only since pokerstars update 2 days before. But thanks for your answer _dave_
Quick Questions &amp; Answers Thread Quote

      
m