Changing Height From Center Rather Than Top?

Sep 14, 2010

I'm using myship.height =+=1 to change objects height but it changes height from top of picture rather than the center. How do I change it so its origin is central and grows outwards rather than downwards if that makes sense.

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Auto Center MovieClip According To Height / Width Of Stage

Dec 5, 2009

I know normally if I want to center a movie clip I would

mcName._x = Stage.width / 2; or * 0.5;
mcName._y = Stage.height /2; or * 0.5;

my problem is I'm using a component that changes the width and height, but the real problem is that the registration point of the component is the top left. I know I seen code somewhere that gets the width of the movieclip, figures out where the center is then positions it accordingly but I'm not quite sure how it's done.

View 1 Replies

AS3 :: IDE - Changing .swf Width And Height

Dec 13, 2009

Is there any possibility to change screen width and height not in Flash ( in Properties ), but in Code [ any AS3 line? ].

View 1 Replies

Flex :: Changing Registration Point From Upper Left Corner To Center?

Mar 31, 2011

I want to learn how you can change the registration point for the Canvas.I want to make a zoom of this component, but the point registration in the upper left corner! How do I move to the center?

View 3 Replies

Flex :: Changing Registration Point From Upper Left Corner To Center

Mar 31, 2011

I want to learn how you can change the registration point for the Canvas. I want to make a zoom of this component, but the point registration in the upper left corner! How do I move to the center?

View 3 Replies

ActionScript 3.0 :: Changing MovieClip Height Without Scaling?

Feb 4, 2010

I have a movieclip in the library that contains a RadioButton component and a TextField; it serves as a container. I pull the clip out of the library at runtime and populate the text into the TextField. I don't know what height the TextField within the movieclip will be but I want the movieclip's height to be the same as the height of the text in the TextField so I can position it appropriately. However, the container movieclip always wants to be some other default height (I think 100px) and when I try to change it thru code after the text is set, it scales the whole thing (TextField & RadioButton) and looks like garbage! I need to set the height dynamically without the stupid scaling.

You would think the movieclip would resize based on it's content but it doesn't! I've tried pulling it from the Library, I've tried doing everything thru code, but neither changes the height vs. scaling issue.

View 8 Replies

ActionScript 3.0 :: Changing The Height Of Dynamic Textfield

Oct 6, 2011

I have just come up with this idea of passing in strings into a textbox. The problem is having the height automatically adjust depending on how long the string is. So I have set width for my textbox, but I want the height to change if the string is long enough to wrap.

View 2 Replies

ActionScript 2.0 :: FMX- Changing Stage Height Dynamically?

Jun 27, 2004

how to change the height of the stage dynamically, with ActionScript. Is there a way to change the height of the stage with a pixel value? I don't want to scale down the whole movie just make the stage bigger, just like when you change it manually in Modify-Document.

View 9 Replies

ActionScript 2.0 :: Changing Stage Height Dynamically?

May 28, 2005

is it possible to dynamically change the height of the stage?I am using 'dimensions: pixels', and 'noscale' as publish settings. What I would like to do is, when the height of a movieclip gets bigger (because of its dynamically loaded content), to make the 'stage.height' bigger too, so you can scroll more downwards.

I know stage.height is read-only, but it would be nice to have just the right amount of space at the bottom of the page, depending on how high the movieclips are. Reading back, I wonder if i state my question clear, hopefully I use the right terminology.so if stage.height would work i would like to do something like:

Code:
stage.height= MC._y+ MC._height +30;

View 1 Replies

ActionScript 2.0 :: Dynamically Changing Height And Width

Aug 11, 2005

I want to change the height and width of an object (specifically doubling it) after an interval of 2 seconds until the height and width of the object reach over 100. I've made two different scripts to try to make this possible.

[Code]...

View 4 Replies

ActionScript 3.0 :: Changing The Height Of A 1px Line Changes The Width Too?

Apr 13, 2009

I have a movieclip that has a 1px wide line by 10px high. Im trying to resize that line with tweenlite, however when i change the height it makes it wider too... How can i do this and keep the line 1px?

View 2 Replies

ActionScript 2.0 :: FMX Changing Stage Height Dynamically

Jun 27, 2004

I'd like to know if anyone knows how to change the height of the stage dynamically, with ActionScript.Is there a way to change the height of the stage with a pixel value?I don't want to scale down the whole movie just make the stage bigger, just like when you change it manually in Modify-Document.

View 9 Replies

ActionScript 3.0 :: Changing Width Of Sprite Seems To Change Height Too?

Feb 5, 2009

Here is some code I have.

[code]
_buttonUnderline = new Sprite();
with(_buttonUnderline.graphics) {
[/code].....

When the Tween takes place though it not only changes the width, it changes the height as if it were scaling it up in both directions. Why does this behavior take place? And how can I get it so that only the width changes? I have also tried using scaleX as the property but it does the same thing.

View 1 Replies

ActionScript 1/2 :: Dynamically Changing The Height And Width Of Stage?

Jun 3, 2009

how can I change the height and width of stage dynamically. I tried it with the following code:
 
Stage.height = 250;
Stage.width = 250;
 
during the run time. Initially the Stage is at a height and width of 370 and 450 respectively. Also when I tried to trace the height and width of Stage after resizing the stage width and height, its showing the old value of width and height. That means the width and height not chnaging.

View 5 Replies

ActionScript 3.0 :: Programmatically Changing Symbol Width And Height

Oct 11, 2009

I am trying to change the width and height of instances of a symbol programmatically. Basically, the symbol contains a few colored rectangles, a bitmap, and some text. I want to change the height and width of each instance of the symbol based on how low the text string is that is in the instance's text field, but the bitmap's size should always stay the same, 24x24 pixels.[code]The problem is that using this code seems to scale everything up, including the bitmap. I have tried to programmatically add the 24x24 pixel bitmap to the symbol programmatically after I changed the height, but it still seems to be scaled..

View 1 Replies

Flex :: Changing Width / Height Can't Affect Contents

Jul 13, 2010

I thought I had a handle on AS3, DisplayObjectContainers, etc. but this basic thing is really confusing me: changing the width/height of a sprite does not affect it's visual contents - either graphics drawn within it or any children it may have.[code]...

View 2 Replies

ActionScript 3.0 :: Changing Width Of Sprite Also Seems To Change It's Height?

Feb 5, 2009

[code]When the Tween takes place though it not only changes the width, it changes the height as if it were scaling it up in both directions. Why does this behavior take place? And how can I get it so that only the width changes? I have also tried using scaleX as the property but it does the same thing.

View 1 Replies

ActionScript 3.0 :: MovieClip With Outline - Changing Width / Height

Aug 29, 2009

I develop some components where I use movie clips as skin. In the scene I have 2 movie clips with width 200px and height 100px, one of them I change the width to 200px and height to 100px, well, it should remain the size as nothing happens but it doesn't. The movie clip that I change the size through as3 it's actually getting smaller, and more strange, it only happens when the movie clip has an Outline. The file is attached. It's Flash CS4.

View 2 Replies

ActionScript 3.0 :: Changing DIV Height In Safari - Movie Flicker

Jun 1, 2011

I'm making a flash website that sits on a div. However, I have a jQuery fucntion that changes the size of this div, which I call within my flash movie. Then, the flash movie adapts to the div change, for bigger or smaller pages. It is all working just fine on Firefox and IE. Not so lucky in Safari. After many tests, it seems the simple act of changing the div height, in which my flash movie sits, makes the movie flicker.

View 0 Replies

ActionScript 2.0 :: Changing MovieClip Height - Smoothly Like Tweening

May 7, 2005

I would like to make a movie clip's height change when it is clicked. However, I can't figure out how to do it so that it smooth like a tweening.

View 4 Replies

Resize/tween A 1px High Line Horizontally Without Changing The Height As Well?

Aug 19, 2009

I am trying to resize a line within a movie clip. I am resizing the mc horizontally, but when I do this the height of the line also changes. I can of course resize the line itself, but this can't be used for tweening. How can I resize/tween a 1px high line horizontally without changing the height as well?

View 1 Replies

Professional :: Changing Height Of MovieClip As Of Browser Player Window

Sep 9, 2010

Task of my code that movieclip added on stage, change its size - height when change size of browsers (player) window thus height movieclip = height browsers(player) window.

That is my code:
package {import flash.display.*;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
[Code] .....

In the issue MovieClip menubg added on stage but when I change size of window I get error:
TypeError: Error #1009: It is not possible to cause property or a method referring to object "null".at ZhMenu/onResize()
And menubg dont change its size of course.

View 5 Replies

ActionScript 3.0 :: Have A Movieclip (hairline Stroke) And After Changing Its Width Or Height It Disappears?

Jan 4, 2010

i have a movieclip (hairline stroke) and after changing its width or height it disappears...

View 1 Replies

ActionScript 3.0 :: Flash CS5 - MovieClip Disappears When Dynamically Changing Width/height Property

Feb 21, 2012

a movie clip symbol is designed and subclassed in Flash, but get instanced and addChild-ed in AS3. It works well as long as I don't change it's width/height property (scaling works too), but if i do, it disappears

View 2 Replies

Flex :: Changing ScaleX/scaleY On Parent Scales The Children But Doesn't Update Height/width Property?

Nov 23, 2010

I have created a custom component - MyImage - that has two children including a Bitmap as well as a Sprite.My display object hierarchy is as follows -

mx:Canvas
view:MyImage
mx:Bitmap

[code].....

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

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 :: Change Widht, Height And Width/height Ration In An Flv Video File?

Mar 25, 2011

I would like to use a movieclip to load a flv video. The problem I have is that I want to change the video dimensions. I've tried several software to change the video dimensions but as far as it seems all of them keep the same height-width ratio than in the original video. Is there any software that would allow me to change the height and width without keeping the same height/width ratio as in the original video file?

View 3 Replies

ActionScript 3.0 :: Resizing A Movie Clips Height Automatically To Match The Height Of Some Dynamic Text

Jul 1, 2010

I am resizing a movie clips height automatically to match the height of some dynamic text that is displayed above it (will eventually be loading it from xml ). is there a way to keep a safe margin top and bottom? this is my code so far Text_Box_Graphic.height = Text_Box.height;

View 2 Replies

Bind A Flex Component's Height To Height Of Browser Window?

Nov 10, 2009

I want to constrain the height of a flex component to the height of the browser viewport.

The component's children are populated from a database table using a repeater, and are basic checkboxes. There are enough of them that the flex app ends up being about twice the height of the screen, which means some of the rest of the layout goes crappy on me. How can I force the component that contains these to limit itself to the size of the viewport?

View 4 Replies







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