Ok, I have a slight problem. I have an external swf titled ssfpabout.swf. When I preview it the text loads correctly, and everything is great. However, when I load it into my main movie I am not having the text show up. I assume this is just a pointing problem, but I can't figure it out.
First off I have my dynamic text on bottom layer with instance name of fpmain_txt. Then on the next layer I have two buttons (up and down) to control scrolling.
1. On my actions layer on the main timeline I have these actions:
Then on my buttons (only displaying up_btn code)I have these actions:
2. Then my text file is saved about.txt and on the first line it has abouttext=
3. Then in my main movie I have this action to call the swf =
I also clicked embed on the ssfpabout.fla to see if that was the problem, but it wasn't.
Can someone please help me out, and get my text displaying properly!
much Thanks,
nofx1728
First off I have my dynamic text on bottom layer with instance name of fpmain_txt. Then on the next layer I have two buttons (up and down) to control scrolling.
1. On my actions layer on the main timeline I have these actions:
Code:
stop();
loadText = new LoadVars();
loadText.load("about.txt");
loadText.onLoad = function() {
fpmain_txt.text = this.abouttext;
}
Then on my buttons (only displaying up_btn code)I have these actions:
Code:
on (press) {
onEnterFrame = function() {
this.fpmain_txt.scroll -= 1;
}
}
on (release, releaseOutside) {
delete onEnterFrame;
}
2. Then my text file is saved about.txt and on the first line it has abouttext=
3. Then in my main movie I have this action to call the swf =
Code:
_root.ssfp_mc.topmenu_mc.about_mc.onRelease = function() {
if (_root.ssfp_mc.section != "ssfpabout.swf") {
_root.ssfp_mc.section = "ssfpabout.swf";
_root.ssfp_mc.transition.gotoAndPlay("closing");
}
}
I also clicked embed on the ssfpabout.fla to see if that was the problem, but it wasn't.
Can someone please help me out, and get my text displaying properly!
much Thanks,
nofx1728