ActionScript 2.0 :: Setting Text Formats Dynamically?
Jan 25, 2011
I have a little issue im trying to resolve. Basically i want to inherit the embedded text format properties from one text field which i have off the stage (empty) to another text field i have on stage. Ive came across the function of getTextFormat(), however when i try to apply this to the other text field it doesnt work:
ActionScript Code:
onStageTextField.getTextFormat(offStageTextField);
Ive embedded italics into my test field which is off stage. I guess im doing this completely wrong?! I know i could simply create a new TextFormat() then apply that to the text field but is there a way of inheriting the format properties of one tex tfield to another on stage?
View 3 Replies
Similar Posts:
Dec 5, 2009
I want to assign different formatting to different segments of text in a textfield. I tried assigning a format to a string and then concatinated it to the text and it was not accepted.How would I assign different formatting in the same textfield?
code follows:
format assigned to the textfield:
var sngTitle:TextField = new TextField(); sngTitle.text = 'Title: ';var sngTtlForm:TextFormat = new TextFormat(); sngTtlForm.font = "Stencil Std"; sngTtlForm.italic = true; sngTtlForm.color = 0xffcc00; sngTtlForm.size = 24; text I want to add to the above textfield:[code]................
View 2 Replies
Jul 17, 2011
I was wondering if someone found out a way to load dynamically video formats other than "FLA" like "AVI", and the same question about audio files like "WMA".I want to support it so users in my site could upload these formats and watch them in the player I made, therefore the solution of putting them first in "swf" won't help.
View 2 Replies
May 11, 2010
for each (var link:XML in settingsXML.links.link) {
menuItem = new MenuItem();
menuItem.menuLabel.text = link.@name;
[code]......
View 1 Replies
Jun 15, 2009
I'm currently working on a project that involves adding text fields dynamically, and I realized I need to change the color of the highlight when the text is selected
View 2 Replies
Oct 17, 2002
I was wondering: how to make a dynamic text box a little more customizable.what i mean: how do i start new paragraphs.. i've set it to multiline, but it just goes onto next line at end of current one which is fine
if i press enter, and go to new line in the actionscript, it creates an error, as the on function isn't finished...also, how to set the box to justify ALL test inside it.. even though i've selected the justify tab on the properties of the box, it doesn't do it properly ....
View 7 Replies
Jan 21, 2010
I am trying to bring in multiple RSS feed nodes into one Dynamic Text field in Flash CS3 using AS3. I have made vars for my headline node and my description text node and I am able to have them both display in the same dynamic text field by formatting them with HTML tags. My problem is changing the text size and color for the description node var. Is this possible in the same Text field. Can the default text format be overidden by code?
Here is what I have so far....
ActionScript Code:
//This code loads and Parses the RSS feed
var loader:URLLoader = new URLLoader();
loader.addEventListener(Event.COMPLETE, onLoaded);
[Code].....
I tried adding size = '8' in the <p> tag but it did not override the default size in the Dynamic Text Field (dtfa) properties.
View 1 Replies
Dec 11, 2008
how I can make one String, displayed in a TextField, have different text formats?
View 2 Replies
Feb 5, 2009
I have created a function to load up my movies what I would like to do is two things
(i) change the ldr to a movieclip
(ii) add an extra parameter to add an instance name movieclip when I call the movieclip
loadMyImage('images/headers/logo.png', 80, 20, 'myheader' );
View 5 Replies
Apr 28, 2010
I would like to set which axis is manipulated dynamically; or rather, I'd like to use a custom dynamic variable to set which proper variable to use.
Kind of like this: my_mc.x=55; or what i want to do is: my_mc.variableAxis=55;
View 2 Replies
Mar 7, 2009
I am creating an interface where a user can pick up "Polaroid" stle photos and shuffle them around a virtual desktop. I want to photo to shift it's transform point to match the point at which the user picked up the photo, to create a "swinging" effect as the photo is dragged.there was an AS2 workaround floating around, but I want to find the AS3 equivalent, and seem to be unable to find it in the Geom/Matrix package/classes.
View 3 Replies
Jul 2, 2010
I'm trying to read xml fields (with actionscript 3), but the problem is that I choose which field to read dynamically. For example, I may need to read test19 or test39 or test12 or anything else.
var value:Number = event.result.test19;
var value:Number = event.result.test39;
var value:Number = event.result.test12;
Is there a way to construct that event.result.test19 part dynamically? Something like the code idea below
[Code]...
View 1 Replies
Feb 10, 2009
I'm trying to dynamically set the addChild linkage identifier, but am having little luck.
Code:
for(i=0;i<6;i++){
if(i==this.myId){
var section:MovieClip = "section"+i
this.addChild(new section);
}}
In AS 2.0 I could simply do this:
Code:
attachMovie("section"+i, "section",0)
View 2 Replies
Sep 22, 2009
I need to set limits when generating a random number and this (code below) is just a temporary fix until I can set this limit dynamically.
The number is set to be between (0-4) by running an IF statement which sets a fixed upper limit. This works but I need the limit to update dynamically. My main goal is to use the numChildren property of an XMLList object (passed as argument) to set the maximum limit since the random number will be used by a loader when loading an image from this same XMLList.
Currently there are only 5 images in the XML file so this IF statement works. I would like to have the maximum limit update dynamically when the XML file has images added or subtracted to/from it.
[Code]...
View 3 Replies
Nov 10, 2009
I've automated a lot of my script, but cannot automate the very beginning where one sets the variables. I have the following script that I'd like to put in a "for" loop :
private var aliPlane1:Plane3D;
private var aliPlane2:Plane3D;
private var aliPlane3:Plane3D;
[code]......
View 9 Replies
Jan 16, 2006
I have a number of functions and I want to execute 1 based on the entries in a .xml file
part my xml file reads as follows
<funcType>thisFunc</funcType>
In my .fla I have defined thisFunc along with a number of similar functions
I want to execute the function as follows
chosenFunc=Node.childNodes[0].childNodes[0].nodeValue;//points to thisFunc in the .xml file
chosenFunc(); // This should execute as thisFunc ()
Problem is this doesn't seem to be working. Am I trying the impossible?
View 1 Replies
Feb 18, 2012
I have a rquirement where i want to play the song based on the checkbox checked.I mean i want to set the flashvars parameter of swf object on click of checkbox to play respective song.I am using the tag for this is
[Code]..
in my website. Here i want to change the flasvars dynamically on checkbox(function as radion button) checked
View 1 Replies
Jan 5, 2010
I keep feeling like this is just a case of not RTFM hard enough, but I'm just not seeing the answer. Is there a way to use AS3 to dynamically set leading in a dynanmic text field?I've found the getLineMetrics function, which returns a TextLineMetrics instance. This instance can tell me what my leading already is, but when I try to change the value I see nothing change onscreen. Likewise, I don't see any setLineMetrics function to go along with the text field. Is there just no way to change it?
View 4 Replies
Jul 1, 2011
I am updating an older project, written in Flex 3 with some new functionality and I cant figure out how to do something that appears to be really simple.I am passing in data to a panel via XML and binding the properties of the panel to this XML, so for example:[code]My question is simple:How do I set the panel Title and Status colors using data that is passed in the XML?You can set titleStyleName to the name of a styledeclaration but the are no styles for titleColor or statusColor.
View 2 Replies
Feb 28, 2007
Long time listener, first time caller here. I'm having trouble with how Flash sets the _x property of a dynamically created movieclip. If I create a rectangle on the stage using the Drawing API:
Code:
//for the purposes of this example, assign a value to i
var i:Number = 0;
//assign var squareName
var squareName:String = "square" + i;
//create an empty movieclip named [squareName] at depth 1
this.createEmptyMovieClip([squareName], 1);
[Code] .....
I'm not new to Flash by any stretch of the imagination, but I have never come up against this problem before. For context, I'm actually getting my feet wet with the Tween class, and am having trouble animating dynamically created movieclips due to this confusion with coordinates. When I tween a dynamically created clip from one set of coordinates to another, they are offset by the movieclip's _x and _y properties starting at 0, 0, rather than their actual position on stage.
View 3 Replies
Mar 2, 2008
I created a movie clip symbol with a user interface in it, using the standard components. It contains various components that I draged on the stage. I named the instances (e.g titleLabel). Then I created an ActionScript class for that user interface. Under the linkage properties of the symbol I specified that class. In the class itself, i declared the attribute "var titleLabel:Label". I thought this would be the same instance from the symbol? But: Trying to set the text of the Label AFTER the movie was dynamically added to the parent does not work. I cannot access any properties.
Here is the example:
My Class for the user interface:
Code:
import mx.controls.*;
class Information extends MovieClip {
var titleLabel:Label; //this is the same instance name as in the symbol
[Code].....
View 1 Replies
Dec 22, 2004
i'm creating a completely dynamic form. i want to assign a variable name to a textfield and then pass that variable with a LoadVars() object.
here's a small piece of code i can't get working:
//create movieclip (used like a form)
_root.createEmptyMovieClip( 'dialog_body', 0 );
//create textfield input
[Code].....
bottomline: if i create a textfield using the traditional method and assign the 'var' it works fine. if i create a textfield dynamically at run time, and use the *.variable property, the variable is NOT sent..
View 2 Replies
May 23, 2005
I'm using Flash Remoting to grab a result set from a SQL Server database. Then, using the total records in the result set, I'm creating the respective number of movie clips on the stage. Each of these movie clips is an instance of the "button_mc" movie clip I have in the library, named "button_0", "button_1", ..."button_n". The library movie clip that I'm using to create the instances contains a standard Flash button.
Anyway, that part is working fine. What I want to do is dynamically generate the onRelease event handler for each of these unique buttons. When I try to do this within the for loop, it sets all the event handlers to the last item in the list. What I want to do with the event handler is change the text of a dynamic text field based on the button name.
e.g. buttonName.onRelease = function() {
myDynamicTextField.text = "button_"+i;
}
In some ways it makes sense that the event handler is always going to be the last available in the loop, as the handler is called after the loop is completed. However, I'm hoping there's a way to make the handler "stick" after the loop is completed.
View 2 Replies
Aug 8, 2011
It's what this image describes:For some reason, I cannot use bold tags to set the TLF text to bold, even though both the regular and bold fonts are embedded.so that the webpage that embeds this movie can call its function (otherwise the movie itself will be wrapped by TLF).his is not exactly a question since there is an obvious solution to this. Just set the htmlText as something like "<font face='Myriad Web Pro'><b>BOLD</b></font>" and you're done.hs issue is, why does it not render the bold text without the font tag in the first place, if I have already set the font of the TLF text in the PI?
View 2 Replies
Jul 15, 2009
I'm trying to get the letters in a word (each letter is an individual text object) to cycle through three different colors when clicked. Right now, all they do is change from their original color, blue, to black when clicked. No further "cycling" occurs. I'm appending the code. The part of interest is (probably?) in what is presently (and inaccurately) the "traceTextEvent()" function/method. It starts around line 90 of the code.
[Code]....
View 0 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
Jun 21, 2009
I'm having difficulty setting the text of a dynamic text field when using an if statementI have a gallery and thumbnails, which gives each image a picNum, ie 1, 2 etc;When I click on the thumbnails, it sets the picNum accordingly.What I want to do is set the caption depending upon my picNum, so I set a function to change the caption depending upon the picNum that is called when the thumbnail is clicked. Ie.
caption = function() {
if(picNum=1) {_root.caption.text = "image 1 caption"};
if(picNum=2) {_root.caption.text = "image 2 caption"};
[code].....
View 5 Replies
May 20, 2010
I have the following code:
[Code]...
All now works exept the height doesn't seem to work; that is, if the text goes on for pages all of it prints to screen. I would like to contain it to 350 px and then have the user use the scrollbar.
View 3 Replies
Nov 30, 2009
Is flash supporting any lossless audio formats?
View 1 Replies
Jun 10, 2009
I'm creating a movie player on a website of mine.. similar to YouTube. I would like people to be able to upload their movies on to my site. So my question(s) are regarding the FLV Format and if you can play other formats some how like Movs, Avis, Wmvs and Mpegs?
(1) Flash can only play FLV files? Can you get it to play Movs, Avis, Mpegs... Can I some how put in codecs for them?
(2) Can people easily get their movies to FLV format? Is this an issue for people?
I don't want to make it complicated for them to put things on my site. I would like them to be able to upload movies with ease and obviously not make things too complicated for them. I want to make it as user friendly as possible.
View 1 Replies