- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHi all.
I have a 2 minute video at 320X240 that I want to play on an autorun CD.
The movie is 500mb inquick time or about 7mb in mpeg1
When I import it to flash the files size of the swf or projector exe end up at about 45mb, which ever video I import, I know it remuxes it using the in built codec but how do I get around that?
The autorun CD takes about 45 secs to load because to the file size etc, and I'd like to use the mpeg1 file so it can fit on a business card sized cd. Any ideas on how to do this?
Thanks, Rob.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: stef4sPosted on 2004-01-19 at 23:24:02ID: 10153087
If there are scene changes inside the moviethen split the movie into several swf files. call the files scene1.swf, scene2 etc.
age)
then write the following action at the end of each clip. _root.endClip();
you should have several loose swf files now.
Now make the main exe movie in a seperate fla file.
Create a rectangle 320*240 in size. Convert it to a symbol. edit the symbol. select the rectangle. With your allign tool select "to stage". then click Align left edge and Align top edge.
Ok now that you have that. goto the main timeline again. Give the new movie an instance name of "stage".
(this should all be on frame 1)
now enter this code onto frame 1.
var Index = 1;
var TotalClips = 11; //total number of clips /scenes
function endClip(){
loadMovie("scene"+Index,st
Index++;
if(Index > TotalClips){
trace("movie finished")
}
}
this main movie will then be your exe
let me know if this helps