[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.Frame 1 (26 B)
stop();
stopAllSounds();
Frame 229 (79 B)
startDrag ("/mouse", true);
delay = "0";
counter = "0";
name_counter = "1";
Frame 230 (333 B)
if (!counter) {
counter = delay;
name_count = name_count + 1;
newClip = "flower" add name_count;
duplicateMovieClip ("/flower_template", newClip, name_count);
setProperty("/" add newClip, _x , getProperty("/mouse", _x));
setProperty("/" add newClip, _y , getProperty("/mouse", _y));
} else {
counter = counter - 1;
}
Frame 231 (19 B)
gotoAndPlay (230);
Frame 250 (8 B)
stop();
Frame 255 (8 B)
stop();
Symbol 10 Button (25 B)
on (release) {
play();
}
Symbol 13 Button (36 B)
on (release) {
gotoAndPlay (250);
}
Symbol 15 Button (65 B)
on (release) {
getURL ("http://funny-pictures.com", "_blank");
}
Symbol 24 MovieClip Frame 1 (288 B)
if (_name eq "flower_template") {
stop();
} else {
min_scale = 20;
alpha_rate = 5;
scale_rate = 4;
x_move = ((random(400) + 1) / 100) - 2;
y_move = ((random(400) + 1) / 100) - 2;
setProperty("flower", _x , -_x);
setProperty("flower", _y , -_y);
scale_counter = 100;
}
Symbol 24 MovieClip Frame 2 (331 B)
if (scale_counter < min_scale) {
removeMovieClip("");
} else {
scale_counter = scale_counter - scale_rate;
_alpha = (_alpha - alpha_rate);
_x = (_x + x_move);
_y = (_y + y_move);
setProperty("flower", _x , getProperty("flower", _x) - x_move);
setProperty("flower", _y , getProperty("flower", _y) - y_move);
}
Symbol 24 MovieClip Frame 3 (17 B)
gotoAndPlay (2);
Symbol 41 Button (616 B)
on (release) {
if (((!sender_email.length) || (sender_email.indexOf("@") == -1)) || (sender_email.indexOf(".") == -1)) {
EmailStatus = "Please enter a valid email address";
} else if (!sender_name.length) {
EmailStatus = "Please enter your name";
} else if (((!to_email.length) || (to_email.indexOf("@") == -1)) || (to_email.indexOf(".") == -1)) {
EmailStatus = "Please enter your friends email address";
} else if (!to_name.length) {
EmailStatus = "Please enter your friends name";
} else {
loadVariablesNum ("http://www.funny-pictures.com/galleries/submit.php", 0, "POST");
gotoAndPlay (255);
}
}
Symbol 49 Button (34 B)
on (release) {
gotoAndStop (1);
}