GOOGLE MAPS ERROR - doesnt appear when its swf is being called by the main swf
Good Afternoon,
Im trying to solve a problem that i have in a flash presentation. Im trying to call to the main.swf other swf that contains some text and a google map. The swf that contains the google map is working fine...but everytime i play the main one, the text appears but the gmap doesnt.
can anyone help me?
the code that i put on the main.swf refering to the google maps one is below (i followed the logic of the gallery that came with the presentation .fla):
// google-maps module
case "google-maps" :
if (firstLoad != true) {
var move1Content:Tween = new Tween(contentBG_mc, "_x", Strong.easeIn, contentBG_mc._x, -500, 0.5, true);
} else {
var move1Content:Tween = new Tween(contentBG_mc, "_x", Strong.easeIn, -500, -700, 0.5, true);
}
move1Content.onMotionFinished = function() {
resetAll();
contentBG_mc.container_mc._visible = true;
loadMovie(asset, contentBG_mc.container_mc);
var move2Content:Tween = new Tween(contentBG_mc, "_x", Strong.easeOut, Stage.width+500, Stage.width/2, 0.5, true);
move2Content.onMotionFinished = function() {
var move3Content:Tween = new Tween(contentBG_mc.container_mc, "_alpha", None.easeOut, contentBG_mc.container_mc._alpha, 100, 1, true);
};
};
*and please talk to me like i was 3 years old
thank u in advance..
Joana