Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
ED_R #1
creating textField on the fly
How can I create dinamics textField?
//that code don't works
_root.createEmptyMovieClip("screen", _root.depth);
screen.titleTBox = new TextField();
screen.titleTBox.text = "hey";
trace(screen.titleTBox.text)
ED_R Guest
-
Textfield
hi friends i created one form in that i want when the form is loaded, cursor is stick in to the top position of the field. please help me. ... -
textFormat and textField
Hi ;) Is there any possibility to preserve textFormat applied to the part of TextField after changing TextField's content For example... -
Textfield.html = true vs TextField.setTextFormat
H I need to use html textfield to control when the text must change the line (br tag). The problem is that I can't use setTextFormat if I use html... -
use a var as a textfield name
hi i have created a textfield called "text0". i would like to put text that is stored in a var into it: allText="bla bla";... -
Textfield Question
Does anyone know why the " - quote presents a problem when updating to a Access DB. I know the single quote ' does. Shimon -
CesareRocchi #2
Re: creating textField on the fly
From the documentation:
MovieClip.createTextField
Availability
Flash Player 6.
Usage
myMovieClip.createTextField (instanceName,depth,x,y,width,height)
Parameters
instanceName A string that identifies the instance name of the new text field.
depth A positive integer that specifies the depth of the new text field.
x An integer that specifies the x coordinate of the new text field.
y An integer that specifies the y coordinate of the new text field.
width A positive integer that specifies the width of the new text field.
height A positive integer that specifies the height of the new text field.
...
HTH,
-c.
CesareRocchi Guest



Reply With Quote

