Frame 1
function diferencia() {
difex = Math.abs(xini - _xmouse);
difey = Math.abs(yini - _ymouse);
var _local2 = new flash.filters.BlurFilter(difex * 2, difey * 2, 1);
var _local1 = new Array();
_local1.push(_local2);
carrega.filters = _local1;
xini = _xmouse;
yini = _ymouse;
}
Mouse.hide();
var escuchador = new Object();
var xini = _xmouse;
var yini = _ymouse;
escuchador.onMouseMove = function () {
diferencia();
};
Mouse.addListener(escuchador);
startDrag ("carrega", true);
stop();
carrega.onEnterFrame = function () {
_root.caucula = Math.floor((getBytesLoaded() / getBytesTotal()) * 100);
_root.carrega.pct.text = _root.caucula + "%";
if (caucula >= 100) {
_root._alpha = _root._alpha - 5;
if (_root._alpha <= 0) {
_root.gotoAndPlay(2);
delete carrega.onEnterFrame;
}
}
};
Frame 2
stop();
Mouse.show();
onEnterFrame = function () {
_root._alpha = _root._alpha + 10;
if (_root._alpha >= 100) {
delete this.onEnterFrame;
}
};
Symbol 11 Button
on (release) {
getURL ("http://www.furaffinity.net/user/washa/", "_blank");
}
Symbol 12 Button
on (release) {
getURL ("http://www.furaffinity.net/user/glassjawboxer/", "_blank");
}