Frame 1
Stage.showMenu = false;
Stage.scaleMode = "noScale";
MovieClip.prototype.fadescreen = function (speed) {
if (!speed) {
speed = 5;
}
r.createEmptyMovieClip("dark", 100001);
var d = r.dark;
d.speed = speed;
d.lineStyle(1, 0, 100);
d.beginFill(16777215, 100);
d.moveTo(-5000, -5000);
d.lineTo(5000, -5000);
d.lineTo(5000, 5000);
d.lineTo(-5000, 5000);
d.endFill();
d.onEnterFrame = function () {
d._alpha = d._alpha - d.speed;
if (d._alpha <= 0) {
d.removeMovieClip();
d.stop();
}
};
};
MovieClip.prototype.jiggle = function (beginska) {
var t = this;
((!beginska) ? (beginska = 200200) : null);
t._xscale = (t._yscale = beginska);
t.ska = 100;
t.dx = 0;
t.dv = 0.8;
t.dvstep = 0.6;
t.onEnterFrame = function () {
t.dx = (t.dx * t.dvstep) + ((t.ska - t._xscale) * t.dv);
t._xscale = t._xscale + t.dx;
t._yscale = t._xscale;
};
};
MovieClip.prototype.popbutton = function (delay) {
var t = this;
t._y = t._y + 1000;
t.d = delay;
t.onEnterFrame = function () {
t.d--;
((!t.d) ? ((t._y = t._y - 1000)r.zpop.start()t.jiggle(140)) : null);
};
};
MovieClip.prototype.snapshot = function (dest, sourc, x1, y1, wid, hei, ska, bx, by) {
((!ska) ? (ska = 11) : null);
var _local1 = new flash.display.BitmapData(wid, hei, true, 16777215);
var _local2 = new flash.geom.Matrix();
_local2.scale(ska, ska);
_local2.translate(-x1, -y1);
_local1.draw(sourc, _local2, null, null, new flash.geom.Rectangle(0, 0, wid, hei), true);
(((bx + by) > 0) ? (_local1.applyFilter(_local1, new flash.geom.Rectangle(0, 0, wid, hei), new flash.geom.Point(0, 0), new flash.filters.BlurFilter(bx, by, 2))) : null);
if (dest instanceof MovieClip) {
dest.attachBitmap(_local1, 1, "auto", true);
} else {
dest.copyPixels(_local1, new flash.geom.Rectangle(0, 0, wid, hei), new flash.geom.Point(0, 0));
}
};
MovieClip.prototype.areashot = function (dest, sourc, x0, y0, wid, hei, ska) {
((r[dest] != undefined) ? (dest.dispose()) : null);
r[dest] = new flash.display.BitmapData(ska * wid, ska * hei, true);
snapshot(r[dest], sourc, x0, y0, ska * wid, ska * hei, ska);
};
MovieClip.prototype.screensnapshot = function () {
((r.snap != undefined) ? (r.snap.dispose()) : null);
r.snap = new flash.display.BitmapData(r.screenwid, r.screenhei);
snapshot(r.snap, r, 0, 0, r.screenwid, r.screenhei);
};
MovieClip.prototype.pasteshot = function (dest, sourc, bx, by) {
var _local1 = sourc.clone();
if ((bx + by) > 0) {
_local1.applyFilter(_local1, new flash.geom.Rectangle(0, 0, _local1.width, _local1.height), new flash.geom.Point(0, 0), new flash.filters.BlurFilter(bx, by, 1));
}
dest.attachBitmap(_local1, 1, "auto", true);
};
_global.r = this;
Instance of Symbol 7 MovieClip in Frame 1
onClipEvent (enterFrame) {
_root.text_load = _root.getBytesLoaded() + " / ";
_root.text_total = _root.getBytesTotal();
_root.text_p = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + "%";
_root.lbar._width = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 200);
if (_root.getBytesLoaded() >= _root.getBytesTotal()) {
_parent.gotoAndPlay(2);
}
}
Frame 2
function init() {
for (var _local3 in this) {
if ((typeof(this[_local3]) == "movieclip") && (this[_local3]._name.substr(0, 3) != "___")) {
this[_local3].x0 = this[_local3]._x;
this[_local3].y0 = this[_local3]._y;
this[_local3].onPress = function () {
this.startDrag();
};
this[_local3].onRelease = (this[_local3].onReleaseOutside = function () {
if (this.hitTest(_root.___all) == true) {
this._x = this.xx;
this._y = this.yy;
} else {
to_initialize_fun(this);
}
this.stopDrag();
});
}
}
}
function to_initialize_fun(_mc) {
_mc.xp = 0;
_mc.yp = 0;
_mc.onEnterFrame = function () {
this.xp = (this.xp * 0.45) + ((this.x0 - this._x) * 0.2);
this._x = this._x + this.xp;
this.yp = (this.yp * 0.45) + ((this.y0 - this._y) * 0.2);
this._y = this._y + this.yp;
if (Math.abs(this.xp) < 0.1) {
this._x = this.x0;
this._y = this.y0;
this.enabled = true;
delete this.onEnterFrame;
}
};
}
stop();
init();
___snapshot._x = (___pop._x = (___replay._x = (Stage.width + ((728 - Stage.width) / 2)) - 40));
___logo._x = (Stage.width + ((728 - Stage.width) / 2)) - 60;
___logo._y = (Stage.height + ((546 - Stage.height) / 2)) - 10;
protocol = _url.substr(0, _url.indexOf(":"));
if (protocol == "file") {
___snapshot._visible = (___pop._visible = (___replay._visible = false));
} else if (protocol == "http") {
doubleSlash = _url.indexOf("//");
server = _url.substr(doubleSlash + 2, (_url.indexOf("/", doubleSlash + 2) - doubleSlash) - 2);
server = server.toUpperCase();
if (server.indexOf("WWW.") != -1) {
server = server.substr(server.indexOf("WWW.") + 4, server.length);
}
if (server.indexOf("AZDRESSUP.COM") != -1) {
___snapshot._visible = (___pop._visible = (___replay._visible = false));
} else if (server.indexOf("STARHOLLY.COM") != -1) {
___snapshot._visible = (___pop._visible = (___replay._visible = false));
} else {
___snapshot._visible = (___pop._visible = (___replay._visible = true));
}
}
Instance of Symbol 45 MovieClip in Frame 2
onClipEvent (load) {
this._x = _root.___all._x;
this._y = _root.___all._y;
}
Instance of Symbol 65 MovieClip in Frame 2
onClipEvent (load) {
this._x = _root.___all._x;
this._y = _root.___all._y;
}
Instance of Symbol 73 MovieClip in Frame 2
onClipEvent (load) {
this._x = _root.___all._x;
this._y = _root.___all._y;
}
Instance of Symbol 79 MovieClip in Frame 2
onClipEvent (load) {
this._x = _root.___all._x;
this._y = _root.___all._y;
}
Instance of Symbol 85 MovieClip in Frame 2
onClipEvent (load) {
this._x = _root.___all._x;
this._y = _root.___all._y;
}
Instance of Symbol 111 MovieClip "aza22" in Frame 2
onClipEvent (load) {
this._x = _root.tops._x;
this._y = _root.tops._y;
}
Instance of Symbol 113 MovieClip "aza23" in Frame 2
onClipEvent (load) {
this._x = _root.___all._x;
this._y = _root.___all._y;
}
Instance of Symbol 124 MovieClip "aza2341" in Frame 2
onClipEvent (load) {
this._x = _root.tops._x;
this._y = _root.tops._y;
}
Instance of Symbol 130 MovieClip in Frame 2
onClipEvent (load) {
this._x = _root.___all._x;
this._y = _root.___all._y;
}
Frame 3
fadescreen();
place.attachMovie("bg", "bg", 2);
printing = 0;
blurval = 5;
r.bg.filters = [new flash.filters.BlurFilter(blurval, blurval, 1)];
cl = new Color(bg);
cl.setBrightness(20);
stop();
Symbol 18 Button
on (release) {
var link = ["girl-dress-up/sophisticated-purple-look.html", "girl-dress-up/classic-trench-coats.html", "girl-dress-up/cozy-fall-fashion.html", "girl-dress-up/professional-business-attire.html", "girl-dress-up/fall-legwear-trends.html", "fashion/polished-working-girl.html", "girl-dress-up/stylish-skinny-jeans.html", "girl-dress-up/cropped-denim-jackets.html", ""];
var urlset = ("http://www.azdressup.com/" + link[random(8)]);
getURL (urlset, "_blank");
}
Symbol 19 MovieClip Frame 1
popbutton(10);
Symbol 140 Button
on (press) {
r.___snapshot._visible = false;
r.___pop._visible = false;
r.___replay._visible = false;
areashot("snap1", r, 900, 100, 250, 450, 2);
r.gotoAndStop("shotfoto");
}
Symbol 141 MovieClip Frame 1
popbutton(20);
Symbol 144 Button
on (press) {
r.gotoAndPlay(1);
this.removeMovieClip();
}
Symbol 145 MovieClip Frame 1
popbutton(50);
Symbol 147 Button
on (release) {
var link = ["girl-dress-up/sophisticated-purple-look.html", "girl-dress-up/classic-trench-coats.html", "girl-dress-up/cozy-fall-fashion.html", "girl-dress-up/professional-business-attire.html", "girl-dress-up/fall-legwear-trends.html", "fashion/polished-working-girl.html", "girl-dress-up/stylish-skinny-jeans.html", "girl-dress-up/cropped-denim-jackets.html", ""];
var urlset = ("http://www.azdressup.com/" + link[random(8)]);
getURL (urlset, "_blank");
}
Symbol 148 MovieClip Frame 1
popbutton(40);
Symbol 154 MovieClip [foto] Frame 1
pic._xscale = (pic._yscale = 50);
pasteshot(pic, r.snap1, 0, 0);
this.cacheAsBitmap = true;
ro = 0;
ska = 100;
_yscale = 70;
_xscale = 70;
d = 28;
div1 = 5;
div2 = 3;
onEnterFrame = function () {
_rotation = (_rotation + ((ro - _rotation) / div1));
_xscale = (_xscale + ((ska - _xscale) / div2));
_yscale = _xscale;
d--;
((!d) ? (_rotation = roundefined_yscale = 100undefined_xscale = 100undefined100) : null);
(r.printing ? ((ska = 122)(ro = 0)(div1 = (div2 = 3))(div1 = (div2 = 3))) : null);
};
stop();
Symbol 155 Button
on (release) {
var link = ["girl-dress-up/cute-girls-nightwear.html", "holidays/fashion-fun-birthday-party.html", "girl-dress-up/wardrobe-essentials-for-college-girls.html", "fashion/premiere-princess.html", "girl-dress-up/teen-spring-fashion.html", "girl-dress-up/back-to-school-looks.html", "girl-dress-up/tokyo-street-chic.html", "girl-dress-up/spring-preppy-chic.html", ""];
var urlset = ("http://www.azdressup.com/" + link[random(8)]);
getURL (urlset, "_blank");
}