View Single Post
  #8  
Old 09-09-2010, 05:57 PM
awebber awebber is offline
Junior Member
 
Join Date: Sep 2010
Posts: 5
awebber is on a distinguished road
Default

Re: Embedded Windows Media Player: How to disable or hide the Pause function


Quote:
Originally Posted by Stream Recorder View Post
When the Stop button is pressed, there is no any traffic usage on my PC.
Do not know if you have a program that can watch or not - I use HTTP Analiyzer and it is just a couple of streams taht do this strange thing

Quote:
Originally Posted by Stream Recorder View Post
Use MSDN or google. Or just hire a freelancer to do the work.
I just thought since this forum has people that may be familiar with player that one may know how to do it but I suppose they mostly send streams and not receive them. It is easy to hid the control - but that is stop and play also and I only want to hide pause and I did not see it at on MSDN as a PARAM element.

I know I could make my own player controls like pause would be

Code:
<INPUT TYPE = "BUTTON"  ID = "PAUSE"  NAME = "PAUSE"  VALUE = "||"
    onClick = "

        /* Check first to be sure the operation is valid. */
        if (Player.controls.isAvailable('Pause'))

            /* Pause the Player. */
            Player.controls.pause();
">
But thought someone would have a way of hiding on the player I use.

If you pause pause the streams generally continue that is why I did not want them.
Reply With Quote