Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
kglad #1
Re: Align a swf within the fla document
if you load into a target movieclip you can position your target to control the
location of your loaded movie. if you load into a _level then you must wait
your loaded movie has completed loading and then use the _x and _y properties
of that _level
kglad Guest
-
Align
How to align two or more object relative to the center axe of the last chosen one AND keep the position of the reference object (last picked)intact... -
Align a swf within the fla document
I have created a document within Flash MX 2004. I have used actionscripting to load a swf file into a new layer within this document. The swf... -
Align text
Hi again, Thanks for you help with my data structure problem, a hash of hashes problem did the job :-) I would like to know how to align text... -
how to Align text left & vertical align middle
Hello, I have a asp lable control, which I use to display text in, I would like to have the text display aligned in the center and vertical... -
Text Align
When I install my accesss 2000 application on some machines the application ignores the "Text Align" Property Setting in some Activex Controls(List... -
AJayL #2
Re: Align a swf within the fla document
Sounds good. Forgive me, I'm just a baby with Flash..... What type of syntax can I use with the actionscript
loadMovie() to do the x and y points?
AJayL Guest
-
kglad #3
Re: Align a swf within the fla document
you could use
_root.createEmptyMovieClip("targetMC",1); //this creates an targetM
_root.targetMC._x=100; //set the targets _x and _y propertie
_root.targetMC._y=22
_root.targetMC.loadMovie("yourswf.swf"); //yourswf wil align with its upper
left at 100,22
kglad Guest



Reply With Quote

