thanks for your suggestion, still I cant get it to work. all I am trying to
acomplish is a preloader that will load files in order so if it is done with
1 then load the next one and so forth. I have found some information in how
to load 5 files at the same time.

Also I was able to call the function from different buttons but for some
reason when I try to call a new function onLoadComplete it seems to make the
player to choke and get confused.

Thanks again

On 9/7/06, Peter O'Brien <[EMAIL PROTECTED]> wrote:

try subbing your code from onLoadComplete to an onLoadInit function, that
looks like it should do the trick

On 9/7/06, Helmut Granda <[EMAIL PROTECTED]> wrote:
>
> Can the MovieClipLoader class be reused?
>
> I have the following code:
>
> var myMCL:MovieClipLoader = new MovieClipLoader();
> var myListener:Object = new Object();
>
> myListener.onLoadComplete = function(targetMC:MovieClip):Void {
>     trace("loaded" + targetMC);
>     myMCL.loadClip("right2.swf", "img2");//-->This makes the Movie Loop
> and
> never load the next item.
> }
>
> myListener.onLoadStart = function(targetMC:MovieClip):Void {
>     //targetMC.stop();
>     trace("Started");
> }
>
> myListener.onLoadProgress = function(targetMC:MovieClip):Void {
>     trace("In Progress");
> }
>
> this.attachMovie("img", "img", 50);
> this.attachMovie("img", "img2", 51);
>
> myMCL.addListener(myListener);
> myMCL.loadClip("right1.swf", "img");
>
> //------
> It is straight forward, creae a Loader as well as an object and it works
> great for the first load, but once I fire the next load it fails.
Basiclly
> what I want to do is have an array with different movies that will load
to
> the users cache for later use.
>
> TIA.
> _______________________________________________
> [email protected]
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com




--
...helmut
helmutgranda.com
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to