ActionScript 3.0 :: Keep Stroke Weight While Changing Width?

Mar 16, 2010

I have a movieclip 'cursor' with in it two rectangles. One of them is dark and one is light, so the cursor is blinking. Now, when I want to change the width of this cursor to 150 (where it was 30 before), I do:

Code:
cursor.width = 150;

This not only changes the width of this movieclip, but also the weigth of the (whole) stroke of the two recangles. How can I prevent this strokechange from happening?

View 1 Replies


Similar Posts:


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

Possible To Prevent A Stroke's Weight From Scaling With Rest Of Object?

Nov 4, 2009

I want to animate a person moving off into the distance, but while I want the size of the figure to get smaller, I don't want the weight of the lines that comprise the image to scale down, too. I made this little sample of a person skating (poorly) away from the viewer, and I'd like the line weight to be 9 points in the first frame and the last frame. Is there a setting that allows me to exclude stroke weight when scaling and resizing an object?

View 1 Replies

Edit Stroke Width After Line Is Drawn?

May 29, 2009

In Flash CS4, I'm trying to change the stroke width of my line or shape, with it selected, but the stroke width slider is greyed out (thus, unadjustable). Is it possible to edit a stroke width after something has been created? If so, how can this be done? I've tried selecting the line in all kinds of crazy ways, but still can't edit it.

View 3 Replies

Professional :: Make Lines In A Picture Uniform Width (stroke)?

Jan 3, 2011

Pretty much said it in the title. I have drawn a cartoon in flash (cs4) and because of zooming in and out my lines are different widths (thicknesses?)

Is there any way I can select the entire image (just lines) and somehow "uniform" them?

View 1 Replies

ActionScript 3.0 :: Changing Stroke Color Of Simple Button?

Oct 3, 2008

How do you change the stroke color of a simple button? I have 50 simple buttons representing the 50 U.S. states. When I change the fill color with the following algorithm, I also eradicate the outline (stroke) color. How do I code in a stroke color?

View 1 Replies

ActionScript 3.0 :: Increase Size Without Changing Stroke Size

Feb 11, 2010

I have a MovieClip that is just a 100x100 circle with a stroke but no fill. When I change this to 200x200 using as3 the stroke size doubles. How can I increase the diameter of the circle without changing the stroke size?

View 7 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

ActionScript 3.0 :: X Value Changing When Width Changed

Aug 3, 2011

I'm working with a rectangle I used code to generate

hpBar.graphics.beginFill(0xFF0000);
hpBar.graphics.drawRect(40, 40, 90, 22);
hpBar.graphics.endFill();
addChild(hpBar);

The rectangle itself works fine without any problems, but when I try to change the width of the rectangle, it's x value decreases slightly, but I'm not sure why it does this. (90 is the original width, hpPerc is another value that will for my uses always be between 0 and 1).
hpBar.width = 90* hpPerc;
Unfortunately, as I stated, changing this shape's width seems to change the x value as well, which really doesn't work at all.

View 8 Replies

List Component: Changing Column Width?

May 27, 2011

How is it possible to change the width and height of the cells in a List Component in AS3? I've tried experimenting with the cells and different methods but none seem to work.For example, let's say I want to make each list button cell very narrow.

View 1 Replies

ActionScript 3.0 :: Mysteriously Changing Width Of Items?

Oct 4, 2009

I am working on this website and I decided to add some flash to the front page in the form  of a little image gallery with a nifty slide effect. The problem is this. For some reason its squishing my  images. When you look in the scripting you will see that I've set the image  width to the full width of the stage, but when you test the movie they are  getting squished to about 3/4th's the width of the stage (ive double checked the image size as well).

View 5 Replies

ActionScript 3.0 :: Resize A Line Without Changing Width?

Jan 15, 2010

I have created a line (on the stage) where the height is 10px and the width is 2px. To resize it, I have converted it into a symbol (MovieClip) and given it an instance (let's say li ).

However, when I enter...li.height = 200; or resize the MovieClip with the mouse, the line is 200px tall, but it has also grown considerably thicker! However, if I go into the MovieClip, click on the Drawing and resize it there, I the line stays nice and thin.

View 4 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 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 2.0 :: Drag CheckBox To Stage And Changing Width?

Oct 27, 2010

I can drag a checkbox to the stage and change the width in the property inspector and it works fine. If I target the width when attaching it dynamically, the whole box and label get skewed.

View 0 Replies

ActionScript 2.0 :: Changing The Width Of A Picture By Sliding A Button?

Feb 5, 2006

How can I create a button to control the width of a certain picture by just sliding the button on a scale in Flash 8? (I've found the actionscript for the button in a sample file in Flash MX. It looks like this:

onClipEvent (load) {
initx = _x;
left = _x-50;

[code].....

View 4 Replies

ActionScript 2.0 :: Changing Movie Clip Symbol Width?

Aug 13, 2010

I searched the forums, but couldn't really find anything that matched my specific needs. I have a movie clip symbol that is your character, I also have a movie clip symbol that is named fuel and it represents the fuel you have left. I tried this in your character:

if (Key.isDown(Key.UP)) {
yspeed -= ypower;
fuel._width -= 50;
}

as a little bit of code. fuel._width -= 50; is what I'm really interested in. yspeed-= ypower; is just my movement, which works. So why doesn't my fuel width change?

View 6 Replies

ActionScript 3.0 :: Draws A Couple Of Lines With Changing Alpha And Width Whenever The Mouse Is Moved?

Apr 23, 2009

I have wrtitten some code that draws a couple of lines with changing alpha and width whenever the mouse is moved. I need to convert this code to AS3 so that I can use it in conjunction with some video tracking.

Code:

var speed:Number = 100;
var myNumber:Number;
var myMax:Number = 50;[code]...

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

Professional :: How To Keep The Weight Down

Jun 8, 2010

When creating banner ads, the weight is always an issue. One easy way to loose a few kb is to decrease the quality of any images in the ad. But how about your code? How does one efficiently slenderize Actionscript? Take a library such as TweenLite for instance, it consists of files above at least 60kb, but it only adds less than 5kb to your swf. Then again, I have written pieces of considerably lighter code, which in the end has added a lot more than 5kb to my swf.

View 3 Replies

ActionScript 3.0 :: Randomize Array And Weight Results

Sep 22, 2010

How do I get the following to weight the randomize results 3 to 1 (or 4 to 1) in favor of the Dog?
ActionScript Code:
var animalArray:Array=new Array("Cat","Dog","Hen","Bird");
shuffleArray(animalArray);
The randomization is working just great, but now client wants to weight the results.

View 3 Replies

ActionScript 2.0 :: Weight Hanging From The Mouse Cursor?

Apr 1, 2004

I have recently been trying to recreate the effect of a weight (ball?) hanging from the mouse pointer, suspended by a thread, elastic or chain and exhibiting inertia, etc. I am a newbie, so the outlook seems rather grim. Is this at all possible?

View 1 Replies

ActionScript 2.0 :: Giving 'weight' To A Movie Clip

Feb 14, 2008

A tricky one to explain, this, as I can't post example AS or SWFs, but here's what I'm trying to do... I'm creating a game which features a top-down view of a character carrying a sack over their shoulder. The character moves by following the cursor and is always rotated to face it. I want to give the sack (which is a movie clip nested in the character) some 'weight' by having it rotate slightly more slowly then the character - i.e. when the character turns, the sack takes a moment to catch up. At the moment its orientation relative to the character doesn't change and the effect is a bit stiff. The code I'm using to rotate the character is along the lines of

[Code]...

View 2 Replies







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