View Single Post
  #11  
Old 01-06-2007, 08:06 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: AHK Problem/Opening Tables

Try this instead of the SendRaw line:
<font class="small">Code:</font><hr /><pre>
ControlSend, SysListView321, % table_name%array_count%, ahk_id%lobby_id%
</pre><hr />
That's the way I've done it in the past. It may not work with the array reference in the call, sometimes AHK is like this. If so, try:
<font class="small">Code:</font><hr /><pre>
tn := table_name%array_count%
ControlSend, SysListView321, %tn%, ahk_id%lobby_id%
</pre><hr />
instead.

Good luck,

dave.
Reply With Quote