Dynamic and Input Fields

Apart from static text fields, you can make use of input and dynamic ones.

Input field are used to capturing user input in form of a string. Data can be manipulated and used further.

Dynamic field can be used in two ways:

    A) As a simple output field

    B) As a HTML output field
        To read about which HTML tags you can use, read 'About
        supported HTML tags' document from the Flash help.

How it works

To access data of a input field:
str = inp.text;

To set value of a non-HTML dynamic field:
outp.text = str;

To set value of a HTML-formatted dynamic field:
outp3.phpText = str;

Download the source code >