View Single Post
  #242  
Old 11-13-2006, 02:47 AM
Nortonesque Nortonesque is offline
Member
 
Join Date: Oct 2004
Posts: 58
Default Re: Stars Bet Pot AHK ?

[ QUOTE ]

I have an idea how this could be overcome, but I'm not sure if it woll work, so no promises - for now, set left monitor as primary and all monitors will work fine [img]/images/graemlins/smile.gif[/img]

dave.

[/ QUOTE ]
Seems like you just need to change the variable name in DigitSearch for negative coordinates -- something like this:
<font class="small">Code:</font><hr /><pre>
If ( lastXpos &gt;= 0 )
{
c%lastXpos% = %t%
}
Else
{
nonneg := -lastXpos
neg_c%nonneg% = %t%
}
...
If ( a_loopfield &gt;= 0 )
{
amount := amount "" c%a_loopfield%
}
Else
{
nonneg := -a_loopfield
amount := amount "" neg_c%nonneg%
}
</pre><hr />
Reply With Quote