home *** CD-ROM | disk | FTP | other *** search
Winamp Compiled Maki Script | 2002-07-16 | 1.2 KB | 42 lines |
- /* Note: a decompiler is no invitation to steal code.
- Please respect the the copyright */
-
- #include "std.mi"
- Global Text Text2;
- Global Edit Edit3;
-
-
- System.onScriptLoaded()
- {
- Group Group4;
- Group4 = System.getScriptGroup();
- Edit3 = Group4.findObject(( "pledit\.search\.text"));
- Text2 = Group4.findObject(( "pledit\.search\.label"));
- return Null;
- }
-
- Edit3.onEnter()
- {
- Edit3.onIdleEditUpdate();
- return Null;
- }
-
- Edit3.onIdleEditUpdate()
- {
- GuiObject GuiObject9;
- Group Group7;
- Group7 = System.getScriptGroup();
- GuiObject9 = Group7.getObject(( "pledit\.editor"));
- GuiObject9.setXmlParam(( "select"), Edit3.getText());
- return Null;
- }
-
- Text2.onLeftButtonDblClk(int x, int y)
- {
- Edit3.setText(( ""));
- Edit3.onIdleEditUpdate();
- return Null;
- }
-
-
-