General EQWatcher Concepts > Venturing into the Unknown  > WinAMP


List of commands

WinampBack()

WinampNext()

WinampPause()

WinampPlay(string searchstring)

WinampPlay()

WinampRandom()

WinampRepeat()

WinampStop()


WinampBack() command

Hits the "Back" button in WinAMP

Return value

none

Example

// This alias hits the Back button

alias("winamp back")
{
  WinampBack();
}
 


WinampNext() command

Hits the "Next" button in WinAMP

Return value

none

Example

// This alias hits the Next button

alias("winamp next")
{
  WinampNext();
}
 


WinampPause() command

Hits the "Pause" button in WinAMP

Return value

none

Example

// This alias hits the Pause button

alias("winamp pause")
{
  WinampPause();
}
 


WinampPlay() command

Hits the "Play" button in WinAMP

Return value

none

Example

// This alias hits the Play button

alias("winamp play")
{
  WinampPlay();
}
 


WinampPlay(string searchstring) command

Plays an MP3 from the WinAMP playlist.

Return value

none

Parameters

searchstring

Search string given.  Each word of this search string (or partial word) must match, and is not case sensitive.  "O Met" will match the same as "one metallica" or could also match an mp3 called "Old Metro" or "Open Helmet" anything like that.  Each word separated by a space in the search string must be present in the file name found in any order.

Example

// This alias plays an mp3 given a search string

public string MP3Name;
alias("winamp play \"@MP3Name@\"")
{
  WinampPlay(MP3Name);
}
 


WinampRandom() command

Hits the "Random" button in WinAMP

Return value

none

Example

// This alias hits the Random button

alias("winamp random")
{
  WinampRandom();
}
 


WinampRepeat() command

Hits the "Repeat" button in WinAMP

Return value

none

Example

// This alias hits the Repeat button

alias("winamp repeat")
{
  WinampRepeat();
}
 


WinampStop() command

Hits the "Stop" button in WinAMP

Return value

none

Example

// This alias hits the Stop button

alias("winamp stop")
{
  WinampStop();
}