IDE :: EmptyMovieClip / Stage Position?
Aug 21, 2009
I'm having a heck of a time getting my movie clip on the stage postion where I want it (and eventually I'll want 8-10 movie clips running on different stage locations at the same time.) I've tried numerous scripts methods, this is the last one and it's still not moving out of 0 position:
this.createEmptyMovieClip("my_mc", 1);
my_mc.createEmptyMovieClip("container_mc",2);
var my_mcl:MovieClipLoader = new MovieClipLoader();
my_mcl.loadClip("textgauge1.swf", my_mc.container_mc),{x_:371.6, y_:76};
View 2 Replies
Similar Posts:
Feb 9, 2011
i want to take btn1 position half wwidth of own x position on stage
View 1 Replies
Jan 13, 2011
I have a sprite that I zoom out using the sprite.z property. Once the z property has been modified the sprite x and Y values do not match the stage x and y real value. So far so good and what I was expecting!
What I want to accomplish is that when the user clicks the stage the sprite tweens to where the mouse was clicked but I don't know what x and y position to send to the sprite. ( since stage 200,200 is something like 400,400 for the sprite depending on z value)
I tried Utils3D.projectVector using Matrix3D of the perspectiveProjection of the stage without success. (i.e. I get Vector3D(Infinity, Infinity, NaN))
I could fallback to scalex/scaley but sprites.z gives me the correct scale, perspective projection, paralax scrolling since I have sprites on different z level all for free. I would have to recode all that.
View 5 Replies
Nov 3, 2009
lets say i have a sprite on the stage and one movieclip inside it. now i want to tween or just set that movieclip x and/or y position according to stage position. so for example i want to set mc.y = - 100; (by which i mean -100 to stage, not sprite which mc is in.)
View 2 Replies
Feb 27, 2006
i saw a thread while ago .. that always position a movieclip in the middle of the stage even if the stage or window resize any1 can point me to it
View 3 Replies
Apr 23, 2010
I have a stage bigger than the size of a browser, and I have a camera to navigate around the area.Now when I click on a button, I will have something pop up blocking the whole browser, like a lightbox effect with another box on top of the blocker.The problem now is, when the blocker pops up, its position is not on the TOP LEFT corner of the browser. I've tried stage.align, but it would makes the camera or other object on stage position run.So is there any other way I could get the blocker to position according to the browser, not the stage?[code]
View 1 Replies
Dec 18, 2004
Is it possible to attach some script to a dynamically created movie Clip?
View 7 Replies
Mar 19, 2005
I did a search but couldn't find exactly what I was looking for. I'm loading an external jpg into an emptyMovieClip (AS1) on the _root timeline and I want to implement a preloader so when the jpg loads it fades in, not show up abruptly.
Here's my code:
Code:
// Load an external Image
function loadImage(imageFile) {
var imageFile;
[code].....
View 1 Replies
Apr 9, 2009
I have 9 MC on stage with an instance of S1 to S9.
what I am try to do is position each clip beside each other on the x coordinate.
in AS2 it would be something like this
Code:
for (var d:Number = 0; d<9; d++) {
this["S"+d]._x = this["S"+d]._x -this["S"+d]._width/2
}
[Code]....
View 1 Replies
Nov 25, 2004
When I create a new mc:
Code:
_root.createEmptyMovieClip("container", 1);
and try to attach one into it:
[Code]....
Even when I give the "container" content with [.lineTo()], nothing continious to happen.
I guess it has something to do with the 'emptyness' of the mc, but how to solve?
View 3 Replies
Dec 21, 2006
I'm clearly not caffinated enough (or too much!) because I can't seem to place my emptyMovieClips where I want them.
[Code]...
View 2 Replies
Nov 25, 2004
Fairly simple question:When I create a new mc:
Code:
_root.createEmptyMovieClip("container", 1);
and try to attach one into it:
[code]......
View 3 Replies
Oct 3, 2003
I'm loading external .swfs into an EmptyMovieClip. but i want to change the background color dynamically for some of the swfs but not all. that is, sometimes the background color is white sometimes black. how do i do this?
View 3 Replies
Jun 18, 2010
I have a function that I am creating. It basically grows a line from point a to point bRather that work with specific points and all in actionscript, I was hoping to drop down some movieclips to be used as waypoints. When the movie starts those mc locations are translated into variables and the mc is removed.
View 7 Replies
Feb 5, 2009
My problem is that I cant figure out how to draw my movieclip if I dynamicly name it.
However If I address it by using its actual name it works fine.
I have included both working and non-working code.[code]....
View 2 Replies
Feb 17, 2009
I am loading an swf file into an EmptyMovieClip container called "container" using loadClip. I cant figure out how to reference the different instances inside the loaded swf.[code]...
View 5 Replies
Aug 24, 2008
when you create an empty movie clip, the registration point is 0,0 as default, I read you can change this by defining the X&Y but my movie Clip's position is defined by stage width and height.Is there another way to define the registration point~?
View 8 Replies
Aug 4, 2004
say i got this empty movie clip which loads .jpg files.... the dimensions of the empty movie clip is 800 by 550... by default, the top most left of the external .jpg image will load onto the 0 by 0 point of the movie clip... but i want it to display the .jpg image in the center of the empty movie clip...
View 2 Replies
Sep 28, 2004
well like the title says, ho can i set the properties of a mc's created with createEmptyMovieClip , getting a real nag , have tried all kind of things , for loops , etc.
for (i=0; i<=10; i++) {
this.createEmptyMovieClip(["rondje"+i], i);
lineStyle(1, Black, 100);
[Code].....
View 2 Replies
Jan 5, 2006
I'm trying to create a scroller menu. The container movieclip will hold several copies of a clip in the library. So I'm trying to create the clip dynamically since it's width will be varying depending on the number of elements it contains.
But when I try to use the attachMovie method on my newly created empty movieclip, nothing shows up! The test_mc will attach if I just say _root.attachMovie, so I don't know if it's a path issue or if emptyMovieClips can't have other clips attached or what.
var emptyClip:MovieClip = this.createEmptyMovieClip("empty_mc", 9);
emptyClip._x = Stage.width / 2;
emptyClip._y = Stage.height / 2;
emptyClip._width = 300;
emptyClip._height = 300;
emptyClip.attachMovie("test_mc", "test_mc", 20);
View 3 Replies
Oct 2, 2007
I'm having trouble getting an emptymovieclip which i have created to draw with to appear below the top layer. . . is LineTo always at the top depth?
View 1 Replies
Jun 19, 2008
I have 3 picture slideshows usings XML, the pictures will be changing form time to time that's why i needed it like this.Every slideshow is inside a folder, ej: gal1, gal2, gal3.In every folder i have the images, the flash file (gallery.swf) and the xml file.I have the main movie in wich i have a container where most data shows... and in wich i made an emptymovieclip, called "galMC" (now i know i could have used createEmptymovieclip, but maybe next time)[code]I have tried various methods but i always end up unloading "galMC"...the problme i think is that if i reload the container and click on another slideshow (gal2 or gal3), i see only the first image of the selected slideshow and then and then it starts showing the first slideshow that was loaded, so i guess i need to really UNLOAD that slideshow to load another and this is not hapenning.
View 1 Replies
Sep 28, 2008
I'm using this source file to create my photo gallery:How would I modify this code to make the external JPEG load in the center of the movie?
============
MovieClip.prototype.fadeIn = function() {
this.onEnterFrame = function() {
[code]....
View 2 Replies
Jul 14, 2005
well like the title says, ho can i set the properties of a mc's created with reateEmptyMovieClip its getting a real nag , have tried all kind of things , for loops ,
for (i=0; i<=10; i++) {
this.createEmptyMovieClip(["rondje"+i], i);
lineStyle(1, Black, 100);
[code].....
View 3 Replies
Aug 4, 2004
i got this empty movie clip which loads .jpg files.... the dimensions of the empty movie clip is 800 by 550... by default, the top most left of the external .jpg image will load onto the 0 by 0 point of the movie clip... but i want it to display the .jpg image in the center of the empty movie clip....my guess is i have to get the dimensions of the external .jpg and then calculate from there...
View 2 Replies
Aug 29, 2010
I have built a site in AS2 and would like to know the position of a ball so that I can move a sign to it always.The whole website is in AS2, but I think I have written an incomplete code below for AS3. I need it for AS2 because the whole site is in AS2. The get position of ball is wrong, but I just wanted to throw in some ideas eg.
Code:
// get position of ball
ball_mc.addEventListener(<what goes here?>, ball_pos);
function signMove(Event:MouseEvent):void{[code]..........
View 3 Replies
Oct 27, 2009
I have a movieclip thats inside another movieclip..lets call them mc1 and mc2..
the problem is that I want to get the position of mc2 relative to the stage...and not to mc1..is there any simple way to do this?
View 1 Replies
Nov 16, 2009
It this part in qeustion "if(ball._x + ball.width / 2 > 400){" should the trace function be recognised when the half of th ball moves over the 400 mark.
Its doesnt though and i dont know why?
ball.dx = 10;
ball.dy = 10;
ball.onEnterFrame = function(){
[Code]....
View 4 Replies
Sep 27, 2007
im working on a slider that i want to position to the stage according to the _ymouse. Here's the problem. I'm using some code that i really like because of the ease on it. But i'm having problems getting it to position where i want it and control it so that the top and bottom of the clip refers to the stage...if that makes any sense. I did not write the code, but i've changed it so that its vertical as you'll see. Everything "works" except aligning it to the stage according to _ymouse
[Code]...
View 1 Replies
Apr 11, 2011
var boaty:boat = new boat();
boxy.addChild(boaty);
How do I refer to the stage position (what we see on screen (might be called something else)) of a object added like this (boaty
View 8 Replies