home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / 01_03.iso / service / winamp3 / files / skins / Chronabie.wal / scripts / default / cfgfloat.maki (.txt) < prev    next >
Winamp Compiled Maki Script  |  2002-05-06  |  1KB  |  33 lines

  1. /* Note: a decompiler is no invitation to steal code.
  2.    Please respect the the copyright */
  3.  
  4. #include "std.mi"
  5. Global Text Text2;
  6. Global Edit Edit3;
  7. Global CfgGroup CfgGroup4;
  8.  
  9.  
  10. System.onScriptLoaded()
  11. {
  12. CfgGroup4 = System.getScriptGroup();
  13. Text2 = CfgGroup4.getObject(( "cfg\.txt"));
  14. Edit3 = CfgGroup4.getObject(( "cfg\.edit"));
  15. Edit3.setAutoEnter(1);
  16. return Null;
  17. }
  18.  
  19. Edit3.onEnter()
  20. {
  21. CfgGroup4.cfgSetFloat(System.stringToFloat(Edit3.getText()));
  22. return Null;
  23. }
  24.  
  25. CfgGroup4.onCfgChanged()
  26. {
  27. Text2.setText(CfgGroup4.cfgGetName());
  28. Edit3.setText(System.floatToString(CfgGroup4.cfgGetFloat(), 6));
  29. return Null;
  30. }
  31.  
  32.  
  33.