Link to home
Start Free TrialLog in
Avatar of jacno
jacno

asked on

WMP web embeded

hello
I want to change the color of the text of
the showdisplay box of the WMP embeded, what I have
to add to the following listing ?
By default the text is pink,and the background color is
black,I try
<param name="DisplayBackColor" value="5">
<param name="DisplayForeColor" value="32777215">
but it does not work !
Where can I find the definitions of these param ?
Anticipate thanks  Jacno
<OBJECT ID="Show"
   CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
   type="application/x-oleobject">
   <PARAM NAME="FILENAME" VALUE="toto.wma">
   <PARAM NAME="AutoStart" VALUE="true">
   <PARAM NAME="TransparentAtStart" VALUE="true">
   <PARAM NAME="ShowControls" VALUE="1">
   <PARAM NAME="ShowDisplay" VALUE="1">
   <PARAM NAME="ShowStatusBar" VALUE="1">
   <PARAM NAME="AutoSize" VALUE="1">
   <param name="loop" value="true">
</OBJECT>
ASKER CERTIFIED SOLUTION
Avatar of coreybryant
coreybryant
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jacno
jacno

ASKER

hello Corey
thanks for answering
I cannot change the Backgroundcolor and the
ForeGroundcolor of the showdisplay, it stays
black with pink text:
1) with the following listing:
<OBJECT
   ID="Player_1"
   CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" type="application/x-oleobject"
   WIDTH=490
   HEIGHT=140>
   <PARAM NAME="FILENAME" VALUE="toto.wma">
   <PARAM NAME="AutoStart" VALUE="true">
   <PARAM NAME="TransparentAtStart" VALUE="true">
   <PARAM NAME="ShowControls" VALUE="1">
   <PARAM NAME="ShowDisplay" VALUE="1">
   <PARAM NAME="ShowStatusBar" VALUE="1">
<param name="DisplayBackColor" value="5">
<param name="DisplayForeColor" value="32777215">
</OBJECT>

2) nor with this command in a script:
   Player_1.displaybackcolor="yellow";
   Player_1.displayforecolor="red";

best regards  Jacno