ActionScript 2.0 :: CS3 Change Movieclip Position
Jan 13, 2010
I've made an image slider in flash and need it to slide out at it's current position before changing scenes. The code i'm using is -
[Code]...
on a button but the scene changes before the movieclip has a chance to slide out. Is there anyway of telling the actionscript to wait before jumping scenes between the code?
View 2 Replies
Similar Posts:
Mar 16, 2009
I've made an image slider in flash and need it to slide out at it's current position before changing scenes.
The code i'm using is -
onClipEvent(load) {
_root.newXpos = 0000
speed = 10
[code]...
I need the '_root.newXpos = 0000' to tell the movieclip to stay in the X position it is currently in (it will be different each time as the user can move the movieclip via buttons, so a simple Xpos = 0000 won't do)Alternatively, I've tried adding -
on (press) { _root.newYpos = 476.2;
if (_root.Ypos =476.2);
gotoAndPlay ("Pxcotos", 1);
}
on a button but the scene changes before the movieclip has a chance to slide out.
View 4 Replies
Apr 5, 2010
I have 4 movieclip in the stage. Its instance names are mc_1, mc_2, mc_3, mc_4.
To change the x position of this movieclip I can use the below AS 2.0 code. It is working fine.
for (i=1; i<=4; i++) {
eval("mc_"+i)._x += 10
}
I like to know how to write this statement in AS 3.0.
View 4 Replies
May 4, 2011
Is there any way to define a movieclip position which is already on the stage?
View 7 Replies
Jun 2, 2011
I have an xml flash gallery at a .swf file and i want to load this .swf to main.swf. So, i use the code:
[Code]....
aligned to the center of main.swf. How can i move this created movieclip to wherever i want with some code? I tried this:
MyGalleryContainer.y = 200;
MyGalleryContainer.x = 50;
with no results.
View 1 Replies
Jun 19, 2009
I'm making a portfolio site in flash. I've placed all these items horizontal in a movieclip (content_MC). In a layer on top of where this movieclip is placed in, I've got a left and a right arrow. What I want is to move this horizontal movieclip (with tweener) left and right by pressing the arrows. For example: when I press the right arrow, the content_MC should move -900px to the left. How can this be done? And if the user reaches the end of the movieclip (with 5 items that would be 4 clicks) the movement should disable.
View 9 Replies
Apr 23, 2006
I have a list of collapsible move clips. When any of the clips is closed or opened the rest or the clips in the list react by changing position. I had this running with and on enter frame event. But that was a memory hog when too many items were in the list. So what I want to do is this. When any clip is closed or opened it triggers this function
Code:
function resetY() {
for (var i = order; i>=many; i++) {
this.onEnterFrame = function() {
_y = previousitem._y+previousitem.box._height;
roundB4me = Math.ceil(previousitem._y+previousitem.box._height);
[Code] .....
View 4 Replies
Jul 17, 2004
can someone explain the logic of circular motion (them radians and degrees). I've found the code for it and modified it a bit to make it do what I want. But I haven't a clue as to how it works.. This is a slightly modified code taken from the Kirupa Tutorial.
[Code]...
View 1 Replies
Oct 21, 2011
I have some little listener.
stage.addEventListener(Event.RESIZE,rozmiar1);
function rozmiar1(e:Event):void
{
ofertaBTN.oCenter.width=(14.59*stage.stageWidth)/100;
ofertaBTN.oRight.x = ofertaBTN.x+ofertaBTN.oLeft.width +ofertaBTN.Ocenter.width;
}
But only ofertaBTN.oCenter.width is changing. oRight is not responding and I get error #1010.
View 1 Replies
May 2, 2011
I have two movieclips in the centre of my stage. One is on top of the other and fade's between them using left/right buttons.I want to change this so that they slide in like a jQuery slider does. I don't want to change the initial position of the movieclips (on top of each other) just change the fade effect to a slide in.
View 1 Replies
Jul 17, 2004
explain the logic of circular motion (them radians and degrees). I've found the code for it and modified it a bit to make it do what I want.But I haven't a clue as to how it works..This is a slightly modified code taken from the Kirupa Tutorial.
xcenter = 0;
ycenter =0;
onClipEvent (enterFrame) {[code]....
The above code will change the position of the movieClip at every 22.5 degrees (thereby making sixteen distinct stops) and will trace a circle of radius 100 px. concept behind the math equations?
View 1 Replies
Oct 25, 2010
The other is a scrub that manipulates a MovieClip, but tracks a change in mouse position from click to release, instead of tracking the changes in position of a slider playhead. But here is the download for that one:(sorry not a link due to not having over 50 posts yet, you will need to copy and paste)I have found plenty of AS1+2 ways of doing this idea, yet just haven't found any solid AS3 versions.I am currently in a class to learn Actionscript and have tried to figure out this problem yet I am just not yet to that level.
View 0 Replies
Nov 19, 2009
I added a Menu_mc on my stage. Initially, this should be at the center of the stage and when I click on it, it will tween on the upper left corner of the browser. However, when I resize the browser, the Menu_mc goes back to the center of the screen.
I have tried separating a different actionscript file where it is specifically for initialization of the object and another one for resizing. And then when I call it on my main AS file it goes like this:
Code:
// Add the symbols to stage
var Menu_mc = new Menu_MC();
addChild(Menu_mc);
[code]...
But it seems futile.
View 6 Replies
Jan 2, 2010
If I have several items that move across the screen but the user can click any of them at any time, how do I record the current position of any of the items item in order to use that data to change the position of the item after the user clicks?
This is what I am doing: I have 11 images that slide accross the screen. The user can click any of them at any time. When he clicks one I am scaling the image so it looks like it is comming forward (z axis) and then the rest of the images are scaled down so it looks like they are going back on z axis. So what I am trying to do is get the current position of the image when the user clicks the image so that I can use that to correctly estimate the scaling and moving of the image to make it look like it scales from the center and not from the top left corner. So if have a variable that gets the current position of the image being clicked I'm thinking I can change its position using something like: x = currentposition + -45;
View 9 Replies
May 13, 2010
I'm hoping someone can solve this headache. Basically, I want a movieclip to move to the position of each of my buttons from any position along my x axis. Therefore, the movieclip needs to 'flip' to face the way it is traveling.At the moment I have the movieclip moving to the mouse x axis when I ROLLOVER the button and stop following the mouse when I ROLLOUT but the code won't flip the movieclip so I must have something wrong...
btn.addEventListener(MouseEvent.ROLL_OVER,followCa t);
btn.addEventListener(MouseEvent.ROLL_OUT,stopCat);
btn02.addEventListener(MouseEvent.ROLL_OVER,follow Cat);
btn02.addEventListener(MouseEvent.ROLL_OUT,stopCat );
[code]....
View 0 Replies
Jul 3, 2009
setting a position of movieclip called red x and y position within a movieclip called background
Code:
background.redsquare.x = 300;
background.redsquare.y = 300;
comes up with TypeError: Error #1010: A term is undefined and has no properties.
setting a position of movieclip called red x and y position withen a movieclip called background
Code:
redsquare.x = 300;
redsquare.y = 300;
This works fine but how can that be when surely you must access the red withen the background rather then just accessing red?
View 3 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 3, 2010
What i'd like to do is have a menu/site map that adjusts when you click on a certain icon. For example, I have a AS3.0 flash file with, say, 5 keyframes with 5 buttons that are in different positions on each key frame. The buttons are set to gotoAndPlay the various keyframes. I can set up a tween that links frame 1 to 2, 2 to 3 etc. but what I would like is a tween from, say, 1 to 3, then 3 to 5, then 5 to 1 - basically in a random order rather than sequentially through the key frames. I could set each of these tweens up individually but the site is for a portfolio that I would like to keep adding to and to do this individually would mean an ever increasing amount of tweens.Basically, is there a way to get a 'MovieClip' to move from Position A in keyframe 1 to Position B in another keyframe without a set of tween frames? I'm sure this is simpler than I am making it sound but I don't seem to be able to work it out.
View 1 Replies
Jun 27, 2006
using the following jumpTo script as a guide how do I write an if statement for a function that will basically ask "if the movieclip is at position 3 stay there, otherwise jumpTo position 2"?
Code:
var bg1x = new Array(0, -1280, -1014, 0);
function jumpTobg1X(number) {
gradientNav_mc.newX = bg1x[number];
}
I have tried a bunch of if/else statements but I can't get it working. I can't figure out how to write it properly. I tried something like this:
[Code]...
View 2 Replies
Jan 26, 2011
Okay I have a script in which I have added an image to the stage. It is absolute centered. I then have another with is on top but much bigger. I would like the big image to move opposite of my mouse position on the smaller image. ie: cursor is on bottom left corner the bottom left corner of the larger image is in the same spot. And the same thing for any other area.
I have tried many different ways but to no avail. I have done research but no one has been able to give me a solid answer. Anyone know of a way to accomplish this. Keep in mind this it needs to work regardless of the image size.
View 1 Replies
Feb 10, 2010
I have a movie clip called "myMC". I set its x value as such:
[AS]
var myMC:MovieClip = new MovieClip();
addChild(myMC);
myMC.x = 100;
[Code]....
I know I could proboly acheive this with a math equation but is there a function that can get the exact global position of "myShape"? So that I can position another movieclip or sprite around that movieclip?
View 3 Replies
Oct 22, 2009
I have a movie with on stage three rows of three movieclips, so 9 in total. I would like to change their positions randomly (time interval function) to x- and y-coordinates in the way that they "shuffle" each time. So for example, mc01 changes position to the positions of mc08, while mc08 goes to another position etc. So 9 changes to fixed coordinates eacht interval.
View 5 Replies
Jun 13, 2011
My question is fairly straight forward: Is there a way to move the position of the mouse?within confines of the stage)I tried changing the value of mouseX/mouseY but it shows the following errors:I:FlashFlash ClassesMazegameMaze.as, Line 98 1178: Attempted access of inaccessible property mouseX through a reference with static type game:Maze.I:FlashFlash ClassesMazegameMaze.as, Line 98 1059: Property is read-only.
View 6 Replies
Aug 6, 2011
i wan to change my mouse coordinate to x->0, y ->0, possible?
View 3 Replies
May 17, 2011
I would like to draw a grid in perspective and draw a circle in in te left bottom corner.But I am not able to get it right.[code]...
View 1 Replies
May 9, 2009
I started using Flash again after a "brief" hiatus (the last time I used it, Flash was on it's MX version ).I am trying to create an animation in which I can move across the stage a simple object (a circle, a square or a star, for example) using buttons (left, right, up and down)This was fairly simple using AS 1, even when I was no expert. The thing is that those simple ways are no longer working with AS 3.I spent a few hours doing some research until I found this nice tutorial on this same site:
Code: http:[url]....
I followed the tutorial, and all was working nicely, but when I attempted to do the animation from scratch, it simply didn't work .I even used the same names for all the objects and instances, but still nothiing.
View 1 Replies
Mar 2, 2005
Im trying to make a Mc to move around the canvas according to the mouse position. The Mc follows the mouse on the _y coordinates.Now I want to make it change position on the _x coordinates according to the mouse.It is working fine on the _xmouse position, but Im not getting it to work in the _ymouse position. Id like the Mc change position when the mouse is over a determined are on the stage.This is the code Im using
Code:
onClipEvent (load) {
this._x = 750;
//set original x[code].....
View 1 Replies
Feb 10, 2012
is it possible for me to give a movieclip the same position as another movieclip. meaning they will be on top of eachother and when one moves the other moves as well.i know you can do it with the mouse:[code]It would be a great way to cheat the program as im having some problems, but this would fix it. the 2 movieclips though is in a class and the other is on the stage.
View 4 Replies
Feb 4, 2009
I've got this script that makes this certain symbol to move anywhere when you press the keys.Now I want a button that when you press it, it will position the certain symbol I was speaking of, anywhere I want counting on the x and y axis.
View 1 Replies
Feb 26, 2010
I have a script where i need an objects X and Y Position to change when you enter a certain frame.
On layer 1 i have an input text field with the instance of "message_txt" that runs along all 5 frames in the timeline.
On layer 2 i have 5 frames each with its own actionscript on. The user navigates between frames with simple 'gotoAndStop(4)' etc... on each next or back button.[code]...
View 2 Replies