I can’t figure out why this code doesn’t work. I am banging my head here!
ShowBanner.onEnterFrame = function() {
this.loadVariables("[http://www.mysite.com/echo.php](http://www.mysite.com/echo.php)", 0);
this.loadMovie(this.banner, 0);
}
echo.php simply echos “banner=http://www.mysite.com/flashfile.swf”
I used a dynamic input text box to catch the value of banner - and it works fine! So I know the loadVariables is working but I can’t get loadMovie to actually load the movie. And if I replace this.banner with the text of the path to flashfile.swf, it loads the movie perfectly.
What is wrong that this.banner (which holds the right URL) yet loadMovie will not open the file?