home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 December
/
Chip_2003-12_cd1.bin
/
zkuste
/
winamp5
/
download
/
winamp50beta_full.exe
/
$_14327_
/
pltime.maki
(
.txt
)
< prev
next >
Wrap
Winamp Compiled Maki Script
|
2003-10-21
|
1KB
|
37 lines
/* Note: a decompiler is no invitation to steal code.
Please respect the the copyright */
#include "std.mi"
Global Layer Layer2;
Global Layer Layer3;
Global Text Text4;
Global Group Group5;
System.onScriptLoaded()
{
Group5 = System.getScriptGroup();
Layer2 = Group5.findObject(( "player\.pl\.time\.left"));
Layer3 = Group5.findObject(( "player\.pl\.time\.display\.left"));
Text4 = Group5.findObject(( "PLTime"));
return Null;
}
Group5.onResize(int x, int y, int w, int h)
{
if(( w < 394)) {
Layer2.show();
Layer3.show();
Text4.setXmlParam(( "x"), ( "\-215"));
Text4.setXmlParam(( "w"), ( "90"));
} else {
Layer2.hide();
Layer3.hide();
Text4.setXmlParam(( "x"), ( "\-180"));
Text4.setXmlParam(( "w"), ( "55"));
}
return Null;
}