ActionScript 3.0 :: Position Text In The Middle Of Some Shape?
Oct 24, 2011
I have a problem with truetype font "DaxComp-Medi" and with some timeline and actionscript positioning. I have a mc in which I have another mc in which I have a circle in which I need to put the text in the center but that is not that easy.
Structure:
ActionScript Code:
mc1.mc.mc.txt
mc1.mc.mc.circle
[Code].....
So is there some way in as3 to get those numbers in the center of the (white) circles?
Do I need to convert the TextFields in to the BitmapData (how?), find positions of pixel that has some black color (How?), draw rectangle with that information, copy x and y point of the rectangle, center the rectangle in the circle, calculate offset x and y from the rectangles new position and add them the textfield x and y?
View 7 Replies
Similar Posts:
Jul 29, 2009
this is hard to explain, but I can't find out how to make it so when I press a button, a menu pops up in the middle. How would this work for an online game? Since I don't want it to go to the next frame, how could this be done? when I push the button, a shape pops up in the middle of the screen.
View 4 Replies
Apr 19, 2004
how do i position movieclip exactly in the middle of the movie tru actionscript
View 3 Replies
Apr 19, 2004
how do i position movieclip exactly in the middle of the movie tru actionscript
View 3 Replies
Feb 14, 2011
is possible to align text in dynamic text control vertically to the middle? In flash CS3.
View 1 Replies
Feb 27, 2006
i saw a thread while ago .. that always position a movieclip in the middle of the stage even if the stage or window resize any1 can point me to it
View 3 Replies
Dec 22, 2007
how can you tween so that an object changes it's shape instead of position..
View 1 Replies
Oct 2, 2009
I'm creating Flash-based software that has text boxes where users write in the answers to questions. I want the text that the user types to be vertically aligned to the middle of the text box, so that even if the response is two or three lines, it is still centered in the box.
It doesn't appear that I can accomplish this through the properties window in Flash. Am I missing something? Or is it possible to set the properties of the text box with actionscript, and would that allow me to vertically align the text?
View 1 Replies
Feb 6, 2010
i have a class that creates circles randomly placed at stage, i want then to move those circles and make them bounce off the stage, i know how to do that, the problem is that when i add a new shape into my stage, that shape, has an "x" value of 0, no matter where it appears, how can i check the real "x" value of that shape within the stage, so i can continue with the bouncing check...
ActionScript Code:
package
{
import flash.display.MovieClip;
import flash.display.Graphics;
[code]....
so i just want to know the "real" "x" and "y" positions of my Shape attached to stage to attach a ball to stage i use the createBall method called from my fla....
View 2 Replies
Jun 28, 2011
I'm trying to shape tween a movie clip of a rocket blasting off. I want it to "squash" before liftoff, and then "stretch" as it lifts off. When I tween this on the timeline with the transform tool, I can "squash" the rocket, and the base of the rocket stays on the "ground". This is what I want. However, for reasons I won't go into, I need to do this in AS3, as opposed to on the timeline. When I use a "height" tween, though, the movieclip height changes, but it shrinks/stretches at the bottom (locked at the top). Is it possible to do what I want with the tween class? Do I need to use something besides "height"?
[Code]...
View 3 Replies
Apr 13, 2006
I am trying to make a so called pixel effect in witch I want to make a shape only from pixels that are positioned in some random place on the stage. And all these pixels move to a certain point and create that shape. I've been looking into BitmapData Class but I don't now if that is the best way to do it.
View 2 Replies
Jul 30, 2004
Is there a way to take out a part of the text in a string? Like start 7 characters inti the string and end 2 from the end of string. Something like:
string="hello how are you today?";
So when done weare done with it the things left in the text is:
"how are you toda".
View 5 Replies
Feb 9, 2009
how can i middle a text in the Textfield that is 100px by 100px so that when i have 1 line its in the middle, when i have 2 lines its in the middle as well check attachment. when i do it right now it is always on the top i basically would need the same as when i have a HTML table by default so it is horizontal in the middle.
View 1 Replies
Mar 18, 2010
can you please help me with this issue the String class does not have insert method it has only replace :( .
what I need is:
- if I have string "I stackoverflow"
- I need to insert "love " at index 2 to have "I love stackoverflow"
so what I need is insertAt(index, String)
View 2 Replies
Jul 30, 2004
Is there a way to take out a part of the text in a string?like start 7 characters inti the string and end 2 from the end of string
something like:
string="hello how are you today?";
so when done weare done with it the things left in the text is:
"how are you toda"
View 5 Replies
Sep 2, 2011
I created a box in paint and loaded it onto sprite using
[Embed(source="Colbox.png")]
var Colbox:Class;
private var NBVar:Bitmap = new Colbox ();
[Code]....
However the number 80 does not appear in the middle of the colored box. Is there a easier method to achieve this with better accuracy ?
View 1 Replies
Oct 2, 2009
I am willing to use Macromedia Flash this year to make my physics project. Well, its going to be force resultant calculator. for ones dont know how it gets counted.
Well, I'll make 4 input text boxes, and a button in the middle. 1 text boxin the north, (power effect the body from the north) one on the south, one on the east and one on the west.(I've done that part).
Then, ill need it to subtract the north - south and east - west on(release), and display that on a dynamic box called Fx (east - west) and another called FY (north - south) Finally, I'll need it fethagorth the Fx and FY to give me the final force resultant. I've done the 4 input boxes and a button, I'll still need someone gimme the action script for subtraction and fethagorth (or atleast teach me how to do it).
View 1 Replies
Sep 13, 2011
If I want to align things vertically in a container, I'll use verticalAlign="middle", but this doesn't exactly solve the problem of truly aligning text vertically. Text is always too high vertically, so in the past, I've just adjusted paddingTop and paddingBottom to compensate, but that doesn't work as the font for _sans differs from operating system to operating system.
Given the following layout code, you'll see the problem:
<?xml version="1.0"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
[Code]....
What happens is pretty clear. The horizontal line gets aligned to the exact middle of the box, but the text is offset by some arbitrary amount. I assume that this is because of the text baseline alignment or something. Is there a way to fix this regardless of the font size and face? I'd like to have the line essentially go right through the middle of the text, ignoring the extra space possibly needed for below the logical line of text (ie: ignore the bottom part of "g's" and "j's" when laying things out).
View 3 Replies
Apr 27, 2009
I want to make a kind of splat with some dynamic text in the middle. i have the shape, but i cant resize the text to always be centralized...
View 1 Replies
May 16, 2010
I need to make the "rcheck2_txt" rotate 180. With this script it does what I need. But currently the centre point is in the top-left corner of the dynamic text box. How do i change the X Y cordinates so the centre point is in the middle of the dynamic text box?
[CODE]...
View 3 Replies
Nov 11, 2002
I made an effect in swish and i saved it in to an swf file i want to load that swf file in to my flash movie in the middle in which i have some text's and pictures
View 5 Replies
Nov 12, 2009
I have an Input Text area that users can edit and then submit. I need to be able to show, on screen, the cursor's current position as they type. I don't need to know where the mouse is but all work-arounds I've found so far can only tell me the mouse position. The font for the text is 'courier' or 'courier new' and the Input Text area is scrollable.
View 8 Replies
Dec 4, 2011
Is there a way to break text through actionscript so that it becomes a shape? I know that I can hit CTRL+B two times to break apart text and convert it to a shape, but I need to do it through actionscript, so that a user can enter some text, and then I have some effects applied to it.
View 1 Replies
Nov 30, 2009
ActionScript Code:
package {
import flash.display.MovieClip;
public class Base extends MovieClip {
public var baseHP:int = 50;
var newRect:Shape = new Shape();
1046: Type was not found or was not a compile-time constant: Shape. 1180: Call to a possibly undefined method Shape. What does it mean by "undefined method"? I am somewhat of a newby, so sorry if there are any stupid errors
View 1 Replies
Jun 22, 2010
Whenever I add shape hints to a shape tween the shape disappears in the between frames. I am using CS5 on Vista. I using files from [URL]to practice.
View 2 Replies
Nov 12, 2011
I'm looking for an AS3 version that dynamically populates this shape and allows for difference in font size to give it some more variety and flavour. I've got some examples of tag clouds but they don't accept a shape as its outer bounds and I've found some that allow for a shape but don't account for dynamic resizing of the text. Even a nudge in the right direction would be all I need and I can go from there.
[URL]
View 1 Replies
Jul 14, 2008
I need to draw a circle and a text above the circle that says "Hello world"the circle can be dragged around and the text move along with it.
dragging the text will not do move anything.
This is what i have so far. not sure what to do from here.[code]...
View 3 Replies
Nov 26, 2010
All I want to do is have a word start as a normal word, and then distort into a U shape, like the word is smiling. I've been googling and tutorialing and all I have come up with is breaking the word up and then using the distort tool, but it distorts every corner of every letter, isn't there a way to distort the whole word just a little? Also, when I "create shape tween" the text dissapears and when I "create motion tween" it needs to turn into a graphic so then I cant even use the distortion tool. What do I do?
View 2 Replies
Apr 19, 2011
I would like to embed some text into a circle in ActionScript. I have three problems: I can't get the text to center in the circle, I can't get the text to be center aligned, and I can't get the font to be applied to the text. Regarding the font, I know that it is embedded correctly, as it works on TextFields I create on the stage.[code]
View 1 Replies
May 12, 2004
Let's say i create a textfield(with some text in it ) and then i want to convertit to a shape. How would i do that + is it posssible to shape tween texts using nothing but actionscript?
View 2 Replies