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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

parameters to size a webpage in flash 1

Status
Not open for further replies.

TaiChi56

Technical User
Mar 6, 2002
188
US
I have a presentation that I have coded to open in Fullscreen. Eveything works until it gets to the interactive webpage. The webpage is too big for the screen. Only about 3/4 of it shows. Here is the code I have to call in the movieclip. Can I put parameters in the clip to tell it to open at a certain size?

stop();
city_mc.loadMovie("multimediafestivalApril.swf",0);

}
As you see I am calling in my webpage that is called multimediafestivalApril.swf. Everything is fine except the size of the webpage. I hope I am making sense. Thank you. The secret in education lies in respecting the student. {Ralph Waldo Emerson}.
 
If you resize the city_mc clip all of the content loaded into it will also be resized. Try something like this:

city_mc._xscale=city_mc._yscale=75;
city_mc.loadMovie("multimediafestivalApril.swf",0);
 
Excellent. It worked great. Thank you.
The secret in education lies in respecting the student. {Ralph Waldo Emerson}.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top