What do you mean by "..how to get the width and height of the window.."?
If you have any clues on VisualBasic programming, you can use the code I wrote
here to retrieve the MovieWindow dimensions.
The code you need is the second one, and in specific the following line:
'Retrieve the MovieWindowSize GetWindowRect ParentHwnd, Rec
Then if you want the window size, you only have to make the following subtractions:
MovieWindowWidth = Rec.Right - Rec.Left MovieWindowHeight = Rec.Bottom - Rec.Top
If you didn't mention this.. don't consider my post
Otherway tell me if you found it usefull or if you have problems in useing it.
Bye :)