Frame 1
this.setMask(movieShapeMaskMC);
Frame 2
g_soundloopcount = 2;
moviesound = new Sound();
moviesound.attachSound("moviesound");
moviesound.start();
moviesound.onSoundComplete = function () {
if (g_soundloopcount != -1) {
g_soundloopcount--;
}
if (g_soundloopcount != 0) {
moviesound.start();
}
};
play();
Frame 3
play();
Frame 4
g_effectcount = 1;
stop();
Frame 5
gotoAndPlay ("loopstart");
Symbol 11 MovieClip Frame 1
ParamsValue = "<ParamsValue><Movie.Width>250</Movie.Width><Movie.Height>250</Movie.Height><Txt.StrFormatedText><Txt.StrLine><StrText format=\"Font18736default\">Skinhead</StrText></Txt.StrLine></Txt.StrFormatedText>\r\n<Txt.Font><Txt.Format name=\"Font18736default\"><FontFormatName>Font18736default</FontFormatName><FontSize>35</FontSize><FontUnderline>false</FontUnderline><FontXScale>100</FontXScale><FontYScale>100</FontYScale><Alpha>100</Alpha><TextSpace>0</TextSpace><FillStyle>linear</FillStyle><FontBeginColor>0xFF0000</FontBeginColor><FontEndColor>0x000000</FontEndColor><Border>true</Border><BorderColor>0xFF0000</BorderColor><BorderSize>1</BorderSize><BorderShadow>true</BorderShadow><CharRotation>0</CharRotation></Txt.Format><Txt.Format name=\"Font18736default large\"><FontFormatName>Font18736default large</FontFormatName><FontSize>36</FontSize><FontUnderline>false</FontUnderline><FontXScale>100</FontXScale><FontYScale>100</FontYScale><Alpha>100</Alpha><TextSpace>0</TextSpace><FillStyle>radial</FillStyle><FontBeginColor>0xFF9900</FontBeginColor><FontEndColor>0xFFFFFF</FontEndColor><Border>false</Border><BorderColor>0xFF0000</BorderColor><BorderSize>0</BorderSize><BorderShadow>false</BorderShadow><CharRotation>0</CharRotation></Txt.Format><Txt.Format name=\"Font18736default small\"><FontFormatName>Font18736default small</FontFormatName><FontSize>16</FontSize><FontUnderline>false</FontUnderline><FontXScale>100</FontXScale><FontYScale>100</FontYScale><Alpha>100</Alpha><TextSpace>0</TextSpace><FillStyle>solid</FillStyle><FontBeginColor>0xFFCC00</FontBeginColor><FontEndColor>0x663300</FontEndColor><Border>false</Border><BorderColor>0xFF0000</BorderColor><BorderSize>0</BorderSize><BorderShadow>false</BorderShadow><CharRotation>0</CharRotation></Txt.Format><Txt.Format name=\"Font18736web link\"><FontFormatName>Font18736web link</FontFormatName><FontSize>14</FontSize><FontUnderline>true</FontUnderline><FontXScale>100</FontXScale><FontYScale>100</FontYScale><Alpha>100</Alpha><TextSpace>0</TextSpace><FillStyle>solid</FillStyle><FontBeginColor>0xFF0000</FontBeginColor><FontEndColor>0xFFFFFF</FontEndColor><Border>false</Border><BorderColor>0xFF0000</BorderColor><BorderSize>0</BorderSize><BorderShadow>false</BorderShadow><CharRotation>0</CharRotation></Txt.Format></Txt.Font><Txt.InSpeed>8</Txt.InSpeed><Txt.InDelay>0</Txt.InDelay><Txt.OutSpeed>5</Txt.OutSpeed><Txt.OutDelay>0</Txt.OutDelay><Txt.PosX>26</Txt.PosX><Txt.PosY>150</Txt.PosY><Txt.Rotation>0</Txt.Rotation><Txt.LineSpace>0</Txt.LineSpace><Txt.LineAlign>1</Txt.LineAlign><Txt.StaticText>false</Txt.StaticText><Txt.DelayFrame>0</Txt.DelayFrame><Txt.SkipEnter>false</Txt.SkipEnter><Txt.LinesSyncEnter>false</Txt.LinesSyncEnter><Txt.DurationFrame>38</Txt.DurationFrame><Txt.SkipLeave>false</Txt.SkipLeave><Txt.LinesSyncLeave>false</Txt.LinesSyncLeave><Txt.LeaveFromBegin>true</Txt.LeaveFromBegin><Txt.KeepText>false</Txt.KeepText><Txt.URL>false</Txt.URL><Txt.URLAddress>about:blank</Txt.URLAddress><Txt.URLTarget></Txt.URLTarget></ParamsValue>";
function effectIn(charMovie, posMaxX, posMaxY, posX, posY, inSpeed, delayFrame) {
charMovie._visible = true;
charMovie._x = posX;
charMovie._y = posY;
charMovie._alpha = 0;
charMovie._xscale = 0;
charMovie._yscale = 0;
charMovie.inSpeed = inSpeed;
charMovie.delayFrame = delayFrame;
charMovie.onEnterFrame = function () {
if ((--this.delayFrame) <= 0) {
this._xscale = this._xscale + parseInt(this.inSpeed);
this._yscale = this._xscale;
this._alpha = this._alpha + parseInt(this.inSpeed);
if (this._xscale >= 100) {
delete this.onEnterFrame;
this._parent.g_char_num = this._parent.g_char_num - 1;
if (this._parent.g_char_num <= 0) {
this._parent.play();
}
}
}
};
}
function effectOut(charMovie, posMaxX, posMaxY, outSpeed, delayFrame) {
charMovie.outSpeed = outSpeed;
charMovie.delayFrame = delayFrame;
charMovie.onEnterFrame = function () {
if ((--this.delayFrame) <= 0) {
this._xscale = this._xscale + (2.5 * this.outSpeed);
this._yscale = this._xscale;
this._alpha = this._alpha - parseInt(this.outSpeed);
if (this._alpha <= 0) {
this._parent.g_char_num = this._parent.g_char_num - 1;
if (this._parent.g_char_num <= 0) {
this._parent.play();
}
delete this.onEnterFrame;
this.removeMovieClip();
}
}
};
}
function noActionIn(charMovie, posX, posY) {
charMovie._y = posY;
charMovie._x = posX;
charMovie._alpha = 0;
charMovie.onEnterFrame = function () {
charMovie._alpha = charMovie._alpha + 10;
if (charMovie._alpha >= 100) {
delete this.onEnterFrame;
this._parent.g_char_num = this._parent.g_char_num - 1;
if (this._parent.g_char_num <= 0) {
this._parent.play();
}
}
};
}
function noActionOut(charMovie) {
charMovie.onEnterFrame = function () {
this._alpha = this._alpha - 10;
if (this._alpha <= 0) {
this._parent.g_char_num = this._parent.g_char_num - 1;
if (this._parent.g_char_num <= 0) {
this._parent.play();
}
delete this.onEnterFrame;
this.removeMovieClip();
}
};
}
ParamsDefine = "<ParamsDefine><Txt.InSpeed caption=\"Entering speed\" type=\"integer\" min=\"1\" max=\"10\" default=\"4\"/><Txt.InDelay caption=\"Entering delay\" type=\"integer\" min=\"1\" max=\"10\" default=\"0\"/><Txt.OutSpeed caption=\"Leaving speed\" type=\"integer\" min=\"1\" max=\"10\" default=\"4\"/><Txt.OutDelay caption=\"Leaving delay\" type=\"integer\" min=\"1\" max=\"10\" default=\"0\"/></ParamsDefine>";
var param = new Array();
if (ParamsValue != null) {
paramXML = new XML(ParamsValue);
paramXML.ignoreWhite = false;
var i = 0;
while (i < paramXML.childNodes[0].childNodes.length) {
node = paramXML.childNodes[0].childNodes[i];
if ((node.nodeName == "Txt.StrFormatedText") || (node.nodeName == "Txt.Font")) {
param[node.nodeName] = node.toString();
} else {
param[node.nodeName] = node.childNodes[0].nodeValue;
}
i++;
}
param["Movie.Width"] = _parent._width;
param["Movie.Height"] = _parent._height;
param["Txt.InDelay"] = parseInt(param["Txt.InDelay"]);
param["Txt.OutDelay"] = parseInt(param["Txt.OutDelay"]);
param["Txt.PosX"] = parseInt(param["Txt.PosX"]);
param["Txt.PosY"] = parseInt(param["Txt.PosY"]);
param["Txt.Rotation"] = parseInt(param["Txt.Rotation"]);
param["Txt.LineSpace"] = parseInt(param["Txt.LineSpace"]);
param["Txt.LineAlign"] = parseInt(param["Txt.LineAlign"]);
param["Txt.StaticText"] = param["Txt.StaticText"].toLowerCase() == "true";
param["Txt.DelayFrame"] = parseInt(param["Txt.DelayFrame"]);
param["Txt.SkipEnter"] = param["Txt.SkipEnter"].toLowerCase() == "true";
param["Txt.LinesSyncEnter"] = param["Txt.LinesSyncEnter"].toLowerCase() == "true";
param["Txt.DurationFrame"] = parseInt(param["Txt.DurationFrame"]);
param["Txt.SkipLeave"] = param["Txt.SkipLeave"].toLowerCase() == "true";
param["Txt.LinesSyncLeave"] = param["Txt.LinesSyncLeave"].toLowerCase() == "true";
param["Txt.LeaveFromBegin"] = param["Txt.LeaveFromBegin"].toLowerCase() == "true";
param["Txt.KeepText"] = param["Txt.KeepText"].toLowerCase() == "true";
param["Txt.URL"] = param["Txt.URL"].toLowerCase() == "true";
delete paramXML;
} else {
param["Movie.Width"] = 400;
param["Movie.Height"] = 300;
param["Txt.StrFormatedText"] = "<Txt.StrFormatedText><Txt.StrLine><StrText format=\"default\">Aleo Flash Intro and Banner Maker</StrTetxt></Txt.StrLine></Txt.StrFormatedText>";
param["Txt.Font"] = "<Txt.Font><Txt.Format name=\"default\"><FontFormatName>default</FontFormatName><FontSize>24</FontSize><FontUnderline>false</FontUnderline><FontXScale>100</FontXScale><FontYScale>100</FontYScale><Alpha>100</Alpha><TextSpace>0</TextSpace><FillStyle>solid</FillStyle><FontBeginColor>0xFF0000</FontBeginColor><FontEndColor>0x0000FF</FontEndColor><Border>true</Border><BorderColor>0x00ffff</BorderColor><BorderSize>0</BorderSize><BorderShadow>false</BorderShadow><CharRotation>0</CharRotation></Txt.Format></Txt.Font>";
param["Txt.InDelay"] = 1;
param["Txt.OutDelay"] = 1;
param["Txt.PosX"] = 100;
param["Txt.PosY"] = 100;
param["Txt.Rotation"] = 0;
param["Txt.LineSpace"] = 20;
param["Txt.LineAlign"] = 1;
param["Txt.StaticText"] = false;
param["Txt.DelayFrame"] = 20;
param["Txt.SkipEnter"] = false;
param["Txt.LinesSyncEnter"] = false;
param["Txt.DurationFrame"] = 10;
param["Txt.SkipLeave"] = false;
param["Txt.LinesSyncLeave"] = false;
param["Txt.LeaveFromBegin"] = false;
param["Txt.KeepText"] = false;
param["Txt.URL"] = false;
param["Txt.URLAddress"] = "about:blank";
param["Txt.URLTarget"] = "_blank";
}
if (param["Txt.StrFormatedText"] != null) {
paramXML = new XML(param["Txt.StrFormatedText"]);
paramXML.ignoreWhite = false;
param["Txt.LineNum"] = paramXML.childNodes[0].childNodes.length;
var i = 0;
while (i < paramXML.childNodes[0].childNodes.length) {
node = paramXML.childNodes[0].childNodes[i];
param[(node.nodeName + ".") + i] = node.toString();
i++;
}
delete paramXML;
}
if (param["Txt.Font"] != null) {
paramXML = new XML(param["Txt.Font"]);
paramXML.ignoreWhite = false;
var i = 0;
var format_name;
while (i < paramXML.childNodes[0].childNodes.length) {
node = paramXML.childNodes[0].childNodes[i];
format_name = node.attributes.name;
param[(node.nodeName + ".") + format_name] = new Array();
var j = 0;
while (j < node.childNodes.length) {
childNode = node.childNodes[j];
param[(node.nodeName + ".") + format_name][childNode.nodeName] = childNode.childNodes[0].nodeValue;
j++;
}
param[(node.nodeName + ".") + format_name].FontSize = parseInt(param[(node.nodeName + ".") + format_name].FontSize);
param[(node.nodeName + ".") + format_name].FontUnderline = param[(node.nodeName + ".") + format_name].FontUnderline == "true";
param[(node.nodeName + ".") + format_name].FontXScale = parseInt(param[(node.nodeName + ".") + format_name].FontXScale);
param[(node.nodeName + ".") + format_name].FontYScale = parseInt(param[(node.nodeName + ".") + format_name].FontYScale);
param[(node.nodeName + ".") + format_name].Alpha = parseInt(param[(node.nodeName + ".") + format_name].Alpha);
param[(node.nodeName + ".") + format_name].TextSpace = parseInt(param[(node.nodeName + ".") + format_name].TextSpace);
param[(node.nodeName + ".") + format_name].FontBeginColor = parseInt(param[(node.nodeName + ".") + format_name].FontBeginColor);
param[(node.nodeName + ".") + format_name].FontEndColor = parseInt(param[(node.nodeName + ".") + format_name].FontEndColor);
param[(node.nodeName + ".") + format_name].Border = param[(node.nodeName + ".") + format_name].Border == "true";
param[(node.nodeName + ".") + format_name].BorderColor = parseInt(param[(node.nodeName + ".") + format_name].BorderColor);
param[(node.nodeName + ".") + format_name].BorderSize = parseInt(param[(node.nodeName + ".") + format_name].BorderSize);
param[(node.nodeName + ".") + format_name].BorderShadow = param[(node.nodeName + ".") + format_name].BorderShadow.toLowerCase() == "true";
param[(node.nodeName + ".") + format_name].CharRotation = parseInt(param[(node.nodeName + ".") + format_name].CharRotation);
i++;
}
delete paramXML;
}
this._rotation = param["Txt.Rotation"];
if (param["Txt.StaticText"]) {
gotoAndPlay(_currentframe + 3);
}
Symbol 11 MovieClip Frame 3
param["Txt.DelayFrame"] = param["Txt.DelayFrame"] - 1;
if (param["Txt.DelayFrame"] > 0) {
gotoAndPlay(_currentframe - 1);
}
Symbol 11 MovieClip Frame 4
function stage1_display(str, fmt_style, pos_x, chrcontainer) {
var i2 = 0;
if (fmt_style.Border) {
i2 = 0;
while (i2 < 8) {
var iShadow;
if (fmt_style.BorderShadow) {
iShadow = 0.6;
} else {
iShadow = 0;
}
var dup_x = (((fmt_style.BorderSize * 1.2) * Math.cos(((2 * i2) * 3.141593) / 8)) + iShadow);
var dup_y = (((fmt_style.BorderSize * 1.2) * Math.sin(((2 * i2) * 3.141593) / 8)) + iShadow);
chrcontainer.createTextField("t_fielddup_" + i2, i2 + 1, dup_x, dup_y, 0, 0);
var t_field = chrcontainer["t_fielddup_" + i2];
t_field.embedFonts = true;
t_field.text = str;
var t_fmt = new TextFormat();
t_fmt.font = fmt_style.FontFormatName;
t_fmt.color = fmt_style.BorderColor;
t_fmt.size = fmt_style.FontSize;
t_fmt.underline = fmt_style.FontUnderline;
t_fmt.letterSpacing = fmt_style.TextSpace;
t_field.setTextFormat(t_fmt);
t_field.autoSize = "left";
t_field.selectable = false;
t_field._xscale = fmt_style.FontXScale;
t_field._yscale = fmt_style.FontYScale;
i2++;
}
}
var chrobj = chrcontainer.createEmptyMovieClip("chrobj_", i2 + 1);
chrobj.createTextField("t_field", 1, 0, 0, 0, 0);
var t_field = chrobj.t_field;
t_field.embedFonts = true;
t_field.text = str;
var t_fmt = new TextFormat();
t_fmt.font = fmt_style.FontFormatName;
t_fmt.color = fmt_style.FontBeginColor;
t_fmt.size = fmt_style.FontSize;
t_fmt.underline = fmt_style.FontUnderline;
t_fmt.letterSpacing = fmt_style.TextSpace;
t_field.setTextFormat(t_fmt);
t_field.autoSize = "left";
t_field.selectable = false;
t_field._xscale = fmt_style.FontXScale;
t_field._yscale = fmt_style.FontYScale;
if ((fmt_style.FillStyle == "radial") || (fmt_style.FillStyle == "linear")) {
with (chrobj) {
colors = [fmt_style.FontBeginColor, fmt_style.FontEndColor];
alphas = [100, 100];
ratios = [0, 255];
matrix = {matrixType:"box", x:0, y:0, w:t_field._width * 1.1, h:t_field._height, r:(Math.PI/2)};
beginGradientFill(fmt_style.FillStyle, colors, alphas, ratios, matrix);
moveTo(0, 0);
lineTo(t_field._width * 1.1, 0);
lineTo(t_field._width * 1.1, t_field._height);
lineTo(0, t_field._height);
lineTo(0, 0);
endFill();
}
chrobj.setMask(t_field);
}
var posY;
if (param["Txt.LineAlign"] == 0) {
posY = -2;
} else if (param["Txt.LineAlign"] == 2) {
var metrics = t_fmt.getTextExtent(str);
if ((metrics.ascent == undefined) || (metrics.ascent <= 0)) {
posY = (-chrcontainer._height) + 2;
} else {
posY = -2 - metrics.ascent;
}
} else {
posY = (-chrcontainer._height) / 2;
}
chrcontainer._y = posY;
chrcontainer._x = pos_x.X;
chrcontainer._alpha = fmt_style.Alpha;
chrcontainer._rotation = fmt_style.CharRotation;
var t_margin = (t_field._width - t_field.textWidth);
pos_x.X = (pos_x.X + t_field._width) - t_margin;
}
stop();
var g_char_num = 0;
var g_charbot_array = new Array();
var i1 = 0;
var posY = param["Txt.PosY"];
var posHeight = 0;
i1 = 0;
while (i1 < param["Txt.LineNum"]) {
var str_line = param["Txt.StrLine." + i1];
if (str_line != null) {
var paramXML;
var fmt_name;
var str_text;
var line_char_num;
var charbot_line;
var charbot_str;
paramXML = new XML(str_line);
paramXML.ignoreWhite = true;
line_char_num = 0;
var charbot_line = this.createEmptyMovieClip((("effectMovie_" + g_char_num) + line_char_num) + 1, (g_char_num + line_char_num) + 1);
if (paramXML.childNodes[0].childNodes.length > 0) {
var pos_x = new Array();
pos_x.X = 0;
var char_total = charbot_line.createEmptyMovieClip("charTotal", 1);
var i2 = 0;
while (i2 < paramXML.childNodes[0].childNodes.length) {
chrcontainer = char_total.createEmptyMovieClip(("chrcontainer_" + line_char_num) + 1, line_char_num + 1);
node = paramXML.childNodes[0].childNodes[i2];
fmt_name = node.attributes.format;
str_text = node.childNodes[0].nodeValue;
fmt_style = param["Txt.Format." + fmt_name];
stage1_display(str_text, fmt_style, pos_x, chrcontainer);
line_char_num++;
i2++;
}
posHeight = charbot_line._height;
char_total._x = (-char_total._width) / 2;
char_total._y = (-char_total._height) / 2;
}
delete paramXML;
var iLineX = (param["Txt.PosX"] + (charbot_line._width / 2));
var iLineY = (posY + (charbot_line._height / 2));
if (param["Txt.LinesSyncEnter"]) {
charbot_line.delayFrame = param["Txt.InDelay"];
} else {
charbot_line.delayFrame = param["Txt.InDelay"] * i1;
}
if (param["Txt.SkipEnter"]) {
noActionIn(charbot_line, iLineX, iLineY);
} else {
var iDelayFrame;
if (param["Txt.LinesSyncEnter"]) {
iDelayFrame = param["Txt.InDelay"];
} else {
iDelayFrame = param["Txt.InDelay"] * i1;
}
effectIn(charbot_line, param["Movie.Width"], param["Movie.Height"], iLineX, iLineY, param["Txt.InSpeed"], iDelayFrame);
}
posY = (posY + posHeight) + param["Txt.LineSpace"];
g_char_num++;
g_charbot_array.push(charbot_line);
}
i1++;
}
Symbol 11 MovieClip Frame 6
if (param["Txt.DurationFrame"] < 0) {
gotoAndPlay(_currentframe - 1);
} else {
param["Txt.DurationFrame"] = param["Txt.DurationFrame"] - 1;
if (param["Txt.DurationFrame"] > 0) {
gotoAndPlay(_currentframe - 1);
} else {
gotoAndPlay(_currentframe + 1);
}
}
Symbol 11 MovieClip Frame 7
if (param["Txt.KeepText"] || (param["Txt.StaticText"])) {
gotoAndPlay(_currentframe + 2);
}
Symbol 11 MovieClip Frame 8
stop();
g_char_num = 0;
var i1 = 0;
while (i1 < g_charbot_array.length) {
var line_bot;
if (param["Txt.LeaveFromBegin"]) {
line_bot = g_charbot_array[i1];
} else {
line_bot = g_charbot_array[(g_charbot_array.length - 1) - i1];
}
if (param["Txt.SkipLeave"]) {
noActionOut(line_bot);
} else {
var iDelayFrame;
if (param["Txt.LinesSyncLeave"]) {
iDelayFrame = param["Txt.OutDelay"];
} else {
iDelayFrame = param["Txt.OutDelay"] * i1;
}
effectOut(line_bot, param["Movie.Width"], param["Movie.Height"], param["Txt.OutSpeed"], iDelayFrame);
}
g_char_num++;
i1++;
}
Symbol 11 MovieClip Frame 9
stop();
if (!param["Txt.StaticText"]) {
_parent.g_effectcount = _parent.g_effectcount - 1;
if (_parent.g_effectcount <= 0) {
_parent.play();
}
}