home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 November
/
CDVD1105.ISO
/
Util
/
Winamp
/
Skins
/
Pimeer_Modern_v2.wal
/
notifier
/
cover.maki
(
.txt
)
< prev
next >
Wrap
Winamp Compiled Maki Script
|
2004-09-13
|
2KB
|
47 lines
/* Note: a decompiler is no invitation to steal code.
Please respect the the copyright */
#include "std.mi"
Global Browser Browser16;
Global String String17;
Function func400();
System.onScriptLoaded()
{
Group Group18;
Group18 = System.getScriptGroup();
Browser16 = Group18.findObject(( "browser\.cdcover"));
String17 = System.getPath(Browser16.getXmlParam(( "url")));
if(( System.getPlayItemString() != ( ""))) {
func400();
}
return Null;
}
System.onTitleChange(String newtitle)
{
func400();
return Null;
}
func400()
{
String String24;
String String26;
String String22;
String22 = ( "");
String24 = System.getPlayItemMetaDataString(( "artist"));
String26 = System.getPlayItemMetaDataString(( "album"));
if(( String24 != ( ""))) {
String22 = ( String22 + ( String24 + ( "\ ")));
}
if(( String26 != ( ""))) {
String22 = ( String22 + String26);
}
Browser16.navigateUrl(( ( String17 + ( "\\cdcover\.html\?")) + System.urlEncode(String22)));
return Null;
}