I want to load an external swf to an empty movie.
I want a simple action of :
- as soon as the movie starts it loads the empty movie.
My current code is :
onClipEvent (enterFrame) {
this.loadMovie (“Destaques.swf”, destaques);
}
Both the names are correct. The first the Destaques.swf is in the same folder as the main swf. The name of the empty movie is destaques.
It’s just a way to simplify putting ads in the banner for the site.
It’s the showcase section of the site I’m doing.
Could this be achieved if I imported the Destaques.swf into the main swf?
Or would problems arise?
I know little of Actionscript, but I do understand programing languages so I think I’m making that code correctly.
Just to take some explaining. That code means that when the clip the code is applied to enters it’s first frame it’ll load the movie? Right?!