View Single Post
  #840  
Old 04-11-2007, 11:53 AM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]

I've been able to get the script to work for me on Pokerstars, but I have the following issue. On my primary display, everything works as I expect it to. On my secondary display, only the scroll wheel works. The primary display is running in 32 bit mode, while the secondary display is running in 16 bit more. The 2nd video card is basically garbage and to run the screen at the desired resolution requires me to set it to no higher than 16 bit mode. Is there anything I can do to make this work with this setup?


[/ QUOTE ]

I suppose you'd have to make a second set of images for the second monitor and then alter the code to use the second set if the table is on monitor #2.

Edit: Just took a look at the code and I think this will work. Change the line

'PicDir := "StarsPics"'

which is about 1630 in my (dated) copy, to

PicDir := "StarsPics\" . ( ( x>=a_screenwidth || y>=a_screenheight ) ? "Monitor2" : "Monitor1" )

So now you have StarsPics\Monitor1\... & StarsPics\Monitor2\...
You'll have to create those folders and put the old set of images in Monitor1, and the new set of images in Monitor 2.
Good luck.
Reply With Quote