It is illegal to download music that you don't own. But listen to the stream isn't for you, just the site is illegal.
This is a great site though, and I will make a script for it.
I got to go now, sorry. But here's the incomplete script. (Parts of it is working!)
code:
var strURL = "http://www.tompstar.com/?pg=search_result";
function OnGetScriptMenu(Location)
{
var ScriptMenu = "<ScriptMenu>";
ScriptMenu += "<MenuEntry Id=\"MnuBrowse\">Browse</MenuEntry>";
ScriptMenu += "<MenuEntry Id=\"MnuSearch\">Search</MenuEntry>";
ScriptMenu += "<Separator/>";
ScriptMenu += "<MenuEntry Id=\"MnuAbout\">About</MenuEntry>";
ScriptMenu += "</ScriptMenu>";
return ScriptMenu;
}
function OnEvent_MenuClicked(MenuItemId, Location, OriginWnd)
{
if(MenuItemId == "MnuBrowse")
{
var objShell = new ActiveXObject("Shell.Application");
objShell.ShellExecute(strURL, "", "", "open", 1);
}
else if(MenuItemId == "MnuSearch")
{
Search("Here In Your Arms");
}
else
{
MsgPlus.DisplayToast("Tompstar", "This script is written by Vikke.");
}
}
function Search(Query)
{
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", strURL, true);
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4){
var strResult = xmlhttp.responseText;
}
}
xmlhttp.setRequestHeader("status",status);
xmlhttp.send();
}