In AS3, can I make text of input text field of more than 2 are same? - actionscript-3

It perfectly works when instance name and var name are same in Flash 8, but I don't know how I can do it in Animate CC 2018... I'm okay if you just give me a fla file.
Thank you for understanding my poor English.
enter image description here

Related

flash as3 Getting a string var value and putting it in a input-text box

I know for a start this isn't much, but I'm very lost and frustrated lol. Below is some code on a mc. as3 is on frame 2 layer a, scrolll(input-text) is on same frame 2 layer b. I tried to simply everything until I could get something working, but no luck. Does this look ok below; please ask for more information if needed.
Thanks
Terry
//input-text with instance name scrolll within mc... bible.scrolll, works when I set it to static
//text and put some text
this.scrolll.text = "help";
So.. you have a MovieClip called bible that is on the timeline and a child of its is an input-text field?
Well from within the timeline this.bible.scrolll.text="help"; should work just fine, and I see that your forgot the .bible in your code so maybe this is the issue.
Please comment if this does not work and "accept" the answer if it does.

why Break Apart Remove my test in flash cs6?

I want to convert text to shape in flash cs6 AS3
when I click Break Apart then my text is removing.
Please advice me why?
I think you better enter your text in another software, like word or paint
Capture the screen (using PrtScr or PrintScreen or an utility)
Paste in your stage
Convert to symbol
Enter the symbol and then Break Apart!!
It will then be an Image and you can change it as you like!!
Good Luck!

No Dynamic Text will correctly show, why?

I am learning rudementary flash, and have a book in hand; but am beginning to wonder if there is something wrong with the program or my computer. The following should be simple but only gives me nothing in the dynamic text box or just pieces of letters.
Frame 1
var amount:Number = 1;
Frame 2
howmuch.text = String (amount);
and....nothing ever shows....like ever. I've used this in a simple loop according to the actionscript 3.0 lesson including an amount++ function to make a simple counter.
I'm trying to get each concept and build on it, but have been here at lesson one for days.
using Adobe Flash CC on an iMac I bought here in 2013 running Mountain Lion.
Help please.
Because your text field is a dynamic one you may need to embed the font. Also check if the text color is not the same as the color of the background.

How to change dynamic text in flash as3?

I'm beginner in flash. I created a text from the text_tool in flash. I set the instance name 'mytext' and text type to dynamic. Now I want to change the text on run time. For example: current text is 'hello world' now when I run the flash file I want to change the text to 'any random text'. So I used following code for this. mytext.text = 'any random text'; but on the run time I could see any text. Please help me how to change its text?
Thank you
There could be multiple reasons for that, Please check for the following:
If there are multiple frames on your timeline and your TextField is extended all over those frames then make sure you have provided the instance name to your TextField on all the KeyFrames on the timeline.
If you are using some fancy Fonts, try embedding the fonts, at times non-embedded Fonts create this problem.
for addition, you can use
your textfield.appendText();
good luck for your work :)

Actionscript 3 loading Chinese symbols into TextField using Actionscript

I am having trouble loading Chinese Symbols into a TextField from another TextField.
I have a dynamic drop down box that loads its text from a string within the actionscript code, however the actionscript code cannot contain chinese symbols.
I thought the easiest way around this problem would be to load the text from another TextField, however it seems to appear blank, failing to load the text.
example
base1_mc.header1.textbox_txt.text=q1.text;
base1_mc.header1.textbox_txt.text = dynamic drop down textbox.
q1.text = chinese symbols inside TextField on the stage.
I thought this would have been a simple problem, however it doesnt appear to be so.
If I try to load it using this
base1_mc.header1.textbox_txt.text=q1;
it loads some text declaring a new and empty function.
Can anyone help me out here?
Try to turn off embedFonts for TextField. I.E.:
textbox_txt.embedFonts = false.