Just for everyone else in this thread that may not have seen a recent post of mine ... here's a MEL script which moves all windows including the V-Ray 3.x VFB into the top left corner of your first monitor:
Unfortunately, I haven't worked out how to fetch the V-Ray 2.x window. But hopefully, everyone moves onto V-Ray 3 non-beta soon anyways
Vlado - isn't that supposed to be real soon?!
Code:
for ($window in `lsUI -windows`) { if (`window -q -exists $window`==0) continue; if (`window -q -mainWindow $window`!=0) continue; window -e -tlc 0 0 $window; }
Vlado - isn't that supposed to be real soon?!
Comment