ActionScript 3.0 :: Text Becoming Bold When Set To Dynamic?
Jun 26, 2009
I have a text field in Flash (CS4, using AS3), the font is set to Helvetica Neue, and it looks fine as a static text field, but looks bold when it is set to dynamic. What causes this? Is there anyway around this problem (other than setting the field to static)? Is there a way to control tracking with TextFormat in AS3? You can control leading with the object, but I can't seem to find a way to put more space between letters.
View 2 Replies
Similar Posts:
Nov 2, 2011
I have a dynamic textfield being populated with an xml files' content. I then have a css stylesheet loaded into format the text. This all works great, but what doesn't work is the ability to bold some of the words in that text. I have both the regular and bold versions of the font embedded into the swf, I can test out just a bold block of text and it works fine. The css is also working as it will change the size of the text that I tell it to. Everything is working, but for some reason I am not able to get the bolder version of the font to display in the same text box as the regular one. I have also tried to change fonts but had the same outcome.
View 2 Replies
Mar 17, 2009
i'm using a font called "AGBookBQ-Regular" in a dynamic text box, which loads a text file. i understand that to include the bold and italic options, i have placed another text box just out of view off the stage with these two options selected.italic works fine but the bold makes very little difference... it only stretches the font slightly.i've searched for the answer to make a much bolder font and it seems you can use a specific bold font as the bold font.i've tried this, but nothing happens. i think i'm interpreting it correctly, but if someone could please confirm this works and perhaps explain it a little clearer (using my specific font names... "AGBookBQ-Regular" and "AGBookBQ-Medium" as the bold font).
View 2 Replies
Aug 24, 2010
lets say theres a dynamic textbox with the name 'txt1'
i typed the code:
txt1.bold = true;
but it doesnt work, the text is still not bold,
View 1 Replies
Nov 1, 2010
I have a dynamic text on my stage called text_txt I want to write the html code <b><u>test</b></u> so here is my code
[Code]...
View 15 Replies
Apr 26, 2009
i neeed to create a text box with bold letter. my coding is as follows.
but it always shows bold, even i gave tf1.bold = false.
[Code]....
Note: where options[0][0] is an array has all the properties bold = true/false, color = 0x----.
View 1 Replies
Sep 9, 2009
I have a dynamic text field with a very simple external text loader.this text field just contains t list of people...
Code:
function textLoadComplete(event:Event):void
{
clientList.text = textLoader.data;
[code]....
But now a want the first letter of every line in bold or 2 point sizes bigger.I know I can only embed one text style - and bold would be an additional style, right?But it's only a simple list of words - no links - no other extras.
View 2 Replies
Dec 28, 2009
I have a tooltip pop up when you rollover a movieclip, and the content in the tooltip is dynamic text. Right now I'm limited to only one color, and one font. Is there a way to put in to make part of the text bold and in color? I've tried just putting in the <b> tag, but that doesn't work.
tooltip._visible = false;
var tipInt;
b1.onRollOver = function() {
[Code].....
View 4 Replies
Sep 20, 2010
I basically can't figure out how to make dynamic text Bold.I have a String that holds text which is passed to it from an XML file's attributes. (It is my understanding that you can't use CDATA <b> in an XML file's attributes. If I'm wrong, please show me how) I have a TextField which I want to display this string in BOLD text. I tried the following and it doesn't work.[code]
View 2 Replies
Apr 30, 2010
I have a grid of animated dynamic text boxes that are being pushed in from an array. This works great. I was wondering if it possible to have those randomly bolded? If that is not possible, than could their alpha's be random but not any lower than 50%. I know AS3 does 0-1 but how would you force it to not be lower than a certain number?
PHP Code:
import fl.transitions.Tween;import fl.transitions.easing.*;import fl.transitions.TweenEvent;var myArray:Array=["Person1","Per2","theLongerPerson3","Person4","p5","p6","People1","Peep2","theLong
[Code]......
View 1 Replies
Jun 16, 2011
In the Flash IDE, I have made a dynamic text field bold. When the Flash is compiled and run, the bold styling disappears. How do I retain the bold styling?
Top: IDE
Bottom: SWF
View 1 Replies
Nov 3, 2009
I have an xml-based mp3 player which loads the track titles into dynamic text fields from an external .xml file and I can't get the text to bold. I have "use device fonts" checked. If I select the text field in Flash and change the color or size those attributes will change in the published version, but... when I click the B button, it won't render the text bold in the published version.Do I have to add additional font formatting in the actual ActionScript? Here's the AS for the player. I only want to bold the track title which (I think) is about half-way down -- track_title.text = track_list[current];[code]
View 5 Replies
Jan 6, 2010
I'm trying to update an old CS3 project, which had a dynamic text field with HTML formatted text using the <b> tag to create bold text in places. In the CS4 version the bold text simply doesn't show up. It does in the CS3 version. I have embedded the font in both regular and bold varieties, both by using the offstage empty text field method, and the font in library method. I simply can't get it to work. I've seen other people having this problem with CS4 on other forums, but no solutions or workarounds as yet.
View 3 Replies
May 4, 2011
I have a dynamic text box for 3 lines of text. I styled part of the text to be bold and part of it to be regular. When i click on the button to display the text it looks right the first time but if i click on it a second time then all of the text shows up bold instead of just the few lines i assigned the bold tag to.
View 18 Replies
May 24, 2006
I have a dynamic text field with the text "IMAGES". The font is Arial, it has BOLD and ITALIC checked, and has basic Latin fonts embedded. Now, I use Actionscript to change the text:
textField.text = "IMAGES";
Suddenly the text disappears! Now, it seems to me that since BOLD and ITALIC are checked on the text field, changing the .text value should simply change the text itself, which should then be rendered in bold and italic, and since I have bold+italic Latin glyphs embedded, it should display properly. But what's clearly happening is that when I set the text using Actionscript, it is attempting to display the NORMAL font instead, and since it's not embedded, it won't display. I know this because if I create another proxy text field off the screen and embed the NORMAL Arial glyphs, the original text field's text will display just fine - as normal-weight text.
But why is this? Do I have to use a TextFormat object to set the text to Bold and Italic EVERY time I want to dynamicaly change the text? This seems silly. I simply want my text field to be bold and italic every time the text changes, and NO normal text!
View 1 Replies
Jun 28, 2009
I have dynamic text inside a movieclip, that I can make it rotate.
the dynamic text properties are : anti-alias for anmations and I emdedded all characters.
When I click on the bold button the the text disappears.
bold_btn.addEventListener(MouseEvent.Click, on_bold);
function on_bold(e:MouseEvent):void
{
[Code].....
View 3 Replies
Oct 19, 2009
Just to give you a little background, I am using CS4 and AS3, publishing to FP9. I am embedding fonts dynamically at runtime and there seems to be an issue with my dynamic 'html' text field when I have <b> tags within the CDATA.
In some cases, Flash seems to be rendering the bold text too close to the preceding character. Sometimes, even overlapping the preceding character. For the most part, this appears to be happening when the bold text appears at the end of the line before the text is wrapped.
I will note that, any text in the xml file wrapped in <b></b> tags is actually appearing bold, so I don't think it has anything to do with font embedding. In case it does, here is how I am embedding the font groups:
// Semi Bold
[Embed(source="/fonts/Anvers/AnversSemiBold.otf", fontName="AnversSemiBold", fontWeight="normal", fontStyle="regular", advancedAntiAliasing="true", mimeType="application/x-font")]
public static const ANVERS_SEMI_BOLD:Class;
View 1 Replies
Feb 20, 2010
I have this text "my text is <b>bold</b> and regular".
I want "<b>bold</b>" to be... well, let's say... bold !
I have a mask layer under which there is a text field.
The text field shows htmlText, and i must embed chars. If not embedded, it doesn't display because of the mask. So the solution of importing 2 user fonts ( one bold and one regular) does not work.
View 1 Replies
Feb 4, 2009
Trying to format input text fields using format buttons in Actionscript has been challenging. I've been able to put some pieces together, however I am still missing some things. Here's my code:
Code:
function selectText() {
startSelect = Selection.getBeginIndex();[code].........
I need the ability to click the Bold button and it bolds or unbolds at the cursor so if I hit the bold button what I type from that point on will be bold until I hit the button again and then it goes back to regular. I am able to change it to bold or unbold by selecting the text and clicking the button but I also need to do it without selecting.
View 3 Replies
Nov 12, 2009
I have a single dynamic textfield containing NON-HTML text meant to be displayed in a single typeface: Helvetica Neue - 75 Bold. When I author on a Windows installation, the font displays as Helvetica Roman. When I author on the Mac, the font displays correctly as the boldface version.
how to embed multiple weights of a typeface so you can use HTML markup to, say, mix bold, italic and roman text in the same textfield. This is about manually embedding a single font, Helvetica neue 75 Bold into a dynamic textfield using the Flash IDE and it not working on Windows.
View 14 Replies
Jul 5, 2010
I have a linked movieclip that contains two textfields.One of the textfields needs to have regular and bold text, so I thought I would use htmlText however it's only showing the regular font that I embedded?I made the textfield in Flash and called it "details".I also tried to make another textField in the symbol called, "invisi" and I set it not visible:invisi.visible = false;I embedded the BOLD version of the font in the invisi textfield, hoping this would make the "details" text field show the bold font...but no luck.
View 2 Replies
Jan 5, 2010
am using AS3 and i have one dynamic text filed. The properties
-Fontname "verdana"
-size "14"
-style "Bold"
it is shown the correct font in BOLD if there is no value.It will not show the correct font properties am not getting the bold style :(
View 4 Replies
Mar 3, 2010
I create a dynamic text object on my stage. I set the family to Arial and style to Bold. When I change the text by setting the .text to something else, the bold goes away and it just becomes Regular. How can I make it stay Bold?
View 1 Replies
Aug 14, 2011
I've got a dynamic text field that I want to sometimes be bold, sometimes not. It's called "myTextField".I'm sending it a variable called "myText" and trying to bold it as follows:myTextField.text = "<B>" + myText + "</B>"
- The text field has the font embedded.
- I have some regular AND bold text in the text field in authoring
- The text field is set to receive HTML text in properties.
But it keeps putting "<B>" right in the text field before my variable and "</B>" after. What am I missing / not getting here?I know I've done this before, but can't find where.
View 6 Replies
Sep 30, 2009
I have a textfield that has a mouse click event, and when the user clicks on the text field, I would like to make the text bold, but the following code doesn't work:
ActionScript Code:
private function onTxtMouseClick(e:MouseEvent){
var el = sng.getChildByName(e.target.name); // The text field[code].........
View 2 Replies
Jan 6, 2011
I need to type text as Bold in the input text field. But when I given a single letter as a bold. Then the output is find as I expected.
View 1 Replies
Jan 29, 2010
I want to make an imported text from a textfile be bold.ow do I do it?This is what it looks like now:
this.createTextField("my_txt", 10, 10, 10, 80, 100);
my_txt.setNewTextFormat(new TextFormat("Arial",12,0xCC6600));
boldFormat = new TextFormat();
[code].....
View 2 Replies
Jul 6, 2010
I opened up a file that was created in cs3 flash with cs5 flash and we have some text that is bold in our actionscript code. now when i load that file with cs5 the bold text drop's out of bold and is just plain text. Does anyone know if there is a quick fix for this because what was there before the <b></b> is not working now.
View 1 Replies
Sep 10, 2010
<a href='asfunction:loadText,"+msgA[0]+",,"+msgA[0]+newline+msgA[1]+newl ine+msgA[2]+'Contact: '+msgA[3]+"'>"+msgA[0]+
How do I make "Contact" appear as Bold text?
View 11 Replies
Sep 23, 2010
TheProfileRoot.EngineeringText.text = "Level " + PlayerEngineerLevel + " Engineer - level up in " + PlayerReqEngineer + " xp"; I want the "Level " + PlayerEngineerLevel to be bold. And the rest to be plain.
View 2 Replies