|
|||
|
hi
i import the Activex controler i want to hide the windows media player and only show the visualization windows. how i will do that. var1 = createControl("WMPlayer.OCX", 0, 0, 200, 200); var1.activex.url = "e:\\1.wav"; var1.activex.controls.play(); thankx |
|
|||
|
Code:
var1 = createControl("WMPlayer.OCX", 0, 0, 200, 200);
var1.activex.uimode = "none";
var1.activex.url = "D:\\From J\\emule\\Incoming\\01.mp3";
var1.activex.controls.play();
|
|
|||
|
thankx for help ;D
1. i also want to know how can i capture the media player information bar of song(artist: abc, Buffering 10%, song xyz, Playing 16K bit/second) to a variable ??? 2. how can i control volume my self from Flash. ![]() 3. i want to disable right click on visualization windows 8) |
|
|||
|
1) and 2) can be done. You can get more details from MSDN
http://msdn2.microsoft.com/en-us/library/bb249349.aspx 3) you cannot customize the context menu of an activex control, as the current version of swfkit cannot intercept system messages. |
|
|||
|
hi there
how can i control volume my self from Flash for active x. i try the website http://msdn2.microsoft.com/en-us/library/bb249349.aspx but no help for controlling the audio. i want when the player start the audio will be full thankx |
|
|||
|
hi there
now a new problem arises i have dual OS 98 and xp in xp i have windows media player 11 and in 98 the default player i built the player in the xp with media player controler var var1 = createControl("WMPlayer.OCX.7", 12, 75, 235, 265); in xp it is working but in 98 it do not show the media player and the place of the wmp is empty. i have selected these options Pack movies pack attached files standalone enable the setup program to register the Activex objects support win95 i want my player will work with all the previous OS 95/98/2000/xp now where is the problem |
|
|||
|
You will have to use Windows media player 6.4
Code:
var ax = createControl("MediaPlayer.MediaPlayer", 0, 0, 200, 200);
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|