Questions tagged [textformat]
18 questions
3
votes
1 answer
ActionScript 3.0 function for modify TextField
I started one week ago to study ActionScript 3.0. I would like to do a simple game. It will start with a window displaying a welcome message( "press the button to start"), and a arrow that start from the text and point to the button. I want to…

SpaghettiFunk
- 159
- 1
- 2
- 13
1
vote
1 answer
How can I keep track of a section of text in a Dynamic TextField in AS3
I want to be able to apply non-style attributes to sections of text in a TextField. For example characters 30-45 will be set to animate in a certain direction.
As this field is editable characters 30-45 may no longer be at 30-45 if the text is…

pixelscript
- 392
- 1
- 8
1
vote
1 answer
Is there a character encoding or a markup language with a lettercase modifier?
Not sure if this fits here. If there is something like "Computer history and future" please direct me there.
Question
Since the rise of computers, were there any character encodings (or markup languages on top of that), that differentiate between…

Socowi
- 25,550
- 3
- 32
- 54
1
vote
1 answer
Flutter - How to Store Long Value in Correct Format on Firebase Firestore?
I want to store my value in cloud firestore something like this:
// ¤ \\
\\ ¤ //
\\//
(___)
(___)
(___)
\_____/\__/ …

Radiant Developers
- 273
- 3
- 5
- 19
1
vote
1 answer
onLeave with a TextFormField - Flutter/Dart
I am using an onChange method in a TextFormField widget... but is there a onLeave function on another parent widget.... I looked into GestureDetector but they also don't have it
TextFormField(
controller: _emailAddress_controller,
…

Dohan Smit
- 134
- 4
- 11
1
vote
1 answer
as3 Text Field formatting issue
I have a problem with formatting the text field. I have buttons + and - to size of text. TextField class has property defaultTextField for new text formatting. And when I change defaultTextFormat size property - whole text's size changes. I have…

Igor Nehoroshev
- 308
- 1
- 3
- 13
0
votes
2 answers
Actionscript - using regular expression and TextFormat to style text between HTML tags
I've been struggling with this problem for a while:
I have a string containing HTML and I'm using a regular expression to get the characters between the tags. I'm then attempting to apply a TextFormat to those characters.
The problem is that I'm…

MarkPlewis
- 2,310
- 1
- 15
- 13
0
votes
1 answer
Flash - setTextFormat crashes on TLFTextField
We have a library with a bunch of TextFields inside MovieClips. During runtime, we make an instance of one of these, run getTextFormat on it to get the formatting, then create a bunch of TextFields in code and run setTextFormat on them to give them…

Ashley Muller
- 67
- 11
0
votes
2 answers
WPF C# TextBlock. How to format textblock text programatically to format foreground color of certain words that are color names
Problem:
I have WPF TextBlock with dynamically changed text. This text contains words that are color names.
For example:
MyTextBlock.Text = "This is some dynamic text that contains red, green and yellow words inside it.";
Result should be rendered…

9majka
- 11
- 3
0
votes
1 answer
WebAssembly text format not working on negative
(module
(func $pow2
(param $v f64)
(result f64)
local.get $v
local.get $v
f64.mul
)
(func $_dist (export "_dist")
(param $x0 f64)
(param $y0 f64)
(param $x1 f64)
(param $y1 f64)
(result f64)
…

Saeed M Farahani
- 1
- 2
0
votes
1 answer
Solution to Excel Text Formatting in UserForm
I'm working with a UserForm and plan to perform calculations in my UserForm.
In order to present numbers in a 'correct way as text, I use the text format function.
I use the following syntax: FORMAT(xxxx, "#'###").
All well, however, when xxxx <…

mdebraaf
- 1
0
votes
1 answer
How can I set some data from a received response witch format is TEXT in postman
I want to set some data in the environment from a received response witch format is TEXT in postman. any idea of doing this. thanks a lot, for example, the highlighted phone number. tried to change response type to JSON but that makes things even…

Karen
- 1
0
votes
0 answers
Trouble with Array & TransitionManager
I need help with my Array function. I am trying to create a headline for a website, but it is only the first letter that is being shown:
This is my code:
import fl.transitions.*;
import fl.transitions.easing.*;
var…

J.Hage
- 13
- 5
0
votes
1 answer
Setting textformat to mulitple parts of a string
I'm having an issue with applying textformat to various parts of a string:
feedBackText = "This is bold, and this is some more text, and this is bold too. But this is not bold. This is bold!";
feedbackTextField.htmlText =…

Hans Magnus
- 61
- 9
0
votes
1 answer
as3 dynamically loaded font undefined fontname
I have a font I want to apply to a TextField, but before I could do that, it threw an undefined error. Here is my code:
var tFormat:TextFormat = new TextFormat();
trace(NumberFont);
which traces [class NumberFont] without problems, but I understand…

user2956947
- 239
- 1
- 2
- 12