Dear Kirupa,
i’m a new user and i found a part of solution of my problem in this your article:
http://www.kirupa.com/developer/actionscript/changing_font.htm
Now i need another little help. I need to change the text in the text field from an input text and not from the string associated to the button you have done. It is possible?
You associated this to the buttons:
on (release, rollOver) {
font2 = “<font face=“Times New Roman” >Times New Roman</font>”;
}
And i would like to do something like this :
on (release, rollOver) {
font2 = “<font face=“Arial” >”+inputfont2.text+"</font>";
}
Is it possible? what’s wrong? cause i have tried to do this but no way…