0
How use MovieClipLoader?
Explorer
,
/t5/animate-discussions/how-use-moviecliploader/td-p/659335
Feb 17, 2007
Feb 17, 2007
Copy link to clipboard
Copied
How can I load several video files to the same place on the
stage one after another dynamically? I like to load the exact
number of files from txt.
TOPICS
ActionScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Engaged
,
/t5/animate-discussions/how-use-moviecliploader/m-p/659336#M296367
Feb 17, 2007
Feb 17, 2007
Copy link to clipboard
Copied
I dont know if you can load multiple files into the same
movieClip...
to use movieClipLoader:
var my_mc:MovieClipLoader = new MovieClipLoader(this.getNextHighestDepth());
// to load into my_mc
my_mc.loadClip("your external file.mov", empty movieClip instance name);
you need to have an empty movie clip on stage to load into..
I guess you could probably use the same MovieClipLoader to load into different emptyMovieClips on stage. Not sure, as i havent tried it..
hope this helps.
to use movieClipLoader:
var my_mc:MovieClipLoader = new MovieClipLoader(this.getNextHighestDepth());
// to load into my_mc
my_mc.loadClip("your external file.mov", empty movieClip instance name);
you need to have an empty movie clip on stage to load into..
I guess you could probably use the same MovieClipLoader to load into different emptyMovieClips on stage. Not sure, as i havent tried it..
hope this helps.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
&Necromancer
AUTHOR
Explorer
,
/t5/animate-discussions/how-use-moviecliploader/m-p/659337#M296368
Feb 17, 2007
Feb 17, 2007
Copy link to clipboard
Copied
And how can i now if the first one's playback is finished and
it can start to play the next one?
The main problem how can i play the files continously after each other. I take the hint here that i can use the MovieClipLoader to make it.
The main problem how can i play the files continously after each other. I take the hint here that i can use the MovieClipLoader to make it.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Engaged
,
/t5/animate-discussions/how-use-moviecliploader/m-p/659338#M296369
Feb 17, 2007
Feb 17, 2007
Copy link to clipboard
Copied
look into the unloadMovieClip class in the help files, they
will tell you how to use it.
im gonna look into it now aswell, it could be useful for a website im doing at the moment.
if i find anything i'll let you know.
im gonna look into it now aswell, it could be useful for a website im doing at the moment.
if i find anything i'll let you know.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
&Necromancer
AUTHOR
Explorer
,
/t5/animate-discussions/how-use-moviecliploader/m-p/659339#M296370
Feb 17, 2007
Feb 17, 2007
Copy link to clipboard
Copied
Thank's i go to see it too. And thanks the future (if you
find) comment.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Engaged
,
/t5/animate-discussions/how-use-moviecliploader/m-p/659340#M296371
Feb 17, 2007
Feb 17, 2007
Copy link to clipboard
Copied
here is what im gonna be using... see if you can edit this to
your needs..
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
&Necromancer
AUTHOR
Explorer
,
LATEST
/t5/animate-discussions/how-use-moviecliploader/m-p/659341#M296372
Feb 18, 2007
Feb 18, 2007
Copy link to clipboard
Copied
I take the hint, i use NetStream class for this task. It can
use to play back local files?
It is a little bit complex for me.Where can i find simple description for it?
It is a little bit complex for me.Where can i find simple description for it?
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

