Thank you.
a fellow flasher,
-Troyson
Just go to "Modify/movie" and you will see textboxes for width and height.
Then, after you publish your movie, open the HTML in a text editor. You
will see those same dimensions in the object and embed tags. If you would
like your movie to fill the browser screen then just change those dimensions
to 100% and 100% in the HTML file.
Hope this helps,
--
John Collier
Multimedia Relations
www.HostUtopia.com
Troyson <Tro...@hotmail.com> wrote in message
news:39735371...@hotmail.com...
The X and Y Scale properties always start out at 100 (or as set within the
editor).
Regards
Henrik Juhl
On(release)
Set Property ("/mc", X Scale) = 10
End On
Now, to get your specific width and height, simply use a little algebra:
x1 = the original width
y1 = the original height
x2 = the desired width
y2 = the desired height
say you know how wide you want the image to be, but you don't know how high
it would be. Simply plug in the values you do know in the following
formula:
y1 * x2 / x1 = the new height
input these numbers into the x and y fields in the Object Inspector. You
can then go to the Transform Inspector and see what percentage scale it is.
That's the number you write in the action script. If the Transform
Inspector said you changed it to 16.4% of the original, simply change the
code to:
On(release)
Set Property ("/mc", X Scale) = 16.4
End On
Sorry for the confused reply...I'm sorta flaked out today.
I had to change a few things around to get what I needed, but your info put me
on the right track.
Thanks again.
-Troyson