home *** CD-ROM | disk | FTP | other *** search
/ Minami 40 / MINAMI40.ISO / Extra / winamp3_0-full.exe / Wacs / xml / pledit / searchline.maki (.txt) < prev   
Winamp Compiled Maki Script  |  2002-07-16  |  1KB  |  42 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.  
  8.  
  9. System.onScriptLoaded()
  10. {
  11. Group Group4;
  12. Group4 = System.getScriptGroup();
  13. Edit3 = Group4.findObject(( "pledit\.search\.text"));
  14. Text2 = Group4.findObject(( "pledit\.search\.label"));
  15. return Null;
  16. }
  17.  
  18. Edit3.onEnter()
  19. {
  20. Edit3.onIdleEditUpdate();
  21. return Null;
  22. }
  23.  
  24. Edit3.onIdleEditUpdate()
  25. {
  26. GuiObject GuiObject9;
  27. Group Group7;
  28. Group7 = System.getScriptGroup();
  29. GuiObject9 = Group7.getObject(( "pledit\.editor"));
  30. GuiObject9.setXmlParam(( "select"), Edit3.getText());
  31. return Null;
  32. }
  33.  
  34. Text2.onLeftButtonDblClk(int x, int y)
  35. {
  36. Edit3.setText(( ""));
  37. Edit3.onIdleEditUpdate();
  38. return Null;
  39. }
  40.  
  41.  
  42.