0
votes
1answer
50 views

Disable object, during busy cursor showing

I've a complex text field which I can embed types of font within it. When I try to choose a specific font through the Dropdownlist, I'll show the busy cursor till font embeds inside the text field ...
0
votes
2answers
152 views

How to add movieclip inside textfield

I would like to add a movieclip to a textfield. The objective is to be able to scroll the movie clip, since the uiscrollbar only works for textfield, i think my solution to scrolling the movie clip is ...
0
votes
1answer
158 views

AS3: render plain text in a textField

The current behavior of textField is to render all text as if it were HTML. Is there a way to tell the system that this is plain text, even if it looks like html? In AS2 there was a .html property ...
0
votes
2answers
268 views

How do you change text in a textbox AS3?

I have a TextField called "textbox". I have this code: textbox.text = 'hello'; the code is right but its not changing the text when played. The previous text clears but the new text (hello) ...
0
votes
2answers
1k views

How to use device-fonts to show Multilingual text in the same Flash app

UPDATE: I've completely changed the question because in reality, I'm having a really hard time properly using device-fonts for multiple languages displayed in the same app (at the same time). I must ...
-2
votes
3answers
134 views

Flex or Flash Can detect word on pdf file when mouse over?

Is posible? Flex app detect word when mouse over on message in pdf file. Now have some project translate language with tooltip or pop-up when mouse over on it. I found some code can detect word ...
0
votes
1answer
547 views

AS3 Textfield Can't Select Color with ColorPicker on only Selected Text

I'm creating a text editor and I want users to be able to select only part of a textfield and change the color. The problem I'm running into is the ColorPicker gains focus (I'm guessing) and the ...
0
votes
1answer
146 views

Is there a function to adjust font size to make text field width smaller than a given width in actionscript?

Is there a function or property or better way to do what the following code do? var width:int = 20 while (textField.defaultTextFormat.size > 1 && textField.width > width) { ...
0
votes
1answer
419 views

Change CSS on an TextField that already contains CSS applied?

How do I change the CSS rules for a TextField that already has style associated with it ? This TextField is inside a RichTextEditor. Here's the code I'm trying: _rSts: StyleSheet = new StyleSheet(); ...
0
votes
1answer
235 views

How to remove default CSS from TextField in flex?

I'm in serious fight with it. I need to set the defaultTextFormat of a TextField component to my own values. I can't do that since the component does not use the defaultTextFormat if it has it is ...
0
votes
1answer
59 views

Is there a way to have a global variable in a stackview?

I have a stackview of textfields and when I type into the text field I want it to update on each stackview "page", kind of like a global variable, maybe even using a global variable. How could I go by ...
2
votes
2answers
1k views

Restrict TextField to act like a numeric stepper

I am making a numeric stepper from scratch, so I want my text field to only accept numbers in this format: xx.x, x.x, x, or xx where x is a number. For example: Acceptable numbers: 1 22 15.5 3.5 None ...
0
votes
1answer
246 views

Flex/Flash: Don't show 'bar' cursor when dragging over a TextField/TextArea?

As the title suggests, how can I prevent the "bar" cursor from appearing when I click-and-drag over a TextField? For example, consider this interaction: I'd like to prevent the cursor changing to ...
0
votes
5answers
879 views

TextField instance inside a button created in a separate layer in Flash is null in Flex

I've created an button object in flash. The button contains 2 layers. One is the background image and on top of it is a textField. The textfield is dynamic. I use the button inside a movieclip and I ...
1
vote
1answer
413 views

Change value from flex in a TextField exported from Flash through a SWC

I created a MovieClip symbol in flash containing a dynamic TextField and a background. I exported it in a SWC(using this method) and I'm trying to use it from flex. When I try to change the default ...
1
vote
2answers
911 views

Accessing children elements in a SWC

Does anyone know if its possible to access children elements in a SWC? I have created some MC's and inside of some of these MC's I have some dynamic textFields. I export the content to a SWC and ...
0
votes
3answers
585 views

Speedup setTextFormat()

i've a text with a very long list of words to highlight and calling setTextFormat() one for each word takes ages. There's some way to speedup this operation ? i've tried with a TextField not ...
1
vote
1answer
2k views

Flex: How to embed fonts with CSS

I have two questions: I am trying to embed fonts via this page in the livedocs. Can anyone tell me what I need to do to use an external style sheet? Should it be a style sheet or an mxml file? I ...
1
vote
2answers
3k views

Actionscript 3 TextField scrollH property gets set to 0 on click

I am populating a textfield programmatically and scrolling to the maxScrollH as the new text is added so the user can see the progression of text. This works fine, until I click the TextField, which ...
4
votes
6answers
3k views

How do you prevent arrow up/down default behaviour in a TextField?

I am making a input field for keywords, and while the users writing I'm displaying suggestions for keyword on a list underneath the caret position. The input field is single line, so I am using the ...
4
votes
6answers
7k views

How do you programmatically move the caret of a Flex TextArea to the end?

I'm trying to move the caret in a Flex TextArea to the end after appending some text from my code. I've looked through the reference documentation for TextArea and its underlying TextField but it ...