[Tools][Expand/Collapse All]Note that automatic extraction of ActionScript 3 is still pretty much unsupported by swfchan. AS1/AS2 works okay most of the time.Symbol 14 MovieClip Frame 1 (193 B)
stop();
this.onRollOver = function () {
this.gotoAndStop(2);
};
this.onRollOut = function () {
this.gotoAndStop(1);
};
this.onReleaseOutside = function () {
this.gotoAndStop(1);
};
Symbol 25 MovieClip Frame 1 (525 B)
stop();
this.send_btn.onRelease = function () {
var _local3 = this._parent.email.text;
trace(_local3);
if ((_local3 != "") && (_local3.length > 3)) {
var _local4 = new LoadVars();
var _local5 = "http://www.bubblebox.com/scripts/newsletter_store_email.php?email=" + _local3;
_local4.load(_local5, "post");
_global.address = _local3;
this._parent.gotoAndStop(2);
}
};
this.enter_tekst.onRelease = function () {
trace("focus");
this._visible = false;
Selection.setFocus("email");
};
Symbol 25 MovieClip Frame 2 (215 B)
this.tel = 80;
this.onEnterFrame = function () {
if (this.tel <= 0) {
this.gotoAndStop(1);
delete this.onEnterFrame;
} else {
this.tel--;
}
};
this.address.text = ("(" + _global.address) + ")";