IsPlaying
Syntax
IsPlaying()
Description
Returns 1 if winamp is currently playing.
Parameters and Remarks
NOTE: IsPlaying and IsPaused are mutually exclusive. To determine if winamp is stopped, see the example.
Examples
JScript
if (winamp.IsPlaying())
{
// winamp is playing
}
else if (winamp.IsPaused())
{
// winamp is paused
}
else
{
// winamp is stopped
}