Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How use MovieClipLoader?

Explorer ,
Feb 17, 2007 Feb 17, 2007
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
382
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Feb 17, 2007 Feb 17, 2007
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.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 17, 2007 Feb 17, 2007
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.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Feb 17, 2007 Feb 17, 2007
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.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 17, 2007 Feb 17, 2007
Thank's i go to see it too. And thanks the future (if you find) comment.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Feb 17, 2007 Feb 17, 2007
here is what im gonna be using... see if you can edit this to your needs..
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 18, 2007 Feb 18, 2007
LATEST
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?
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines