;

PDA

Click to See Complete Forum and Search --> : How do I get a zoom movie to stay inside movie?


Steamer
06-11-2004, 04:50 PM
I made a simple 1 shape movie that was a gradient square,the movie size is set to 400x300 and all the movie does is in the first frame its normal size and for the second frame I scaled the shape double that size.

When I play the movie by itsself in a webbrowser it stays inside the 400x300 movie frame.When I try to place the movie inside another movie it shows the shape growing beyond the 400x300.

""How do I insert a small movie frame into a large frame with out seeing the small movie beyond its set 400x300 size?""

Thanks in advance for any help.

BTW:this is probably a generic question but I just bought koolmoves 3 days ago so I'm still noobified with it.

johnie
06-11-2004, 05:01 PM
When it is in the web browser the size of the SWF is confined by the settings in the HTML.

Your Object code in the HTML will look like this;


<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=7,0,0,0"
ID=navmovie WIDTH= 400 HEIGHT= 400>
<PARAM NAME="movie name" VALUE="URI of SWF">
<PARAM NAME="play" VALUE="false">
<PARAM NAME="quality" VALUE="high">
<EMBED NAME=movie name SRC=URI of SWF WIDTH=400 HEIGHT=400 PLAY=false
SWLIVECONNECT=true QUALITY=high>
</OBJECT>


The Heigth and Width are set in the example of above to 400. You can set it as a percent or as number in pixels if you so desire, some people desire to set it to 100% (WHich means the SWF takes up the whole webpage). KoolMoves automatically creates the values for you when you export as SWF and HTML.

From within another SWF the easiset way to control this is by loading in another SWF into a Movie Clip Target. There is a Import SWF as Object button which will do this for you. Basically instead of using LoadMovie use the import SWF as object and then adjust the bounding box. If it is still is not right then create a mask to trim of the portion you do not want.

Steamer
06-11-2004, 05:34 PM
Thank You Johnie I got the mask to do the job.