Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Target Problems

Status
Not open for further replies.

Gasbag

Technical User
Jul 24, 2000
24
NL
I Have this movie, Loader.swf and another movie, MainMovie.swf. Now I want to &quot;Tell target&quot; from MainMovei to Loader. I know I can do this by _level0, but Loader.swf can be on different levels (level0 or level1.<br><br>So I want to relatively target _levelX from _levelX-1<br>Anybody who understands a word of this question, please reply...<br><br>Gasbag--&gt;<br><br>Gasbag's Gas-of-the-Day:<br>Hmmz.... Nice forum, I'll be back here.
 
hi there,<br><br>doesn't tell target function use with a movie that is in ur current file?? . if u want to load another movie then u will need load movie script.try it.
 
I AM using Load Movie:<br>MainPage.swf (_level0)<br>&nbsp;¦<br>&nbsp;+--+--Background<br>&nbsp;¦&nbsp;&nbsp;¦<br>&nbsp;¦&nbsp;&nbsp;+--Menu Etc...<br>&nbsp;¦<br>&nbsp;+----Loader.swf (_level1)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+----Intro.swf (_level2)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;¦<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;+----MainMovie.swf (_level2)
 
I am trying to understand what you are trying to do. You are trying to load&nbsp;&nbsp;LOADINGTEST which contains empty frames with actions. Then you want these actions to run in order accroding to the frames in LOADINGTEST, that is:<br><br>TESTINTRO first, then TESTMOVIE or TESTLOADING if not _framesloaded, then TESTEND and finally stop.<br><br>If this is what you are intending to do, it is not going to happen like you have it now. First of all, I would restructure the project in a different way. It would be easier to control other movies from the movies when they are running instead of loading from empty frames from a different movie. Although it is possible, your solution is not efficient, but here is your solution:<br><br>The problem is that when you load LOADINGTEST, it runs the first frame and from there it loads TESTINTRO, this is correct so far, but the problem is that it overwrites LOADINGTEST in _level1. TESTINTRO takes over LOADTESTING, which stops, not allowing you to continue the sequence to frame two and load TESTMOVIE. See what i mean? You need to change that first frame from LOADINGTEST and load TESTINTRO to _level2 instead of _level1. The same thing with the rest of your frames, if you want them all to run at the same time load them in _level3 and _level4. <br><br>The only thing you need to do now is to change the last frame in LOADTESTING and now not only you need to Unload _level1, but also _level2, 3, 4, etc.<br><br>That is your solution and good luck with your project. <p>Fernando Regueiro<br><a href=mailto:ferhelping@yahoo.com>ferhelping@yahoo.com</a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top