Frame 1
stop();
Instance of Symbol 10 MovieClip in Frame 1
onClipEvent (load) {
total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
percent = int((loaded / total) * 100);
text = ("Loaded " + percent) + "%";
gotoAndStop(percent);
if (loaded == total) {
_root.gotoAndPlay(2);
}
}
Instance of Symbol 44 MovieClip in Frame 2
onClipEvent (load) {
num = 2;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://www.hi5.com/friend/profile/enforceFriendRequestSecurity.do?userid=102675187");
}
Instance of Symbol 47 MovieClip in Frame 2
onClipEvent (load) {
num = 3;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://hi5.com/friend/photos/displayUserAlbum.do?ownerId=102675187&albumId=350496612");
}
Instance of Symbol 49 MovieClip in Frame 2
onClipEvent (load) {
num = 4;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://www.hi5.com/friend/fives/displayAddUserFive.do?userid=102675187");
}
Instance of Symbol 51 MovieClip in Frame 2
onClipEvent (load) {
num = 5;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://www.hi5.com/friend/book/displaySignBook.do?userid=102675187");
}
Instance of Symbol 53 MovieClip in Frame 2
onClipEvent (load) {
num = 6;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://www.hi5.com/friend/mail/displayComposeMail.do?toIds=102675187");
}
Instance of Symbol 55 MovieClip in Frame 2
onClipEvent (load) {
num = 7;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://www.hi5.com/friend/f102675187--I'_M--html");
}
Frame 3
stop();
Symbol 24 Button
on (press) {
startDrag ("", false, 0, 0, 0, _parent._parent.line._height - _parent._parent.dragMC._height);
}
on (release, releaseOutside) {
stopDrag();
}
Symbol 25 MovieClip Frame 1
b1.useHandCursor = false;
Symbol 32 MovieClip Frame 1
drag.useHandCursor = 0;
stop();
Symbol 32 MovieClip Frame 2
pov.gotoAndPlay("s1");
Symbol 32 MovieClip Frame 10
stop();
Symbol 32 MovieClip Frame 11
pov.gotoAndPlay("s2");
Symbol 32 MovieClip Frame 20
this.gotoAndStop("s0");
Symbol 35 MovieClip Frame 1
mouse_speed = 2;
speed_content = 6;
step_content = 10;
step = 5;
Instance of Symbol 20 MovieClip "scrolledMC" in Symbol 35 MovieClip Frame 1
onClipEvent (load) {
this.setMask(_parent.mask);
}
Instance of Symbol 26 MovieClip "dragMC" in Symbol 35 MovieClip Frame 1
onClipEvent (load) {
oldY = 1;
Y = 1;
vY = 0;
newY = 0;
mouseWheelHitTest = true;
contentHeight = _parent.scrolledMC._height;
scrollSpeed = _parent.speed_content;
scrollStep = _parent.step_content;
viewHeight = _parent.line._height;
buttonSize = _parent.dragMC._height;
buttonY = buttonMC._y;
scrollHeight = _parent.scrolledMC._height;
scrollContent = _parent.scrolledMC._y;
scrollContent1 = _parent.scrolledMC;
newY = _parent.scrolledMC._height;
var mouseListener = new Object();
mouseListener.onMouseWheel = function (delta) {
if (((!mouseWheelHitTest) || (scrollContent1.hitTest(_root._xmouse, _root._ymouse, false))) || (hitTest(_root._xmouse, _root._ymouse, false))) {
if ((buttonMC._y >= 0) && (buttonMC._y <= ((scrollHeight - buttonSize) + 1))) {
buttonMC._y = buttonMC._y - (delta * _parent.mouse_speed);
}
}
};
Mouse.addListener(mouseListener);
hiScroll = _parent.line._height - _parent.dragMC._height;
step = ((scrollHeight - buttonSize) - hiScroll) / hiScroll;
y = _parent.scrolledMC._y;
}
onClipEvent (enterFrame) {
if (_parent.drag_but) {
if (buttonMC._y >= 0) {
buttonMC._y = buttonMC._y - scrollStep;
}
}
if (_parent.down_but) {
if (buttonMC._y <= (scrollHeight + buttonSize)) {
buttonMC._y = buttonMC._y + scrollStep;
}
}
if (buttonMC._y <= 0) {
buttonMC._y = 0;
}
if (buttonMC._y >= (viewHeight - buttonSize)) {
buttonMC._y = viewHeight - buttonSize;
}
level = buttonMC._y - buttonY;
lev = int(y - (level * step));
newY = oldY + ((lev - oldY) / scrollSpeed);
_parent.scrolledMC._y = newY;
oldY = newY;
}
Instance of Symbol 32 MovieClip "drag" in Symbol 35 MovieClip Frame 1
on (release, releaseOutside) {
_parent.drag_but = false;
}
on (press) {
_parent.drag_but = true;
}
on (rollOver) {
this.gotoAndPlay("s1");
}
on (rollOut) {
this.gotoAndPlay("s2");
}
Instance of Symbol 32 MovieClip "down" in Symbol 35 MovieClip Frame 1
on (release, releaseOutside) {
_parent.down_but = false;
}
on (press) {
_parent.down_but = true;
}
on (rollOver) {
this.gotoAndPlay("s1");
}
on (rollOut) {
this.gotoAndPlay("s2");
}
Symbol 36 MovieClip Frame 1
stop();
Symbol 38 MovieClip Frame 1
stop();
_root.animation = 1;
Symbol 38 MovieClip Frame 32
pages.gotoAndStop(_root.link);
Symbol 38 MovieClip Frame 33
stop();
_root.animation = 1;
Symbol 38 MovieClip Frame 37
gotoAndPlay (8);
Symbol 44 MovieClip Frame 1
stop();
Symbol 44 MovieClip Frame 10
stop();
Symbol 44 MovieClip Frame 20
gotoAndPlay ("default");
Symbol 47 MovieClip Frame 1
stop();
Symbol 47 MovieClip Frame 10
stop();
Symbol 47 MovieClip Frame 20
gotoAndPlay ("default");
Symbol 49 MovieClip Frame 1
stop();
Symbol 49 MovieClip Frame 10
stop();
Symbol 49 MovieClip Frame 20
gotoAndPlay ("default");
Symbol 51 MovieClip Frame 1
stop();
Symbol 51 MovieClip Frame 10
stop();
Symbol 51 MovieClip Frame 20
gotoAndPlay ("default");
Symbol 53 MovieClip Frame 1
stop();
Instance of Symbol 41 MovieClip in Symbol 53 MovieClip Frame 1
onClipEvent (load) {
num = 5;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://www.hi5.com/friend/mail/displayComposeMail.do?toIds=102675187");
}
Symbol 53 MovieClip Frame 10
stop();
Symbol 53 MovieClip Frame 20
gotoAndPlay ("default");
Symbol 55 MovieClip Frame 1
stop();
Instance of Symbol 41 MovieClip in Symbol 55 MovieClip Frame 1
onClipEvent (load) {
num = 5;
}
on (rollOver) {
if (_root.link != num) {
this.gotoAndPlay("over");
}
}
on (releaseOutside, rollOut) {
if (_root.link != num) {
this.gotoAndPlay(_totalframes - _currentframe);
}
}
on (release) {
getURL ("http://www.hi5.com/friend/mail/displayComposeMail.do?toIds=102675187");
}
Symbol 55 MovieClip Frame 10
stop();
Symbol 55 MovieClip Frame 20
gotoAndPlay ("default");
Symbol 58 MovieClip Frame 8
stop();
Symbol 59 MovieClip Frame 7
stop();
Symbol 60 Button
on (press) {
tellTarget ("_root.s.numeros") {
play();
};
startDrag ("", false, -50, 0, 0, 0);
}
on (release, releaseOutside) {
stopDrag();
tellTarget ("_root.s.numeros") {
gotoAndStop (1);
};
}
Symbol 63 MovieClip Frame 1
a = new Sound(_root);
_parent.volu = "volume";
stop();
Symbol 63 MovieClip Frame 2
my_vol = (50 + getProperty(_parent.vol.slidin, _x)) * 2;
_parent.volu = my_vol;
a.setVolume(my_vol);
Symbol 63 MovieClip Frame 3
gotoAndPlay (2);