home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 March
/
Chip_2002-03_cd1.bin
/
sharewar
/
winamp
/
300b
/
skins
/
assmosis.wal
/
Scripts
/
cfgstring.m
< prev
next >
Wrap
Text File
|
2001-11-07
|
395b
|
21 lines
#include "../../../lib/std.mi"
Global Text txt;
Global Edit editor;
Global CfgGroup cgroup;
System.onScriptLoaded() {
cgroup = getScriptGroup();
txt = cgroup.getObject("cfg.txt");
editor = cgroup.getObject("cfg.edit");
}
editor.onEnter() {
cgroup.cfgSetString(getText());
}
cgroup.onCfgChanged() {
txt.setText(cfgGetName());
editor.setText(cfgGetString());
}