I'm a beginner at using Flash. I have two Flash movies that I want to combine into one. The problem is that one of them is a dynamic "gallery" movie that is created in real time using JavaScript and XML, like this:
<script type="text/javascript" language="javascript">
sifr_prepare({sSelector:"#content h2", sFlashSrc:"/swf/sifr/bembostd.swf", sColor:"#FFFFFF", sLinkColor:"#FFFFFF", sBgColor:"#250868", sHoverColor:"#FFFFFF", sWmode:"transparent", sFlashVars:"textalign=right"});
var FO = {movie:"/swf/home.swf",width:"750",height:"187",majorversion:"7",build:"0",wmode:"transparent",flashvars:"gurl=home_slideshow.xml" };
UFO.create(FO,"opener");
</script>
When I view "bembostd.swf", it's just a plain text message that says "Please pass in your text", so I guess it's for generating dynamic text. The file "home_slideshow.xml" is a list of images that are displayed in the movie. When I view "home.swf", all I see is a part of the actual gallery movie that's displayed on the website (i.e., the graphic wrapper for the gallery images).
The bottom line is that I want the first movie, which I've made myself, to play and then fade into the second movie, which uses these three files. Do I need to program some ActionScript in the first movie that does this? Or is it done using JavaScript in the web page where I want to put it?
<script type="text/javascript" language="javascript">
sifr_prepare({sSelector:"#content h2", sFlashSrc:"/swf/sifr/bembostd.swf", sColor:"#FFFFFF", sLinkColor:"#FFFFFF", sBgColor:"#250868", sHoverColor:"#FFFFFF", sWmode:"transparent", sFlashVars:"textalign=right"});
var FO = {movie:"/swf/home.swf",width:"750",height:"187",majorversion:"7",build:"0",wmode:"transparent",flashvars:"gurl=home_slideshow.xml" };
UFO.create(FO,"opener");
</script>
When I view "bembostd.swf", it's just a plain text message that says "Please pass in your text", so I guess it's for generating dynamic text. The file "home_slideshow.xml" is a list of images that are displayed in the movie. When I view "home.swf", all I see is a part of the actual gallery movie that's displayed on the website (i.e., the graphic wrapper for the gallery images).
The bottom line is that I want the first movie, which I've made myself, to play and then fade into the second movie, which uses these three files. Do I need to program some ActionScript in the first movie that does this? Or is it done using JavaScript in the web page where I want to put it?