ActionScript 2.0 :: Animation Returning To Centre Of Stage When Resized
Jul 7, 2010
I am having a small drama with an animation by actionscript. I want a box (that has been externally loaded into a holder mc) to come from the bottom left of the screen and then stop in the centre of the screen. So far so good with the code below
[Code]...
But this is a fullscreen website, if you change the size of the stage and then load the swf with the box in it, the box no longer stops in the middle but flies to the opposite corner of the stage.
View 0 Replies
Similar Posts:
Jul 22, 2009
Just a quick one. Using AS3, how would I ensure that a movieClip always stays in the centre of the stage on resize?
View 1 Replies
Sep 13, 2010
i am struggling to work something out here and am hoping that someone on here can put me right...i have a flash movie that uses a liquid type layout (ie all from top left to fill the stage) - part of the movie is a navigation that when clicked slides around the stage to set positions.the problem is that the nav co-ordinates (points it travels to) are all based around top left of the stage, and i need to make it work from the centre of the stage.this is an example of one slide actions on one of the buttons named CLEAR:
PHP Code:
panel.CLEAR.onRelease = function(){
yTargetMC = 325;
[code].....
View 2 Replies
Sep 13, 2010
i am struggling to work something out here and am hoping that someone on here can put me right...i have a flash movie that uses a liquid type layout (ie all from top left to fill the stage) - part of the movie is a navigation that when clicked slides around the stage to set positions. the problem is that the nav co-ordinates (points it travels to) are all based around top left of the stage, and i need to make it work from the centre of the stage.this is an example of one slide actions on one of the buttons named CLEAR:
PHP Code:
panel.CLEAR.onReleasefunction(){
yTargetMC 325;
[code]....
View 2 Replies
Sep 29, 2009
I've ceated 18 buttons 1-18 on two rows and using the alignment tool made then all gapped the same and in line etc. I now want to centre the two rows of buttons on the stage. I've shift clicked to select all the buttons but no matter what option I pick in window alignment I can't get it to work.
View 2 Replies
Mar 17, 2008
How do I center (on stage) a loaded image inside a createEmptyMovieClip ?I've read so many threads...can't make it work
here's my script:
button1.onPress = function(){
_root.createEmptyMovieClip("imagecontainer", _root.imagecontainer.getNextHighestDepth());
[code].....
View 7 Replies
Mar 14, 2006
how the stage can be resized dynamically?....if i load a jpg into a movieclip the stage should resize itself to the size of the image file.
View 5 Replies
Jan 30, 2008
So I made a listener that moves around MCs when the stage is resized and it works great. However the script doesn't work until the stage is resized . Below is the script and I would really appreciate it if you could show me how to get the script to work regardless if the browser is resized.
[Code]...
View 13 Replies
Apr 26, 2005
i am working on a game called "virus". you click somewhere on the screen and the virus goes to where you click. you have to dodge random moving white blood cells, and if you hit them you lose. everything is working. except for one thing. scoring.
i have made a movieclip with a dynamic textbox in (score), and in the movie clip there is a section where the number in the score textbox goes up really quickly, a section where is goes up medium, and a section where it goes up slowly. i want to make it so that when you get closer to the center of the movie, for the score to go up quicly, and slower as you get further out. i have tried hittest with movie clips in the centre of the stage, but it doesnt seem to work.
View 3 Replies
Aug 5, 2010
This code creates a two arbitrary sprites, box and circle, and puts them on the stage. The circle is the child of the box.The purpose of the code is to enable the sprites to resize when the stage is resized. But the sprites only change size when the stage is smaller than their original size. When the stage is big enough, the sprites don't get any bigger than their original size. Throughout, they maintain their proportions.[code]
View 10 Replies
May 30, 2011
I'm trying to achieve a thumbnail gallery which basically reduces it number of columns (and increases number of rows) when the stage is being resized down.The columns number as default 5, but after resizing down the stage this number is calculated like this:[code]My question is how can I reorder the the columns and rows from the onStageResize function.[code]
View 4 Replies
Apr 24, 2009
I just resized my stage, and I get output errors and my movie does not render correctly.
1 - Original movie size was 500x440. I built my entire Flash movie around this. Everything's working fine.
2 - Now I've decided to make the Flash more into a widescreen format, like 800x400. I went to stage properties and changed the dimensions.
3 - Upon hitting ctrl+enter, the Flash does not render correctly anymore and I get a slew of these kinds of errors in the output log: ReferenceError: Error #1065: Variable LogoMC_2 is not defined.
4 - As a test, I tried scaling a lot higher past my original dimensions (like 1000x1000), and also scaling a lot lower (like 50x50). It seems like regardless of how much or little of the stage is revealed with a resize, Flash is complaining and the movie will only work with the original dimensions (500x440) that I've put 100 hours of work into.Anyhow I was kind of hoping to see good resize/crop/trim/canvas features in CS4. Seems like a no-brainer needed feature.
View 3 Replies
Jul 13, 2011
I have an intro animation inside of a MC on frame 1 of my timeline, when it's finished playing the 100 frame animation I want it to jump to frame two of my main timeline.I've tried root and parent scripts at the last frame of the animation but it's not working. Do I need to add root to the package?Even gotoAndPlay isn't working
View 1 Replies
Feb 5, 2010
im trying to use this fullbrowser scroller in my site but it appears only if stage/ browser window is resized with mouse. it should appear right away! here is the site ad-d.org and here is the files ad-d.org.zip
View 1 Replies
Apr 14, 2008
I have an AS2 document that's 590x300. When I do a trace on Stage.height it returns 200. I changed the document to 590x301 and the trance returns 201.
View 3 Replies
Sep 8, 2010
I have just recently started playing around with AS3 and am pretty new to what is going on in Flash (though I do have a lot of programming experience.) I have an object that I am dragging around on the mouse. I want it to be destroyed if I drop it anywhere but in a target location. I have the part where it is destroyed working, but I am running into a problem trying to find the target. When I try the following...
PHP Code:
public function DropObject(){
if (! this.hitTestObject(stage.getChildByName("Target"))){
stage.removeChild(droppedObject);
stage.removeEventListener(MouseEvent.MOUSE_MOVE,droppedObject.MouseCursorMove);
}}
I get "TypeError: Error #2007: Parameter hitTestObject must be non-null." So, "getChildByName" is returning null, but I'm not sure why. I've verified that there is an Instance name of the Target on the stage. Why can't I find it?
View 4 Replies
Apr 13, 2009
Line 1 Frame 1:
[Code]...
I am trying to trace the results of my listener when the browser is resized...no avail. Are you able to see what I am doing wrong?
View 1 Replies
Oct 23, 2009
I have multiple points on a Google map that i need to pinpoint.How would i find the two points that are farthest away from each other and get my map center an zoom accordingly?[code]Just copy and paste into root time line to test
View 1 Replies
Mar 9, 2005
I have seen a couple of flash movies of late that have a nifty element to them, when the user resizes his window the movie slides to the centre or relative position, rather than snapping.THIS SITE is one example of the effect I mean When you resize your window the text moves gradually to a relative position.How is this done? is it via action scripting or through the html/java?It is a nice little touch, I like it. Do you think if you can dictate the position of certain elements you can dictate the size of elements according to window size?
View 9 Replies
Feb 12, 2009
Using this code:
[Code]...
I have a compass that is rotating depending on the position of the mouse, however it rotates it from the top left of the stage not the movie clip, how to get the AS to recognise the centre of the compass.. Also, I thought a nice touch would be if the compass had a slight "wobble"
View 1 Replies
Jul 6, 2011
I have been struggling with the affect the browser zoom level has on my application for days. Finally I built the below test swf and noticed that when user zoom in using the browser zoom (IE 8) the box centering stopped working correctly.Movie with moviclip named box and button named mybtn with three text fields:
[Code]...
View 1 Replies
Aug 9, 2007
I have a movie clip symbol on my stage, called 'symbol', i have centred it on the stage using the following.[code]...
View 2 Replies
Jul 18, 2003
Is there a way to have the startDrag command not lock to the centre of a MC but to have it snap and drag from a set location, ie _x and _y positions, on a MC.
View 8 Replies
Oct 7, 2009
I just finished reading and building the Photo Gallery using XML and Flash tutorial.Now i was editing it a bit to my desire, but im having trouble with positioning.My external images are all different sizes, and I would like to align them to the horizontal center of my Flash area.[code]
View 3 Replies
Oct 5, 2004
I'm new to AS and trying to learn new stuff by going through Kirupa's tuts and old threads, I came across this image resize from Best of Kirupa.url..At the moment all loading images as well as frame are resizing with top left corner always in fixed position. I've been trying to amend the existing AS, so both frame and images always stay and do the resizing at horizontal centre of the movie?
View 8 Replies
Aug 10, 2009
I have 10 jpg which same size and the name is liked a1, a2, a3...a10. Can I import them to flash and arrange them to same position on the stage and the animation is like:
frame1:a1.jpg
frame2:a2.jpg
...frame10:a10.jpg
What ways is quickest to achieve it?
View 1 Replies
Oct 24, 2010
convert animation on the stage into a movie clip?
View 1 Replies
Nov 12, 2003
How do I get the text of the stage after it has completed its animation?
View 6 Replies
Oct 6, 2009
thought I'd posted this but clearly not I created a rectangle and in the centre using the text tool places the number 1 try as I might I cannot find an easy way to centre the number in relation to the rectangle behind it. Is there an easy way? tried the alignment tools but failed
View 1 Replies
Oct 28, 2011
I've created an mc which functions as my map and controls to go with that which allow the map to be moved around and key points navigated to and zoomed in on at varying zoom levels.I'm using scaleX and scaleY to scale the map mc and a list of x and y positions to correctly position the map for each key point. The map mc starts at 1:1 scale ratio with the screen and it's registration point is at 0,0.When I want to go to a certain area I perform this calculation (offsetX and offsetY are the center of the screen and posX and posY are predined offsets on the map):[code]
I now need to implement a zoom in / out function and this is what I'm struggling with. The zoom should use the center of the screen as the reg point for the scale, so I've been trying something along the lines of the following to get the correct x and y position to set after the scale:[code]I know this is wrong but I've shown this to give you an idea of my train of thought, I need to work out what the new x and y will be to ensure that the area that is being zoomed in on, stays in the center of the screen.So in my mind this gets the distance from the current position of the map relative to the center point of the screen (offsetX, offsetY) then scales that distance by the new scale.
View 6 Replies