|
|
Search Tutorials
1: The first thing is create a text file and name it example.txt
Inside this text file write: web=
Save it in the same directory (folder) as you will save your fla.
Now open flash and in the first frame we will write some script so that we can load an external text file into our movie.
loadText = new LoadVars();
loadText.load("example.txt");
loadText.onLoad = function(success) {
if (success) {
web.html = true;
web.htmlText = this.example;
}
2: Now we write our general function that we will use to do something and that is controlled from our text file.
loadMov = function (mov) {
_root.holder_mc.loadMovie(mov+".swf");
};
...where _root.holder_mc is an empty movie clip in our _root, which is used as a container for our external movies.
3: Since flash can format this text file as html, we can imagine that html tags can be used within this text file. So we can write within our text file:
example= As we said, flash can format our text file as html so
But as we can see, we use asfunction:loadMov,myMovie1
asfunction is our html code needed to communicate functions from html to flash, loadMov is the name of our function (remember point 2 in where we write the function in flash? ). and myMovie1 is the name of our external movie clip without the .swf extension that we want to load in flash.
|
||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||
|