PauseUnpause
Syntax
PauseUnpause()
Description
Toggles the current pause state of
Parameters and Remarks
Examples
JScript
// Ensure that winamp is playing
if (winamp.IsPaused())
{
winamp.PauseUnpause();
}
else if (!winamp.IsPlaying())
{
winamp.Play();
}