Flex :: Unable To Positioning Text?
Jun 15, 2009
I want to display three different pieces of text in a line underneath a VBox so I've created a HBox and place the Text components in here:
<mx:HBox width="100%">
<mx:Text text="left" id="textLeft"/>
<mx:Text text="center" id="textCenter"/>
[code]....
View 2 Replies
Similar Posts:
Nov 16, 2011
I'm having trouble in rotating the header text in my datagrid. I don't know understand the reason why its failing.
Datagrid column AS3 code:
dgc=new DataGridColumn();
dgc.dataField=columnName.gene;
dgc.labelFunction=gridLabelFunction
[Code].....
View 1 Replies
Aug 30, 2011
I am using a TextField in Flash CS2, because I need to know the width of the actual text for positioning purposes. However from some odd reason it doesn't always work when the browser is Google Chrome.
View 2 Replies
Jun 7, 2010
ok what i'm trying to do is make a transition so letters get typed up and then a tween will be applied and will be tweened down to about middle of screen. here is what i have so far:
ActionScript Code:
var q:Number = 1; // controls amount of letters currently visible
var typeInterval;[code]....
the problem is i have the typing but i've had alot of trouble with tweening side of things. i figured i might be able to create a new textfield for every letter assign the letter to it then tween it. but getting the positioning perfect would be a pian and i have no idea how to continure form this point on.
View 0 Replies
Apr 9, 2010
I'm trying to work out a specific problem I'm having with positioning in Flex using the PopUpManager. Basically I'm wanting to create a popup which will scroll with the parent container - this is necessary because the parent container is large and if the user's browser window isn't large enough (this will be the case the majority of the time) - they will have to use the scrollbar of the container to scroll down. The problem is that the popup is positioned relative to another component, and it needs to stay by that component.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
[code]......
View 3 Replies
Jun 24, 2010
I am loading an XML file into several textboxes. Each group of textboxes is contained in a movieclip. There is a textbox in each group that varies in height and I want to put each movieclip underneath each other. So I need to get the height of the previous mc in my for loop so I can set the y position of the next mc. I am not quite sure how this is done, but here is my as3:
[code]...
View 1 Replies
Aug 31, 2010
I need to position an object in the bottom half of a container (working on flex 4)- abt 25% above the bottom...and cant use x,y coordinates given need for resizing. I have been able to position the layout containers and they work well
Also need fonts to resize as the buttons get smaller
View 1 Replies
Feb 14, 2011
With flex 4 you can't seem to just do layout="absolute" any more. Is there a way to get the application layout set as absolute in flex 4?
View 2 Replies
Aug 18, 2009
how this can be achieved? It needs to work on all resolutions .. is there any parent/stage object available to find out the resolution of the system?
View 3 Replies
Sep 5, 2011
I have a chart with multiple series (Area and Plot). The Area series has 'xField' as 'timeStamp' and 'yField' as 'price'. The Plot Series has 'xField' as 'timeStamp' and no 'yField'.... ! Can I position the plot series though I do not have a corresponding 'yField' value ? Can I assign a default value to the 'yField' (say '10' for all...?)
[Code]...
View 1 Replies
Sep 9, 2010
I have a Dynamic Text box in my Library. I drag it to my main stage and give it a name..it is now a movieclip. The name is 'mcAdmin' I added an event listener for MOUSE_OVER I want the text to change color, but for now I'm just trying to change the text; however, it's not displaying the change in text I want. I do a trace, and the change is in there on the output window, but it is not displayed as such.How can I :1) use AS3 to change the font color of the text2) use AS3 to change the text and have it display?
function onMouseOver_txtAdmin(e:MouseEvent):void{ Mouse.cursor="button";
//Current mcAdmin text is 'Administration'
//I want to change the color of Administartion on Mouse_Over
[code].....
View 2 Replies
Jan 4, 2010
I am working on a flex app that uses XML templates to dynamically create DisplayObjects. These templates define different layouts that can be used for each page of content in the app (ie , 2 columns, 3 columns etc etc). The administrator can select from one of these and populate each area with their content.
The templates add one of 3 types of DisplayObject - HBox, VBox or a third component - LibraryContentContainer (an mxml component that is defined as part of the app) - which is effectively a canvas element with a TextArea inside. The problem that I am getting is that I need each of these areas to automatically resize to fit the length of the content but don't seem to be able to find an effective way to do so.
In the LibraryContentContainer, when the value of the TextArea is set, I am calling .validateNow() on the LibraryContentContainer. I then set the height property on both the TextArea and LibraryContentContainer to match the textHeight property of the TextArea. In the following example, this is the LibraryContentContainer, viewer is the TextArea and the value property of the TextArea is bound to this.__Value. v is the variable containing the content for the textarea
[Code]...
View 1 Replies
Jul 4, 2010
I have a flex component like this:
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
...
width="100%"
[code].....
View 4 Replies
Feb 28, 2012
I have created a style in which i am defining a font family.When i apply this style to label it reflects the font were as there is no change when it is applied to a spark button.I Tried various way to Apply font style but it doesn't work.Other properties work fine except font family. Even i tried creating skin class and set the font family style of label in it. While previewing the skin i can see the changes but when i apply it to buttonApproach 1
@font-face{
src:url("HARNGTON.TTF");
fontFamily: MyF;
[code].......
View 2 Replies
Dec 8, 2009
I am having troubles migrating from as2 to as3.
The code:
var v1:Number;v1 = parseFloat(valor1.text);total.text= v1;
v1 declared as number. v1 only receives the "float value" of the input text field valor1. The dynamic text field (total) shows the v1 value.My problem is that this works on as2, on as3 i get error :1067 implicit coercion of a value type number etc.
View 3 Replies
Jan 1, 2010
I would like to discus that i am facing some problem to displaying text which is coming from xml. I have made an xml photo gallery.There are some albums.The thing is that i want to display image caption at the right bottom of the big image. i used script for that but don't know the reaseon why it is not showing.i have used trace to display whether the text is comming or not.but there is no problem it is showing the right caption for the images.and i made the dynamic text selectable and after run the novie if i select the text then only it is visible [URL]...
View 9 Replies
Feb 27, 2009
var myTextLoader:URLLoader = new URLLoader();
myTextLoader.addEventListener(Event.COMPLETE,onLoa ded);
function onLoaded(e:Event):void {
[code].....
View 7 Replies
Nov 21, 2010
create a picture gallery with XML. There is a loader progress which simply displays a percentage when you click on any image. I have been trying to fomrat this text but with little luck. I am able to apply colors to the text but unable to change the font, size, weight etc.
Here is the text with a color applied
Actionscript Code:
fullPreloader.onLoadStart = function(target) {target.createTextField("my_txt",fullImage_mc.getNextHighestDepth,230,300,300,300);target.my_txt.textColor = 0xFFF;};
[Code].....
View 4 Replies
Nov 11, 2009
I m stucked on this problem. I am not able to highlight text at second click. it's not reassign when i m trying to clear it next time. to check exiting problem please enter "hot" in text box and click on button , you ll see highlighted text. but next time whent you try to click on that it ll not show any result.
[Code]...
View 6 Replies
Dec 9, 2010
thread with XML in the title so I came on in...I will start with I am new to flash so a novice is an over estimation. I have a flash template for my photography gallery. It is a nice template and "almost" everything works smoothly. Notice i said almost everything, the gallery images loads from an XML file.hats nice for updating the gallery, There is a small slide out window that holds text in the gallery. I am using it for exif data and I am fine with just placing the exif data in manually when I update the gallery. Now for the PROBLEM.... There is a CDATA tag in the XML file where the text goes for the info. When i alter the text in that section it makes all the text in that images info field dissappear at runtime. Any ideas what will cause this to happen. I have tried everything to remedy this it seems. I hav tried the support where I purchased the template
View 1 Replies
Jun 22, 2010
I am loading text from .xml in the text field which is linkage properties set from library Identifier: "box" I wont to text file wordWrap=true and autoSize "left" but is is not working
Details:-
text filed instance name="name_txt";
creating duplicate moview part is given bellow.
for (var i = root.firstChild; i != null; i = i.nextSibling)
{
[Code].....
View 1 Replies
Jan 12, 2005
I came across the following lines of code in the tutorials section:
Code:
loadText = new loadVars();
loadText.load("kirupa.txt");
[code].....
View 3 Replies
Dec 29, 2006
I'm working on a project that dynamically loads news articles.There is basically a title text box and a news box, both are the same width.I would like to know if there is a way that I can get the dynamic title to scale up/down in font size to fit the width (and also shift the news text down to be about 3px under the title)
View 1 Replies
Jul 20, 2007
I know I need to embed the font and declare the font in a setFormat string.
Code:
this.createEmptyMovieClip("cat",this.getNextHighestDepth());
cat.createTextField("txt",this.getNextHighestDepth(),0,0,100,50);
var my_fmt:TextFormat = new TextFormat();
my_fmt.font = "Times";
cat.txt.embedFonts = true;
cat.txt.text = "cat";
cat.txt.setTextFormat(my_fmt);
cat._alpha = 50;
View 2 Replies
Jun 8, 2010
However the title of this thread says "CS5", I think this problem is AS3 related.. I was making a site in CS5, and now I switched to CS5. The only problem are the input textfields. When I run the .swf, I cannot input any numeric values to the text field anymore, except for the "1".. How can this be?! When I open the site in CS3, I still CAN input other numeric values.
how to set a textfield to only accept numeric values?
View 3 Replies
Aug 31, 2010
I am having the text, which i am able to enter text into it when I go to full screen Not able to enter
View 1 Replies
Sep 24, 2005
is there a way to space dynamic text?through actionscript?the letters of my dynamic text are to dense and i would like to change this.
View 14 Replies
Apr 7, 2003
for my shoutbox i load text into my film. i did it like the tut told me, but so the dyn-text-box cant display the text as html, but that is necessary
View 3 Replies
Feb 5, 2009
So i have a really nice flash gallery that i downloaded from a site but i am trying to personlize it. It uses a dynamic text (for the preloaders and the titles) which is post by this procedure :
fullPreloader.onLoadStart = function(target) {
target.createTextField("my_txt",fullImage_mc.getNe xtHighestDepth(),50,50,200,20);
target.my_txt.selectable = false;
};
So what i did was basically to create a new style (my_fmt) and apply it to dynamic style applied by default (my_txt) :
fullPreloader.onLoadStart = function(target) {
target.createTextField("my_txt",fullImage_mc.getNe xtHighestDepth(),0,0,200,20);
target.my_txt.selectable = false;
[Code]....
Anway nothing changes. The text is always the same (Times New Roman which is by default) I also tried to change de height and width definitions but no difference. It only works when i change the x and y position of the text.
View 2 Replies
Dec 22, 2003
I've been unable to send data to a text file. I am making a news poster for a website, but free or any XML, php MySQL or anything else; so is it possible to send data to a .txt file using no other files? is it getLocals or something?
View 6 Replies