ActionScript 2.0 :: Scale From Center?

Dec 16, 2006

Each time the square is clicked it scales up a little. What must be added or changed to prevent it from moving off center from its original position, and to have it scale evenly in all directions from its own center?

Code:
package {
import flash.display.Sprite;
import flash.display.Shape;[code]....

View 2 Replies


Similar Posts:


ActionScript 3.0 :: How To Scale Mc From Center

Nov 25, 2009

I have created a movieclip with programming and added a image via xml loader. I am scaling it down using tweenlite. But it scales as if the registration point is on the top left of the image. Do you know how to change it so it scales from the center?

View 6 Replies

ActionScript 2.0 :: Scale A Rectangle From Center?

Dec 8, 2010

i have a simple rectangle. i would like to scale it to 200 but the scaling always begins from top-left corner of the rectangle. how can i scale it from the center?

[Code].....

View 3 Replies

ActionScript 3.0 :: Making Z Scale From Center?

Jan 21, 2010

when i edit an objects z value in flash, the "scaling" is not centered, i want to emulate the same effect as center scaling x and y but using Z, how fo i do this?

View 1 Replies

ActionScript 3.0 :: Scale From Center After Drag?

May 21, 2010

I have an image inside a movie clip that a user can scale from its center using the slider....works great.However the use can also drag the movie clip.After the movie clip is dragged to a new location it and then scaled using the slider it jumps back to the center of the stage and then scales.I have tried modifying the x y of the movie clip but then the scale is no longer from the movie clip's center.

var clipNativeX = holder_mc.x;
var clipNativeY = holder_mc.y;
function scaleClip(val:int):void[code]......

View 2 Replies

ActionScript 3.0 :: Using Z And ScaleZ To Scale Bitmap From Center

Aug 17, 2009

how I could setup an Image so when it loads, and I change its Z value, it doesnt keep shifting in reference to the upper left. Right now, when I change the Z value of a Sprite containing the Image, it appears to move x, y (even though I know they are not changing). I thought that by putting it inside of a sprite, and then moving the image to so that its center was at 0,0 inside the sprite, that when I changed the z value of the sprite and not of the bitmap itself, it would fix my problem, but its not.
 
bmp = new Sprite();
var bmp1:Bitmap;
loader.contentLoaderInfo.removeEventListener(Event.COMPLETE, fileLoaded);

[Code].....

View 1 Replies

Actionscript 2 :: Flash - Scale A MC From Center Position?

Nov 25, 2011

I am using AS2 and I'm looking for a way to scale an MC from the center meaning that the width will expand equally on both sides.For example .. If the movie clips needs to expand +10 then it would be +5 on the left and +5 on the right.So, in order to simulate the movie clip going forward the position on the left would offset -5 then scale.

View 2 Replies

ActionScript 3.0 :: Scale MC About Point In Center Of Stage?

Sep 8, 2011

basically just wondering if its possible to scale an MC about the center of the stage as opposed to the top left of the MC? I thought about setting the X & Y as stage width / 2 + MC width / 2 but cant as the user needs to be able to move the MC which is much bigger than the stage and zoom in on a point in the center rather than just the center of the MC.

View 2 Replies

ActionScript 2.0 :: Scale-Center Image, Then Show?

Jan 16, 2012

I have a list of artist, each one a mc, in a vertical display. Next to them, I have a holder in which I load the thumbnails one the mouse is over a mc.This images, are being loaded via loadclip.. resize-center and then shown with alpha..But sometimes, the image are shown huge, and instantly resized and positioned.This a dvd project.. so images are not being downloaded..this is the part of the code..

Code:
thumb.onRollOver = function() {
this.gotoAndPlay("rollOver");

[code].....

View 3 Replies

ActionScript 3.0 :: Scale Moveclip From Center Registration?

May 1, 2010

I am using a slider component to scale a movie clip. Currently it scales from the bottom right corner (I guess this is default). I would like the MC to scale out from the center.

Current Code

// slider
slider.addEventListener(SliderEvent.CHANGE, scaleObject);
slider.minimum = 1;

[Code]....

View 2 Replies

ActionScript 3.0 :: Scale From Object Center After Drag?

May 24, 2010

I have had some help but still not understanding this.

How can I scale an object from center after it is dragged by the user?

Currently I have this:
function onSliderChange(e:SliderEvent):void
{
scaleClip(slider.value);
}

[Code]...

With this code the movieclip jumps back to the center of the stage each time I call the scaleClip() (move the slider). I would like the object to scale from it's own center regardless of where it is on the stage.

View 2 Replies

Actionscript 3 :: Flash - Center An Object Around A Point After Scale?

Oct 27, 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.When I want to go to a certain area I perform this calculation (offsetX and offsetY are the center of the screen):

newX = posX * scale + offsetX;
newY = posY * scale + offsetY;

Then I tween the position and scale of the map to smoothly scale and move the map to the correct position:

var tween = new TweenLite(_background, EASING_SPEED, {x:newX, y:newY,scaleX:scale.getScale(),scaleY:scale,ease:EASING_TYPE,onComplete:moveToComplete,onCompleteParams:[room]});

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 positioning:

var newX = offsetX - (offsetX - _background.x) * scale;
var newY = offsetY - (offsetY - _background.y) * scale;

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. However, this is clearly wrong because it's not working and the positioning of the map is wrong.I've also tried using a transform matrix to get the correct values but I know even less about them and not got the right results.

function scale(target:MovieClip, center:Point, scale:Number):Point {
var m:Matrix = new Matrix();
m.translate(-center.x, -center.y);//move the center into (0,0)

[code]....

View 3 Replies

ActionScript 3.0 :: Find Center Point Of Mc With Dynamic Scale?

Dec 1, 2010

I'm trying to add some zooming functionality. The problem is that when you zoom in and out, it scales the MC up and down from where the registration point is. This means That when I'm far from the position of the registration point instead of zooming the in straight it also makes it appear as if you are travelling towards the registration point.

To offset this effect I want to calculate the amount of pixels I need to offset the Map by so that it appears as if you are zooming in directly.

So just as a test I've put a little ball inside the map(called "center") which I'm trying to keep in the center of the map.[code]...

View 1 Replies

Actionscript 3 :: Scale A Dynamic Textfield In Flash From The Center Point?

Feb 16, 2010

I'm trying to make a text effect where on every frame the textfield increases in size and decreases in opacity. I'm using the scaleX and scaleY properties of my dynamic textfield to enlarge, but it's doing so keeping the left registration point fixed. I want to make it scale up radially outward, or with the center point fixed.

View 4 Replies

ActionScript 3.0 :: Way To Scale Up An Object From Its Center Even If Its Registeration Point Is At The Top Left?

Oct 3, 2009

1. Is there a way to scale up an object from its center even if its registeration point is at the top left? can that be done using TweenMax?2. can I apply the same tween on two objects at the same time? basically what I want to do is load up an image to the stage, and then tween its scale from 0 to the original size along with another movie clip behind it that would form some sort of a border for the image. and I want to scale them up from the center.

View 5 Replies

ActionScript 2.0 :: Image Pan - Want To Center/scale Relative To Position At Click?

Aug 19, 2006

I've recently taken Krilnon's tutorial on interactive image panning, and have a need for more complexity. My image to be panned (relative to user's mouse movement) has several 'hot spot' buttons placed within. Each hot spot, when clicked, is to smoothly zoom and shift within the mask, with pertinent info displayed next to each, once zoom and shift is complete. almost like I'm making a motion tween, where the final position is known, but the start position is wherever the BG image is when the user clicks the nested button. I need to determine the x-position at the moment of click of the button (different for each button), and then, I think, use a simple-math "stagger-step" method of moving and scaling, until I've reached my final dest. here's the link to the tutorial I originally referenced:If anyone knows of a tutorial or example out there, I'd love directions to it(them). or,

View 1 Replies

IDE :: Make The Text Stay Center And A Certain Size So That It Won't Scale To Fit The Screen?

Jan 20, 2009

When you drag the screen in any direction the background scales and rezises.But How do I make the text stay center and a certain size so that it wont scale to fit the screen and will stay a certain size

View 1 Replies

ActionScript 2.0 :: Full Screen, Keep Scale Ratio, Center Screen?

Jan 20, 2009

[ X ] Problem solved I just came up with something i have some trouble to handle I've tried a couple of solution but none seems to work perfectly

What I'm trying to do is simple, get my flash to go full screen, but whatever resolution the user has, my flash must centers itself with the biggest proportion possible, and two movie clips goes right and left of it, as if they were borders.

I've been able to do this with a simple png, but i was not able with a movieclip where his dimension changes through time. ( i have a tween, so the mc gets really big even though just my stage is displayed)

View 1 Replies

ActionScript 3.0 :: Scaling And Get The Center Window To Stay In The Center Of The Web Browser Screen

Aug 15, 2009

I have a center window and a background in my flash file. I am trying to get the center window to stay in the center of the web browser screen and get the background to expand and fill the entire web browser screen below center window layer. Sort of like this site [URL] I've currently converted the background to a movie clip and have this code.

[Code]....

View 11 Replies

ActionScript 2.0 :: Rolledover Clip To Scale Up And All The Others To Scale Down And Blur?

Mar 8, 2007

Scenario: main moveiclip with 4 other clips in it. I want the rolledover clip to scale up and all the others to scale down and blur.

Question: What is the most effiecent way to code this. Would it be a "for in loop"? I am trying to minimize the code and would rather not use a whole bunch of if then statements.

View 3 Replies

IDE :: Flash Content To Scale When Scale Browser Window?

Feb 19, 2010

I want my flash content to scale when I scale my browser window.

View 5 Replies

Keep Center Of The Movie In The Center Of The Scree Regardless Of Browser Size?

Mar 23, 2009

My flash movie is 1440x900 but the area where all the important stuff happens in within 1024x768, i am trying to keep the middle in the center regardless of browers size or aspect ratio.

I can center the page but it doesn't work as i need it to. If the browers is small (1024x768) the swf is justified against the left edge, but not keeping the middle in the middle of the brower.

[URL] is an example of exactly what i am trying to achieve.

View 13 Replies

ActionScript 2.0 :: Initialize X Scale And Y Scale Into Percentages?

Jan 14, 2006

How can I convert the current scale of the instance to 100% so I can easily "visualize" and manage the instance when I modify its scale? Here's the actionscript, it works, but I just want the temp._xscale and temp._yscale to be in percentages, not real numbers.

Code:
USflag.onMouseDown = function ()
{
var temp = USflag;
onEnterFrame = function ()

[code]....

One last thing, what's the tag you have to put that is designed for boxing actionscripts? I'm suing [ code ][ /code ]

View 1 Replies

Scale A Flash Using Dreamweaver - Can't Get It To Scale

Dec 4, 2009

My Flash image will not scale.if you zoom in, it gets chopped up. if you zoom out, it has a big blank area.What should I change in order to have this Flash image scale just like the rest of the site? [URL]It is the Flash in the center.

View 1 Replies

Swf Won't Scale To Fit Div

Feb 15, 2010

I am trying to use swfobject 2.2 to display an swf, but the swf won't scale to fit the div that I'm putting it in. You can see what I've got here. When it first loads, it is the right size, then it expands larger for some reason. If I right-click on the movie and select "Show All", it then fits perfectly.[code]

View 5 Replies

AS2 :: Scale Objects With It?

Sep 7, 2010

I have a purple box on the stage. I turned this box into a movie clip with the instance name of "purple." onEnterFrame, I want to increase the wdith of that box. It is currently 11.75px. I want it to ease into 40px. I want this to happen onEnterFrame.

View 2 Replies

ActionScript 1/2 :: Scale One MC But Not Another?

May 13, 2009

It's been awhile since I've worked in as2 but I think I'm close to accomplishing this. I've got one mc to center itself in the browser and move with the browser size without scaling. What I'm trying to do now is get my background video to scale with the browser without affecting the centered mc. I've grabbed this code and altered from another source.

[Code].....

View 3 Replies

Way To Scale My Application

Mar 13, 2010

How can I make my application to fit the browser size? I wont it to be on all of the screen(not full screen mode) and not just the size that I chosen.

View 6 Replies

Set SWF To Scale To Screen?

Mar 1, 2012

I have finished my Flash presentation which is set for a large monitor. My file is 1920x1080. How can I get the SWF to scale to a smaller monitor if needed? When I output an HTML file, (set at 100%) the file scales, but the rollover buttons only work on (Click) and the cursor doesn't change from the arrow to a hand. Is there a code that I can place within the action window?

View 2 Replies

C# :: WCF Scale Well Using WebOrb?

Oct 31, 2010

I'm looking for feedbacks regarding performances using WCF with amf. Here's an old benchmark which doesn't use WCF :[URL].. I'm aiming to few hundred/thousand concurrent connections at the same time. I think there's an overhead using WCF, but I would like to know to what extent if anyone has already test WCF through WebOrb using AMF behavior ?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved