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 >
Winamp Compiled Maki Script  |  2003-10-21  |  1KB  |  37 lines

  1. /* Note: a decompiler is no invitation to steal code.
  2.    Please respect the the copyright */
  3.  
  4. #include "std.mi"
  5. Global Layer Layer2;
  6. Global Layer Layer3;
  7. Global Text Text4;
  8. Global Group Group5;
  9.  
  10.  
  11. System.onScriptLoaded()
  12. {
  13. Group5 = System.getScriptGroup();
  14. Layer2 = Group5.findObject(( "player\.pl\.time\.left"));
  15. Layer3 = Group5.findObject(( "player\.pl\.time\.display\.left"));
  16. Text4 = Group5.findObject(( "PLTime"));
  17. return Null;
  18. }
  19.  
  20. Group5.onResize(int x, int y, int w, int h)
  21. {
  22. if(( w < 394)) {
  23. Layer2.show();
  24. Layer3.show();
  25. Text4.setXmlParam(( "x"), ( "\-215"));
  26. Text4.setXmlParam(( "w"), ( "90"));
  27. } else {
  28. Layer2.hide();
  29. Layer3.hide();
  30. Text4.setXmlParam(( "x"), ( "\-180"));
  31. Text4.setXmlParam(( "w"), ( "55"));
  32. }
  33. return Null;
  34. }
  35.  
  36.  
  37.