Actionscript 3 :: Draws Bigger Sprite Than I Have Set (padding/margin?

Mar 30, 2012

i created my own Button which simply extends from Sprite.Its able to show 3 different text fading in and out using a timer.In my draw function i first draw a rectangle with the Sprites graphics object representing the background of the button.I added a function to set the button width. This property is used to draw the rectangle. I know that the sprites's size is updated after the rectangle drawing. But for some reason the sprite's width is always more than what i have set via my "setButtonWidth" function.Now i have a simple sprite acting as a button having a graphics.drawRectangle part drawing a simple rect. with lets say 500px width. But when i trace the width of that button it is always about 10% more. Where are these 10% coming from?I read about calling validateNow(). But this is only for Labels, or Checkboxes. For some reason i cannot access the library for Label. This must work somehow with TextFields. But how?

// this function is part of MyButtonClass.as file
function drawButton()
{

[code].....

View 1 Replies


Similar Posts:


Flash - Dynamically Made Sprite Object Has Margin/Padding On Bottom?

Sep 18, 2010

I'm made an Item class which extends the Sprite class, the Item class basically has a few checkmarks & labels at the moment.

Then what I try to do is run through a for loop of items and create Item classes that I want to place one after each other on the y-axis, so I'm reading the Item.height property to find the y of the next Item in the list.

The problem is for some reason there is always an extra 75 pixels added to the Sprite height at the bottom, no matter how many checkmarks and labels are in each Item class ( varying the height of the Item class ).

Any idea why this is being added and how it can be removed?I'm having trouble figuring this out, I tried dynamicly calculating and setting the Item.height property but when I do that the Sprite is simply cropped.

View 1 Replies

IDE :: Modify TextField's Margin / Padding?

Jan 28, 2009

When dealing with TextFields, Flash always adds some sort of margin/padding around the outside of your TextField, so that if you set the X and Y of your TextField to 0, then your text would still sit about +4 pixels in.

If you create a TextField and set 'border=true', you will see what i mean - the border is drawn right on the edge of the TextField, but the actual text itself sits within a padding of about 4 pixels.

Is there any way at all to get the text of a TextField to sit hard-up against the border?

View 4 Replies

ActionScript 3.0 :: Consistent Value From Top Margin / Padding Of TextField To Top Of Actual Text

Jan 11, 2011

How can I get a consistent value from the top margin/padding of a TextField to the top of the actual text.According to the docs (link below), the text field has a 2px gutter on all sides. But there seems to be another gutter that seems to increase / decrease with the size of the text.Using times new roman for a default font size, I can get the baseline of some random text using what we know: I know that there is a 2px gutter all the way around the text field and we can get the ascent through textfield.getLineMetrics(0).ascent. If I draw a line at that position I'll get a line about 2 px below the actual text. Works fine.Now if I want to draw another line at the TOP of the text it's a guessing game. At 36pt text it's 8px from the top of the textfield. At 72pt text it's more like 12px from the top, and at 144pt text it's more like 20px from the top.URL...

View 0 Replies

TextField Setting Top Margin - Some Chars Cut Out

Oct 31, 2011

I am trying to figure out why some letters (like the norwegian Ã… (Ã…)) are cutted out in the middle of the top "o":

My code is this:
var titleFormat:TextFormat = new TextFormat();
titleFormat.size = textSize;
// this is embedded font, and exported for action script, declared
titleFormat.font = myFontBold.fontName;
titleFormat.bold = true;
[Code] .....

So, I have tried different things like setting height hardcoded and bigger than text, but top us cutted again, I have tried with css but no success. Why the letter is not showed fully and why if I zoom in the swf (2-3 zoom ins) it shows up normal (and what i try to achieve) like this: I think it has to do with the topMargin, but unfortunately I didn't find something like that in as3 documentation.

View 1 Replies

IDE :: SWF That Draws Outside Its Bounds?

Mar 3, 2009

I opened up the NY Times homepage, and they have this giant Apple addvertisement that has animations over the entire top half of the page, outside the area occupied by the swf.

View 1 Replies

Flash :: Css - Firefox Putting Gap / Margin Under Header?

Mar 31, 2011

I have a flash header on my site - nothing crazy, just a short clip. It works in safari and opera on the mac and all IE versions on PC. It will not work properly on firefox on either PC or Mac. Firefox seems to be putting a gap of 10-20px under the flash I have looked up many fixes for this as it seems to be a known problem. I have seen people say it's because the "object" element it treated like letters in FF, so it allows room for the "tails" on a G and Y etc (not sure if I explained that well enough, hopefully you get the idea). I have tried margin:0; padding:0; line-height:0; font-size:0;

float:left; vertical-align:middle; and clear;both; - not at the same time, I have tried many combinations and got most of these ideas from other threads/articles where people had found a solution. I have tried this CSS on an id attached to the object, on the element object and on the parent div - I just can't seem to fix it! Also, as a side note - I've noticed the flash looks good in IE6, IE7 but IE8 makes it looks awful - can anyone explain why or confirm that is what they see? Im a mac user so borrow a laptop to test, it would be good to hear if anyone else see's this problem.

View 1 Replies

Flash :: Forcing A Negative Bottom Margin?

Aug 4, 2011

I have an .swf navigation carousel that is 650 pixels high, the bottom 200 pixels being reserved for the reflection of the carousel. The reflection is very subtle and is not considered important information, so we would like to remove vertical scrollbars when the window is high enough to fit the topmost 450 pixels, but not the reflection.

I tried to accomplish this by setting a margin-bottom: -200px to the flash <object> but this only made the container's height shrink 200 pixels, causing the background pattern to cut before the bottom of the page.the Flash itself is still taking up 650 pixels.

Is there some "proper" fix to this, other than hiding/showing the scrollbars actively using javascript?

View 1 Replies

ActionScript 2.0 :: Input Text Field- Top Margin?

Mar 2, 2010

I've got some text that is crashing my text box border, and I was wondering if there was any way to set a top margin? I saw values for left/right, but nothing that seemed to indicate I could bump the text down a bit...

View 2 Replies

Text Box Padding Inconsistency?

Oct 20, 2009

I am using Flash CS4 at work: newly created type sits flush (top edge) within the text box. If I take the same file home and open in my newly purchased Flash CS4, the text now shows up with 10 or so pixels between the top of the letters and the top edge of the text box (like padding in CSS objects). This is a problem because it means all my text is now positioned lower on the stage than I intended and I can't take projects to and from work and home with any consistency. This is the same font, same file, same program version, which would suggest a preferences setting, but I can't find anywhere to modify text box appearance.

View 4 Replies

ActionScript 3.0 :: Unwanted 20px Margin In Flex Application

Apr 21, 2009

how to remove what appears to be an invisible 20px margin within my actionscript 3 application, written using flex builder.  When I add movieclips and set x = 0, they appear about 20px over from the left hand side of the screen.  If I set their x = -20, then they appear flush with the left side of the app.  Is there any way to get around this/remove this margin?
 
In the attached picture, the green rectangle is at x = 0, yet it is not flush with the left hand side of the app.

View 1 Replies

ActionScript 3.0 :: Modifying TextField Margin (Ascend/Descend/etc)?

Jan 28, 2009

My first post, yay! Ok, here's what's been bugging me for a long time. When dealing with TextFields, Flash always adds some sort of margin/padding around the outside of your TextField, so that if you set the X and Y of your TextField to 0, then your text would still sit about +4 pixels in.

If you create a TextField and set 'border=true', you will see what i mean - the border is drawn right on the edge of the TextField, but the actual text itself sits within a padding of about 4 pixels.

Is there any way at all to get the text of a TextField to sit hard-up against the border?

View 5 Replies

ActionScript 2.0 :: Set Right-Margin To Whole Dynamic Text Box With External Css File?

Aug 19, 2009

How to set right-margin to whole dynamic text box with external .css file

View 0 Replies

ActionScript 1/2 :: Random Card Draws

Dec 26, 2010

There's something I'm trying to make but I just can't seem to figure it out. I want to make something that allows a person to build a deck of cards from multiple sets of cards. I also want a button that can be clicked to randomly choose a card from the created deck. For example: lets say there are four sets of thirteen cards (hearts, diamonds, spades, and clubs). The user can select which of the four sets will be included in the deck. Once the sets are chosen the user can click a button and one card will be chosen from the selected sets. What is the best way to handle something like this? Is there a tutorial that explains how to do something like this?

View 3 Replies

ActionScript 2.0 :: Make A Square That Draws Itself

Nov 16, 2005

i want to know how to make a square that draws it self in actionscript;I was thinkning line tos but can someone help me clear it up

View 14 Replies

IDE :: Line Automatically Draws As Symbol?

Feb 28, 2009

I'm having an issue with Flash CS4. I'm not sure what I toggled, but when I draw a line or shape it automatically converts it into a symbol. How do I disable this? It's very annoying to have to break apart each line as I draw it.

View 1 Replies

ActionScript 2.0 :: Using Whatever LineTo(); Draws As A Mask?

Apr 30, 2005

The effect I would like to create is as follows: I have an image movieclip named "myImage_mc", and I want to create a spray paint effect, where the user "paints" whatever myImage_mc is using the lineTo and lineStyle commands. I have the lineTo stuff all done, the problem i have is trying to make whatever the user draws a mask that shows the image.Here's my code so far:

Code:
this.onLoad = function() {
_root.createEmptyMovieClip("empty_mc", this);

[code].....

View 1 Replies

ActionScript 3.0 :: Add Padding Between Elements In A TileList?

May 12, 2010

Is there a way to add padding between elements in a TileList .

I've passed deadline with a big project , it's all done , but he changed his mind and demands padding. And doesn't want without, i don't have time to make a new component

View 4 Replies

Flex :: Remove All Padding From Label?

Nov 18, 2010

I am trying to remove all the padding from a Label contained in an HBox. I set paddingTop and paddingBottom to 0 in both the Label and HBox but there is still quite a bit of padding. I also tried setting verticalGap to 0 on HBox. If I just have a checkbox in the HBox the padding is removed fine.

View 2 Replies

Flash :: Add Padding To The Contents Of A Textfield?

Apr 1, 2011

I have a textinput component on my stage with an instance name of "myTxt" I would like to add some left padding to the contents of this textfield. I've tried:

myTxt.setStyle("textPadding", 5); But it adds top (and I assume bottom and right) padding in addition to the left padding. What is the best way to simply add left padding to the textfield's contents?

View 2 Replies

ActionScript 3.0 :: Adding Padding To A MovieClip?

Sep 2, 2009

An empty movieClip container will dynamically update it's width and height depending on the sum of it's child objects dimensions. Is there a way to add padding to this value?For example, say you have 10 child displayObjects within a movieclip and all together their width adds up to 100px. Therefore the parent clip's width is 100. Is there anyway to add say 2px padding around these child clips to make the parent clip's width 104? The basic goal here would be to set the parent's width independently and unrelated to it's contents dimensions.

View 7 Replies

ActionScript 2.0 :: Padding As It Were Of Stage.width?

Feb 2, 2008

i have a mask which is over some thumbnails. i have given that mask the value ofStage.widthi.e mask_mc._width = Stage.width /1;however i would like the mask to e slightly padded left and right so the mask doesnt go edge to edge of the screen any ideas on how i can do this AS2

View 2 Replies

ActionScript 3.0 :: Implementing Padding For Thumbs

Jun 6, 2009

i, am building an portfolio site and i have come a long way (still a beginner) but now i found an problem. After i load xml file for paths to portfolio assets i load actual jpg's and/or swf's. But i am stuck since i do not understand how to implement padding so thumbs will be spaced evenly.[code]but than how to position first thumb?

View 3 Replies

ActionScript 3.0 :: Padding Numbers For Time?

Jun 1, 2010

I am working on a time display that takes a time reference from a video. What is the best way to pad the numbers so they show correctly as 00:00, 01:23, etc.Would like to stay away from just padding a string "0" in front, so I can test the var for proper time and use it elsewhere. Has anyone already done this with some code already floating around ?

View 2 Replies

Html :: Css - Flash Movie Not Respecting Negative Margin In Container?

Dec 11, 2009

I have to place a flash movie into an existing layout. It is replacing placeholder image of the same size. The DIV holding the image has a negative top margin. When the flash movie is placed in the same spot there is a gap at the top of the DIV equal to the amount of negative margin. I cannot seem to get the movie to move to the top of the DIV (FF3).

View 1 Replies

ActionScript 3.0 :: Write A Program That Draws A Pythagoras?

Feb 26, 2009

I want to write a program that draws a Pythagoras tree. The only programming language I know is C but I tried it in that language and it was horrible. Someone recommended Flash (AS3) to me so I am trying it in that now, but I only started learning it yesterday. Anyway, I got to the point where I can draw the leftturning branch of the Pythagoras tree, but I don't know how to draw the other branches. The number of "houseshapes" a square with a rectangular triangle on top increases with every step according to the formula 1 x 2^(n-1) (First step is n=1). I created a function that draw this houseshape, called drawHouse() and it takes as its arguments the co-ordinate of the lower left corner of the square part of the house, the length of the side of the square part of the house and the current rotation angle. Rotation angles are always multiples of 45 for now, but I might try to expand it to other values later, but for now I hardcoded a lot of stuff that assumes the 'roof' of the house is a rectangular triangle.

[Code]...

View 2 Replies

Flex :: Sprites Are All Draws From X - Y Coordinates That Receive From XML

Jun 2, 2010

The orange square is the currently selected selected sprite. The sprites are all draws from coordinates that i receive from XML. var sprObject:Sprite = new Sprite();

[Code]...

What I want to do is the following. If I'm currently on the orange square and I use my keyboard direction buttons (up/down/left/right). I want to deselect the current sprite and select the next sprite in the appropriate direction. The problem I'm having is that I cannot get the x and y coordinates of the drawn sprites. If I look in the array, the x and y coordinates of the sprites are all 0. If I can retrieve that I can write an algorithm to determine the next sprite to select.

View 1 Replies

Actionscript 3 :: UI Component: Two Classes - One Draws The Other Doesn't

Nov 30, 2011

I am working with a flex project with a main mxml file and two actionscript classes that draw graphics. From reading tons of articles and posts I discovered that they must extend UIComponent, which they do. The first actionscript class draws the image fine. The first class then makes the call to create a new object. The second object does not display. In the pure actionscript version I had to pass the stage as a reference for the second class to draw.

I also found a similar question here at stackoverflow:UIComponent extended class isn't showing UIComponent extended class. But I was not sure how to apply it to my example.Which, if any UIComponent methods should be overrided for the second object to display? How specifically should I implement them in this example?

// First class "Ball" draws a circle successfully then creates a second object "MyRect"
package dr {
import flash.display.*;
import flash.display.Sprite;

[code]....

View 2 Replies

ActionScript 2.0 :: Custom Class That Draws A MC On Stage

Feb 21, 2009

I'm intermediate in AS2, and I'm starting work on custom classes. I am making a class called VolcanicIsland and I want it to make a movieclip on the stage when it is called. I do NOT want to make a variable MC that gets put into the arguments when it is called, however. Here is the external AS file (trimmed to the problem area):

ActionScript Code:
class VolcanicIsland extends MovieClip {
//position
private var x:Number;

[Code].....

View 1 Replies

ActionScript 3.0 :: Dot Class, Which Draws A Dot With A Color Of 0x00FF00?

Jun 3, 2010

I have a Dot class, which draws a dot with a color of 0x00FF00. When I click on the dot, I would like it to change to a random color from an array of colors I have pre-specified.How can I replace the current color with the new color? Do I have to re-draw the circle (dot)? or can I just replace the color?

View 1 Replies







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