
Код:
function hintShow() {
_root.zHint.showHint(this.val);
}
function hintHide() {
_root.zHint.hideHint();
}
for (var i=0; i<result.length; i++) {
_root["mc"+i].val = result[i][7];
_root["mc"+i].onRollOver = hintShow();
_root["mc"+i].onRollOut = hintHide();
}