|
|||
|
is there any way to resize the activex mediaplayer without recreate it?
me have do with this code:- if (player == null){ player = createControl("MediaPlayer.MediaPlayer.1", 0,0,352,288); } Dialogs.msgBox(player.activex); Dialogs.msgBox(player.window); but the [player.window] return [undefined], so that me found no way to resize or move it is there others way to make it? ??? thnx |
|
|||
|
The Windows media player control will always be windowless activated. The player.window will always return [undefined].
You can close the palyer and open it again when you want to change the size of the player window Code:
delete player; player = createControl(...); ... |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|