|
Answered And Solved Questions A good place to check before you post your question. All answered / solved posts are archived here. |
| LinkBack | Thread Tools | Search this Thread | Display Modes |
| |||
Main Window Position and Movie Window Position I've got a little question. I've went into BSPlayer.xml configuration file and I've started to play with PlayWinPos (Movie Window position) and MainWinPos (Main Window Position). I've managed to change the location of these windows through the configuration file, but i can't seem to find the formula. For example for value 39125179 the x = 603 and y = 187 and for value 28181034 the x = 436 and y = 554. What i want ? I'm trying to move the window through a network remote control through Android/iOS. |
| |||
Ok. So, i'm going to answer my own question if somebody will be in need ever after this. After a lot of trial and error and some basic math i've found this : using C# : public void SetWindowScreen(Screen screen) { int PlayWinPos = ((screen.WorkingArea.X + X) * 65536 + screen.WorkingArea.Y + Y); return PlayWinPos; } screen - it's the main screen or secondary screen X - x position of top left corner of Movie Window Y - y position of top left corner of Movie Window Don't ask me why it's multiplied by 65536. Can't seem to find the connection between that value and screen resolution. A moderator can close this thread. Last edited by UnknownName; 28th July 2017 at 01:33 PM. |
| |||
It's 32 bit integer, HIWORD is x and LOWORD is y position of top left corner. For ex. Code: position = 43254468 // 0x029402C4 x = 0x0294 -> 660 y = 0x02C4 -> 708 x = position >> 16; y = position & 0xFFFF; reverse: position = (x << 16) | y; |
Tags |
main, movie, position, window |
| |
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
some problems | black_ps | Bug Reports And Codecs | 36 | 27th March 2009 07:28 PM |
Main window position | Lililita | Bug Reports And Codecs | 13 | 25th December 2008 10:44 AM |
[FIXED] Remember last movie position for ALL movies | bsplayer0 | Bug Reports And Codecs | 5 | 16th December 2008 12:36 PM |
BUGS in BSplayer v2.12.941 (Normal/Pro) | Tizio | Bug Reports And Codecs | 0 | 5th October 2006 06:43 PM |
v1.2 won't remember movie window position | durerca | Bug Reports And Codecs | 2 | 25th February 2005 07:01 PM |