ActionScript 3.0 :: TextFormat Changes With Text?

Jun 29, 2011

Forgive me if this is an obvious one but it has me a bit confused. I have the following sample:

Code:
import flash.display.Sprite;
import flash.text.TextField;

[code].....

View 2 Replies


Similar Posts:


ActionScript 3.0 :: Text Disappears When Changing TextFormat Or Text?

Apr 24, 2009

I have a textfield that is dynamicly created which contains some text and has a textformat applied to it, which works fine, and I have my happy little text field.

the problem comes when I try to change the text and textformat after an event. I am doing it as so:

Code:
targ.getChildAt(2).setTextFormat(WoodTxtFmt.contentTitleSel)
targ.getChildAt(2).text = "back"

then the text becomes invisible. I know it is changed because once I rollover the container movieclip, the text appears.

I tried to dispatch a rollover event after I change the text, but no dice.

View 1 Replies

ActionScript 3.0 :: TextFormat Changes With Text.length

Aug 27, 2011

I want the font size of a dynamic text box to change according to the number of characters of the input text. The user types in whatever (up to 50 characters long), then hits an update button to see it in the dynamic text box. But since the dynamic text can only be a single line within a defined area with no horizontal scrolling.

Here's the code I'm having a problem with:

Code:
updateBtn.addEventListener(MouseEvent.CLICK, updateIt);
inputText.maxChars = 50;
function updateIt(event:MouseEvent):void{

[Code]......

View 1 Replies

ActionScript 3.0 :: TextFormat Changes With Text.length?

Aug 27, 2011

I want the font size of a dynamic text box to change according to the number of characters of the input text. The user types in whatever (up to 50 characters long), then hits an update button to see it in the dynamic text box. But since the dynamic text can only be a single line within a defined area with no horizontal scrolling.

Here's the code I'm having a problem with:

ActionScript Code:
updateBtn.addEventListener(MouseEvent.CLICK, updateIt);
inputText.maxChars = 50;
function updateIt(event:MouseEvent):void{

[Code].....

View 6 Replies

ActionScript 2.0 :: TextFormat Not Formating Text?

Apr 17, 2008

This is not styling my text. What am I doing wrong?

this.textScroll.createTextField("my_txt", this.getNextHighestDepth(), 0, 0, 255, 200);
textScroll.my_txt.multiline = true;
textScroll.my_txt.html = true;

[code].....

View 5 Replies

ActionScript 2.0 :: TextFormat On Dyanmic Text Field?

Aug 29, 2009

I am basically creating a new text field for every number, i though 10. And I want to apply Text format to each and every text field so that I can tell it which font I want to use and yada yada.

[Code]...

View 1 Replies

ActionScript 2.0 :: TextFormat And Input Text Fields?

Nov 24, 2004

I am trying to create a TextField, set its type property to "input," set its format via the TextFormat object, and allow the user to add a label to a movieclip.

Assume you have a button named b_add, and you assign it this code on the main timeline:

Code:
_root.b_add.onRelease = function () {_root.createTextField("myLabel", 10, -38, -15, 76, 29.7);
_root.myLabel.type = "input";
_root.myLabel.text = "insert label";
_root.myLabel.wordWrap = true;

[Code]...

The TextField that gets created loses all of its formatting once the user starts typing. It reverts to Time New Roman and doesn't wrap. Do I have something out of order? Should I approach the problem with another solution?

View 6 Replies

ActionScript 3.0 :: Format All The Text Using Stylesheets Or Textformat?

Mar 25, 2010

I'm not sure if I should format all the text using Stylesheets or Textformat.

View 3 Replies

ActionScript 3.0 :: TextFormat Lost When Redefining TextField.text?

Mar 3, 2009

Is there a way to prevent Flash from removing the applied textFormat style whenever a textField.text value is redefined?

View 5 Replies

ActionScript 2.0 :: Textformat Tabstops With Loading Dynamic Text?

Aug 25, 2010

Basically what I have is a dynamic text field that gets text into it from an external file using loadVars(). I have got every single HTML tag to work, except for the one I really need, which is the tabstops attribute of the <textformat> tag.The content I have is like so:

Code:
<textformat tabstops='[50,100]'>Damn stupid tabstops doesn't work.</textformat>
Which displays as:

[code].....

View 2 Replies

ActionScript 3.0 :: Input Text FocusEvent Ignores TextFormat?

Sep 26, 2009

I am making a simple contact form in as3, but I am having problems formating it. As soon as I use a FocusEvent, as below, it completely ignores the formating which I set?

[AS]private function onFocus(evt:FocusEvent):void
{
if(evt.target.text == "Enter here.") {

[code].....

View 2 Replies

Flash :: Actionscript TextFormat Resets When Changing TextField.text

Jan 19, 2010

I have a TextField that is formatted with bold and blue. However, when I change TextField.text, the formatting of the textfield resets and I have to setTextFormat again. This is the code I use to set my TextField. myText is the variable for my TextField. (This is just part of my code; it is part of a function for my EventListener.)

View 3 Replies

Regex :: Using Regular Expression And TextFormat To Style Text Between HTML Tags?

Mar 1, 2012

I've been struggling with this problem for a while:I have a string containing HTML and I'm using a regular expression to get the characters between the tags. I'm then attempting to apply a TextFormat to those characters.The problem is that I'm using the TextField's "htmlText" property instead of it's "text" property (because I don't want the HTML tags to be visible). So, the character index that's returned from the regular expression is incorrect, when I apply the TextFormat.Here is some sample code which illustrates the problem:

var txt:String = "<b>Sample</b> string with bold text";
var tf:TextField = new TextField();
addChild(tf);

[code].....

View 2 Replies

ActionScript 3.0 :: TextFormat Vs StyleSheet?

Jun 13, 2011

I am working on a large project that displays a fair amount of text.how to best handle the formatting of the text globally? what is the best way to handle the text formatting on a global level ? Through the TextFormat class, through style sheets, a combination of these two depending on the specific situation ?

Is it a best practice for large projects to use style sheets for all of the texts ? Implying that all texts must be written with tags.Using only style sheets seems like the best approach at this time to me but before going into coding this approach on a large scale in my project,

View 1 Replies

Flash :: TextFormat Doesn't Do Anything?

Jun 9, 2011

my code is correct, but anyhow, anyway my textformat does not work, examine follow codeDidnt see what i did wrong.

//SCROLLING SPEED
var scrolling_speed:int = 2;
//TEXT TO SCROLL

[code]......

View 1 Replies

ActionScript 3.0 :: Get TextFormat Name (or Reference)?

Jan 15, 2009

Im new to As3 and theres an issue thats driving me crazy. I need to know the name (or reference) of a TextFormat and I cant seem to do it.

Heres some of the code

ActionScript Code:
var f:TextFormat=tf.getTextFormat();
trace ("f.size"+f.size)
trace("****** "+f as String);

Basically I need to find the name of the textformat, which when I created i named like this:

ActionScript Code:
// for example "menuTextSmall"...
var nombreFormato:String = formatosXML.estilo[i].@nombre;
global.formatos[nombreFormato]=new TextFormat();

I have my formats in an xml file with name, attributes, etc. I can get the properties of the TextFormat but I dont know which TextFormat it actually is!!

View 4 Replies

ActionScript 2.0 :: Get TextFormat Name String?

Jan 20, 2009

I'm setting the style of a textfield selection like [code]...

I tried searching, but Google ignores brackets, so I can't search the output shown

View 1 Replies

ActionScript 3.0 :: How To Use Textformat And Tabstops

Oct 6, 2009

I have an text field set as HTML and Im pulling in some text from XML and I can't figure out how to use textformat HTML tag with tabstops, here is XML:

ActionScript Code:
<![CDATA[<textformat>Name Surname Nickname</textformat>]]>

I want all to be separated like so(100px between Name & Surname and 150px between Surname & Nickname):

Name 100px Surname 150px Nickname.

How to do this? I guess I would have to do something like:

ActionScript Code:
<![CDATA[<textformat tabstops="100,150">Name Surname Nickname</textformat>]]>

View 2 Replies

ActionScript 2.0 :: TextFormat No Display Under IE?

Aug 21, 2010

I've created a price updater project to retreive the foreign exchange rate and reload for every 2sec. However, the exported swf only working under firefox and Chrome, but not IE. I had also tried to embedded teh font inside, but still not be able to work out

[Code]...

View 1 Replies

ActionScript 2.0 :: Can't Get TextFormat Working

May 16, 2007

This is a bit of code that lets the user click somewhere and type in some text. Everything in my code works except I can't seem to set the text format. It defaults to Times New Roman. Do I need to embed the fonts or something?

Code:

i = 0;
mcDraw.onPress = function() {
i++

[Code].....

View 2 Replies

ActionScript 3.0 :: TextFormat Disappears?

Apr 24, 2009

...when i set the textField with new text eg:

var tf = new TextField();
var myFormat = new TextFormat();
//set textField format

[code].....

View 1 Replies

ActionScript 2.0 :: TextFormat & Hover

Apr 13, 2005

I have created a new textFormat for some dynamic text that is loaded into a textfield. Is there a way to change the style of the text when hovering over it?

View 2 Replies

ActionScript 3.0 :: Using Textformat Class Dynamically?

Nov 18, 2009

I've recently started to learn/use AS 3.0 and am now exploring the use of external custom classes.I have an fla with a text field in place. I want to write an AS 3.0 class in an external .as file which sets a text format, and apply that format to the text field in the fla file - how do i so this?

View 2 Replies

ActionScript 3.0 :: Use TextFormat On Multiple Frames?

Feb 19, 2009

I must be missing something, but how on earth do I make it sothat I can set TextFormats for the whole movie and not just theframe the actionscript is on.My movie is basically a video with cuepoints that triggerdifferent keyframes that display text appropriate to what theperson featured in the video is talking about. In other words it'slike a powerpoint presentation that's run by an FLV file. Almostall of the blocks of text I'll be displaying are bulleted lists andsince, for some odd reason, bulleted lists aren't available usingthe standard Flash GUI text formating tools I need to apply themvia ActionScript. All the ActionScript is in its own keyframe atthe beginning of the movie timeline. I've setup my text formatingcode like this:

var bulletlist:TextFormat = new TextFormat();
bulletlist.bullet = true;
bulletlist_field.setTextFormat(bulletlist);

While I have successfully applied this to a box of text onthe first frame of the movie, I haven't be able to apply it to texton any other keyframe. So from what I can tell, I have to referencethe above TextFormat actionscript for every frame I need to use iton, and since I can't have duplicate TextFormat values, that meansI'd have to create a new instance with a new name for each frame.This seems rather inefficient and frankly ridiculous consider thatthe other ActionScript that I wrote seems to apply to the wholemovie. And what's the point of using ActionScript to format text ifyou have to redo it for every *******' keyframe? Is there somefunction that I'm missing somewhere to allow me to use one set ofTextFormat code on multiple frames or is this simply a dysfunctionof Flash and/or ActionScript 3.

View 11 Replies

ActionScript 3.0 :: Set TextFormat For TextFeild Dose Not Appear

Jan 26, 2009

I have issue with TextFormat; when I set TextFormat for TextFeild .. dose not appear !! look at my class:) at the end line ...

View 6 Replies

ActionScript 3.0 :: Retrieve Textformat Parameters?

Feb 20, 2009

I am using the setStyle to set the text label on some buttons in flash. AS3.Set font to bold and color to red. myButton.setStyle ("textFormat", redBoldFormat);I do this on as part of a function when the button is clicked.Is there a way to retreive the textformat settings (like bold, etc) so I can un-set the format? I have 5 buttons, when one is clicked, it goes bold and red.When a different button is clicked, I would like the previously clicked button to go back to "not bold" and "not red" and so on,

View 1 Replies

TextFormat - Change The Font Size

Jan 14, 2011

In my movie, I have a dynamic textfield on the timeline starting the first frame and going to the end. At various points during the movie, I change the text in the textfield (and that works just fine), but I also want to change the font-size when I do that. I've tried using setTextFormat to a different TextFormat object, but that doesn't seem to work. Maybe someone has a better idea?

[Code]....

View 2 Replies

Actionscript 3 :: Why Is TextFormat.size An Object

Mar 22, 2010

According to the ActionScript 3.0 documentation, the TextFormat classes size property is an Object. Why is this? Clearly this is a number! When I check its type (using typeOf()), it returns Number. So whats the deal?

View 3 Replies

ActionScript 3.0 :: TextFormat: Top And Bottom Margins?

Apr 10, 2008

I'm using TextFormat to format a text field and I've noticed that, while there are properties for leftMargin and rightMargin, there are non for top and bottom margins. Is there any way to add some padding to the top and bottom of a text field? My text field has a background color, and right now the text is flush with the top and bottom edges of the box, which looks ugly

View 4 Replies

ActionScript 3.0 :: Attributes For TextFormat Variables?

Apr 21, 2011

I create a TextFormat variable like so:

ActionScript Code:
textBox1_fmt = new TextFormat();
textBox1_fmt.color = 0xFFFFFF;
textBox1_fmt.size = 22;

What I would also like to change though is the font family to Lithos Pro and set the alignment to the right. Do you need to embed the fonts? If so, then how?

I then draw a TextField onto the screen like so:

ActionScript Code:
textBox1_txt = new TextField();
textBox1_txt.text = "example";

[Code]....

otherwise it reverts to some default setting. How can I change this default setting?

View 2 Replies







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