Load Movie Problem? EXPERTS ONLY

I have followed the guide on this webpage about creating a blank movie page using action script. I load in the swf file that I want (intro) i hear the sound but can’t see the text effects? Here is the code? I think that it has somthing to do maybe with my regesitry marks. Both moive are the same size and have the same fps? Perhaps there is a problem when I get the Control Variable?
For my intro swf.
Scene 1
actions for frame 1
i = “0”;
kern = “15”;
startx = getProperty(“control”, _x);
text = “University Of Wisconsin Stout”;
actions for frame 2
duplicateMovieClip(“control”, “control” add i, i);
set("/control" add i add “/:char”, substring(text, Number(i)+1, 1));
setProperty(“control” add i, _x, Number(startx)+Number((i*kern)));
tellTarget (“control” add i) {
gotoAndPlay(2);
}
i = Number(i)+1;
actions for frame 4
if (Number(i)>=Number(length(text))) {
gotoAndPlay(5);
} else {
gotoAndPlay(2);
}
actions for frame 154
stopAllSounds();
stop();
Symbol Definition(s)
control
actions for frame 1
stop();
actions for frame 2
i = “0”;
guide = 1+Number((int(random(5))30));
while (Number(i)<5) {
i = Number(i)+1;
duplicateMovieClip(“mover”, “mover” add i, i);
set(“mover” add i add “:start”, Number(guide)+Number((5-i)));
set(“mover” add i add “:name”, i);
set(“mover” add i add “/letter:char”, char);
setProperty(“mover” add i, _alpha, 20
(6-i));
tellTarget (“mover” add i) {
gotoAndPlay(start);
}
}
play();
actions for frame 120
removeMovieClip(“mover1”);
play();
actions for frame 149
stop();
fade
actions for frame 1
break1:char = eval("…/:char");
tellTarget (“break1”) {
gotoAndPlay(2);
}
actions for frame 30
stop();
tellTarget ("…/") {
}
actions for frame 1
break2:char = eval("…/:char");
tellTarget (“break2”) {
gotoAndPlay(3);
}
actions for frame 30
stop();
actions for frame 1
break3:char = eval("…/:char");
tellTarget (“break3”) {
gotoAndPlay(4);
}
actions for frame 30
stop();
actions for frame 1
break4:char = eval("…/:char");
tellTarget (“break4”) {
gotoAndPlay(5);
}
actions for frame 30
stop();
mover
actions for frame 30
if (Number(name)<>1) {
…:name = name;
tellTarget ("…/") {
removeMovieClip(“mover” add name);
}
}
stop();
actions for frame 60
if (Number(name)<>1) {
…:name = name;
tellTarget ("…/") {
removeMovieClip(“mover” add name);
}
}
stop();
actions for frame 90
if (Number(name)<>1) {
…:name = name;
tellTarget ("…/") {
removeMovieClip(“mover” add name);
}
}
stop();
actions for frame 120
if (Number(name)<>1) {
…:name = name;
tellTarget ("…/") {
removeMovieClip(“mover” add name);
}
}
stop();
actions for frame 150
if (Number(name)<>1) {
…:name = name;
tellTarget ("…/") {
removeMovieClip(“mover” add name);
}
}
stop();
break
actions for frame 1
stop();
actions for frame 2
letter:char = char;
stop();
actions for frame 3
letter:char = char;
stop();
actions for frame 4
letter:char = char;
stop();
actions for frame 5
letter:char = char;
stop();

For my fla that I’m trying to the intro.swf in.
This is in the first frame?
_root.createEmptyMovieClip(“container”, 10);
loadVariables(“intro.swf”, “container”);
loadMovie(“intro.swf”, “container”);
container._x = 0;
container._y = 0;

I’m not an expert, so I can’t help you, but I just wanted to tell you 2 things:
Use the code tag, otherwise your code is unreadable
You code will be unreadable anyway because you mix [SIZE=4]Flash 4 and FLash MX syntax[/SIZE].

pom :hat: