Hmm never heard of table ninja, the ahk script should work as it works through windows and just moves the tables about, it's a really simple script the code's already built into ahk, here's the code, you'd just change 100,500 to the co-ordinates you want to move the table to (I just experimented until I found the right numbers) - End is the key you use, you can change this to almost any key you want (see here for more info on that: http://www.autohotkey.com/docs/Hotkeys.htm#Intro)

SetTitleMatchMode, 2

End::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 100,500
Send, {F5}
return