
Код AS1/AS2:
dheight = 0;
function resizeDiv() {
getURL("FSCommand:resize", dheight);
++count;
if (count > 15) {
clearInterval(resizeTimer);
}
}
this.onEnterFrame = function () {
if (this._height != dheight) {
getURL("FSCommand:resize", this._height);
}
dheight = this._height;
};
javascript
:

Код:
function ZZZ_DoFSCommand(command, args) {
if (command == "resize"){
sfresize(args);
}
}