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


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 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 3.0 :: Reading TextField And TextFormat From Flash GUI Stage?

May 18, 2010

throught code i am trying to read GUI display objects. (don't ask why) My problem is that i can read individual properties of TextField object and TextFormat object, but not traverse those objects to gather all its contents at once.

See my code, individual traces are hapening ok, but those in for cicles are not, i don't get it.

Code:
if (_target.getChildAt(i) is TextField)
{
var currentTextField:TextField = _target.getChildAt(i) as TextField;
trace(currentTextField.embedFonts); //true

[Code]....

View 0 Replies

ActionScript 3.0 :: Changing Some Text In TextField?

Jul 6, 2009

Curious if you can change only some text in a TextField rather than all of it..Like simple example:The Ocean has alot of water...And make Ocean blue?

View 3 Replies

Professional :: Changing Text In A Textfield?

Jul 31, 2010

I am trying to create buttons that will replace the text in a text field.The text field is "Staff_Copy".The buttons are "Staff_Saam_btn", "Staff_Nicolas_btn", "Staff_David_btn", and "Staff_Anthony_btn".
 
//Code in frame 1 of timeline
var Staff_Copy_Value:Number = 0;[code]................

This doesn't work.Whatever the initial value of the variable "Staff_Copy_Value" is will determine the text in the field.So if I use the value 0 as in the above, whatever is in the textfield on the stage shows.If I use 1,2,3, or 4 then the text strings in the defined variables shows up.What am I missing.I am assuming it is has to do with the onEnterFrame command.How do I make the movie keep checking the value of "Staff_Copy_Value"?

View 11 Replies

ActionScript 3.0 :: Changing Text In Textfield?

Dec 30, 2010

I created dynamic Textfield using flash interface and named it "score". Now im trying to change its text in actionscript during runtime, but some strange things happen... Anyway the text is not changing. Other properties are OK , but i cant change the text.

View 4 Replies

ActionScript 3.0 :: Changing The Text In The Textfield?

Jun 2, 2011

I want to change the text in textfield1 with the inputted text in textfield2..for example, the text in textfield1 is "HELLO" i want to make it "HI" by inputing "HI" in textfield2 after clicking the change button the "HELLO" text will replace by "HI"

changeButton.addEventListener (MouseEvent.CLICK, onClick)
{
textfield1.text = textfield2.text
}

not working..

View 1 Replies

ActionScript 3.0 :: Changing The Text In The Textfield

Jun 2, 2011

I want to change the text in textfield1 with the inputted text in textfield2..

for example, the text in textfield1 is "HELLO" i want to make it "HI" by inputing "HI" in textfield2 after clicking the change button the "HELLO" text will replace by "HI"

changeButton.addEventListener (MouseEvent.CLICK, onClick)
{
textfield1.text = textfield2.text
}

View 1 Replies

ActionScript 2.0 :: Changing Color Of TextFormat OnRollOver

Jan 26, 2009

I have a dynamically created xml menu that I am trying to change the text color onRollOver and have it return to the original color onRollOut:[code]The section commented out is a few options I have tried with no success. The code before that changes the background color of the button. I suspect the "btntf" is out of scope inside the function, but am not sure.

View 2 Replies

ActionScript 2.0 :: Changing Text In Textfield With Buttons

Feb 8, 2009

how can I make buttons that change the text inside of a textfield? What coding would need to be used? If you could actually write out one example of a button that changes the text inside of a textfield.

View 3 Replies

ActionScript 3.0 :: TextField Text Color Changing (not Animated)

Apr 24, 2009

Say I have a class that extends TextField and I want to have it set a default text color to black (0x000000) when initiated. Easy enough. But then say, when the XML finishes loading and the user has decided to change the color of that textfield to red (0xFF0000), what would be the easiest way to change the text color of that field? The only way I can think to do it is to change the textformat color via public method? Would this be correct or is there an easier way?

[Code]...

View 1 Replies

ActionScript 3.0 :: Copy Some Line And Its TextFormat From TextField?

Feb 2, 2011

the example of my problem is:

I have 2 textFiled  there are:

1. myTextFied  ( to store the original text )

2. displayText  ( to show some line of  original text )

I try this:
 
myTextField.htmlText = '<B>THIS IS A TEXT LINE 1</B>
' +
'<I>THIS IS  A TEXT LINE 2</I>
' +

[Code]....

View 5 Replies

Remove Last Character From Textfield Without Destroying Textformat

Jan 3, 2011

I have a problem where i want to remove the last character from a textfield (including linebreaks) that has multiple textformats without removing the formats.[code]...

i guess this doesn't remove linebreaks, and is very slow, seems to destroy my textformats.

or:

textfield.text = textfield.text.slice(0,-1);

this is faster but removes all textformats as well.

View 2 Replies

ActionScript 2.0 :: TextField.StyleSheet And TextFormat() Not Working Together?

Jun 5, 2007

I'm trying to put some leading on a body of text, however it doesn't seem to work after a stylesheet has been applied. Without the stylesheet it works..

Here's what im doing:

ActionScript Code:
//CSS
cssStyle = function(my_txt){

[code]...

View 1 Replies

ActionScript 3.0 :: Applying TextFormat To Words In TextField?

Nov 26, 2009

I'm trying to apply a format (specifically, green-colored text) to specific words in a TextField. I tried the below method, checking for words in an array "commands", and it works fine apart from a few issues below (see pic).

ActionScript Code:
var commands:Array = ["green", "no"] // etc.
function formatGreen(msg:TextField):void {
for (var i in commands) {

[Code].....

View 9 Replies

ActionScript 3.0 :: Tabbing To TextField Removes TextFormat?

Aug 12, 2011

I have a set of 5 TextFields that a user enters info into. Each has the same TextFormat applied. If the focus is set by clicking with the mouse, the TextFormat is applied and all is well. If the focus is set by tabbing, the TextFormat is not applied and a default style for the font is seen. Here's my code:

Code:
var input1:TextField = new TextField();
addChild(input1)[code]...................

View 1 Replies

ActionScript 3.0 :: Set TextFormat Of Dynamically Created TextField?

Jan 25, 2009

here is the code:

// Create new textFormat object-----
var myTF:TextFormat = new TextFormat();
myTF.font = "Verdana";

[Code].....

how do I address only the texField named t3 ?

View 2 Replies

ActionScript 3.0 :: Apply TextFormat To A Single Line In A TextField?

Jun 4, 2010

I have very little experience with text in flash. In a dynamic text field I know I can apply a TextFormat to the entire field but can I apply different fromatting to individual workd in the field if for example I wanted to make a word or a few words of text a hyperlink within a textfield.  Can I do that or would I need to use html text?

View 3 Replies

ActionScript 3.0 :: Change Font Size TextFormat In TextField?

Oct 11, 2010

Project: Simple Click Counter of two separate buttons.

Problem: Font size of clicks needs to be changed/increased.

link to .fla
 
Not sure where to place this code in the script below.(inserting it causes font to initially to be correct size of 20 but changes back to default when a mouse click is issued)[code]...

View 6 Replies

ActionScript 3.0 :: Apply A TextFormat To A TextField In A Super Class?

Aug 19, 2009

How can I apply a TextFormat to a TextField instance in a super class?

Code:
// This doesn't seem to work:
var textFormat:TextFormat = new TextFormat();
textFormat.size = 24;
super.alertText.setTextFormat(textFormat);

View 5 Replies

ActionScript 3.0 :: Changing Background Color Of TextField When Said TextField Is Selected By User?

May 5, 2010

I am looking to change the background color of a input textField when the user selects that testfield to start populating it. I have done a bunch of searching and I keep coming up with this type of answer...

Code:
myTextField.onSetFocus = Set(evt:Event){
// Change color
}

Problems...

1) Is onSetFocus/onKillFocus still available? From what I can tell it is not.

2) I have my text objects encapsulasted in a class so I do not believe I am able to do it like I have been suggested.

View 2 Replies

ActionScript 3.0 :: Flash With Changing Properties Of Custom TextField Class?

Jan 17, 2011

I wrote a simple class called CustomTextField.as as follows:

package{
import flash.text.TextField;
public class CustomTextField extends TextField{

[code].....

View 2 Replies

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

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







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