Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/04/2005, 21:18
Avatar de elwolos
elwolos
 
Fecha de Ingreso: febrero-2004
Ubicación: Argentina
Mensajes: 251
Antigüedad: 20 años, 2 meses
Puntos: 0
pero no hay alguna manera de hacer algo?
estuve mirando un ejemplo que viene en el flash
que es este

To create a formatted table of data using tab stops:
Using the Text tool, create a dynamic text field that's approximately 300 pixels wide and 100 pixels high.
In the Property inspector, enter table_txt in the Instance Name text box, select Multiline from the Line Type menu, and select the Render Text as HTML option.
In the Timeline, select the first frame on Layer 1.
Open the Actions panel (Window > Development Panels > Actions) and enter the following code in the Actions panel:
var rowHeaders = "<b>Name\t</b><b>Age\t</b><b>Department";
var row_1 = "Tim\t31\tIMD";
var row_2 = "Edwin\t42\tQA";
table_txt.htmlText = "<textformat tabstops='[100, 200]'>";
table_txt.htmlText += rowHeaders;
table_txt.htmlText += row_1;
table_txt.htmlText += row_2 ;
table_txt.htmlText += "</textformat>";

Note the use of the tab character escape sequence (\t) to add tabs between each "column" in the table.

Select Control > Test Movie to test the movie.

pero no me funca.. no se... se me hace todo en una misma linea...
__________________
W:-DL
...estas cosas pasan una sola vez en la vida... capaz dos.
Diseño Web - Desarrollo Web