Questions tagged [dynamic-text]

93 questions
2
votes
1 answer

One focus event listener for all input text field in ActionScript?

i finished it with the help of Andreas. i also add some more code to get the default text value of targeted text field. that helps me to set the text of targeted field back to default when i focus out. thanks "Andreas". import…
albhee
  • 23
  • 6
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
0 answers

Android Lottie Animated Dynamic Text Sticker on Image and Save to Gallery

Is it possible to add a Lottie Animation as a Dynamic Text Sticker on top of an Image in Android and save that file to the Gallery as a video or gif? The best way would probably be to use FFMpeg, but I don't know how to add the Animated Lottie…
Aleksakb24
  • 51
  • 3
1
vote
1 answer

Link to swf from a Dynamic Text AS2 Flash

I want to make link from a dynamic text(in flash project) to an external swf i created(a gallery that is controlled by xml file). This is the code of first frame of my fla project: url="edit"; loadVariablesNum(url +…
fat_mike
  • 877
  • 12
  • 27
1
vote
1 answer

Access Textbox control source outside current report

I am creating a Report in MS Access 2016. I want textboxes showing a summary of data from other tables - without actually showing rows of those tables (no subreports if possible). For example, I have tried to create a textbox with formula …
Spencer Barnes
  • 2,809
  • 1
  • 7
  • 26
1
vote
1 answer

How to rotate dynamic text from input in Canvas and JS?

I'm working on a box styling project with Canvas and Javascript, and I can't rotate the text the way I want (written from bottom to the top). (source: hostpic.xyz) I followed a tutorial…
ParkerIndustries
  • 171
  • 2
  • 15
1
vote
1 answer

How to save multiple dynamic textboxes value into SQL Server database

I want to add some panel dynamically into a single panel on a button click. And each dynamic panel consist of multiple text box in horizontally. And then I want to save those text box value into the database. I have completed to add dynamic panel…
Tahera
  • 13
  • 2
1
vote
1 answer

How do I test change text size in simulator?

Apps that support Dynamic Type will adjust to preferred reading size. The path to that setting on an actual device is: Settings > Display and Brightness > Text Size and there is a slider to change the size of text throughout the operating…
Takasur
  • 452
  • 7
  • 19
1
vote
2 answers

How do I support large tab bar previews in iOS 11?

In some of Apple's apps like Photos in iOS 11 if you hold down on a tab bar icon while your phone is in landscape and you have the larger accessibility size Dynamic Text turned on a large preview of the tab you are holding appearing. How do I…
Steve Moser
  • 7,647
  • 5
  • 55
  • 94
1
vote
3 answers

Dynamic text not accepting numbers

I wrote a flash game a while back (CS3) and it used to work but when trying to compile the same FLA file in CS5 does not work. I've got a dynamic text field called tScore tScore.text = Score; Used to apply the current integer value of the user's…
Alex C
  • 16,624
  • 18
  • 66
  • 98
1
vote
1 answer

Change font-family for texture text in three.js

I use plugin «threex.dynamictexture.js» in my app and have some trouble with loading my font (I have trouble even using existing helvetiker_bold.typeface.json ). I use the following pattern: function loadFont() { var loader = new…
Dima
  • 85
  • 6
1
vote
1 answer

Dynamically populate Text Fields in Flash (AS3)

I am trying to figure out how to dynamically populate textfields in Flash. The text in the fields will either say ON or OFF based on the value of bstatus. var bstatus will either have a value of 0 or 1 I have the following textfields listed…
jc70
  • 255
  • 2
  • 13
  • 32
1
vote
1 answer

Adding dynamic text to image

I currently have an image which gets displayed to the user, I'm trying to add dynamic text to this image based on two parameters passed in. The issue I have is when I step through the code it all seems to be working correctly, however when I see the…
Code Ratchet
  • 5,758
  • 18
  • 77
  • 141
1
vote
1 answer

layout_below TextView with dynamic text

I have a RelativeLayout containing two TextViews, the second should be below the first one. The first TextView's text is updated in onCreate() with text conatining newlines which makes it taller, but the second TextView doesn't re-position after…
c0dehunter
  • 6,412
  • 16
  • 77
  • 139
1
vote
1 answer

Autocomplete feature for dynamic textbox

I have a list of dynamically created textboxes. In the first text box I will be giving the product name. Then the other textboxes should get auto populated with the associated value. When giving the product name when we start typing then it should…