These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

guys without ISBOXER is this possible

First post
Author
Batuka
The Northerners
Fraternity.
#1 - 2014-10-05 23:27:39 UTC
so i was watching this on youtube and wondered his setup i guess it is isboxer but i have been told their is an easier way to do it any help is appreciated

https://www.youtube.com/watch?v=4hAMnfgbLT0
CCP FoxFour
C C P
C C P Alliance
#2 - 2014-10-06 09:17:45 UTC
Actually doesn't look like ISBOXER. If the person was using ISBOXER they would probably be mirror their input. The same can be accomplished with python and win32gui. Launch the clients in border less window mode and then run something like:

import win32gui

def winEnumHandler(hwnd, ctx):
if win32gui.IsWindowVisible(hwnd):
if win32gui.GetWindowText(hwnd) == 'window title':
win32gui.MoveWindow(hwnd, 0, 0, 100, 500, True)

win32gui.EnumWindows(winEnumHandler, None);

You could also do something more like:

hwnd = win32gui.GetForegroundWindow()

and then just move it if you know the window will be in the Foreground.

Google can also offer more details.

The above was basically ripped from here: http://stackoverflow.com/questions/14653168/get-hwnd-of-each-window-python

@CCP_FoxFour // Technical Designer // Team Tech Co

Third-party developer? Check out the official developers site for dev blogs, resources, and more.

Batuka
The Northerners
Fraternity.
#3 - 2014-10-08 07:28:45 UTC
WOW thanks CCP :P atleast i know full well i am not breaking any rules now :P