|
|||
|
I'm using the following code to open an external movie file (.wmv):
Code:
var ax = createControl("WMPlayer.OCX", 0, 0, 200, 200);
ax.activex.url = "c:\\my.wmv";
ax.activex.controls.play();
Thanks in advance! |
|
|||
|
Code:
var ax = createControl("WMPlayer.OCX", 0, 0, 200, 200);
ax.activex.url = "c:\\my.wmv";
ax.activex.controls.play();
var wnd = getMainWnd();
wnd.onSize = function (type, width, height) {
ax.window.move(0, 0, width, height);
}
|
|
|||
|
[Operation panel]->[application definition]->[appearance]->[border style]->[None]
[Operation panel]->[application definition]->[size and position]->[window size]->[makes the projector full screen] |
|
|||
|
I found the REAL solution myself. Quite simple actually
![]() So for anyone that may try this sometime: Code:
var wnd = getMainWnd();
var ax = createControl("WMPlayer.OCX", 0, 0, wnd.width, wnd.height, "fullscreen=true");
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|