hola!
Alguien puede decirme como se puede hacer para mostrar tablas en flash.
algo como las tablas de html.
muchas gracias
| ||||
Tablas en flash hola! Alguien puede decirme como se puede hacer para mostrar tablas en flash. algo como las tablas de html. muchas gracias
__________________ W:-DL ...estas cosas pasan una sola vez en la vida... capaz dos. Diseño Web - Desarrollo Web |
| ||||
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 |
| ||||
Flash MX2004 dispone del componente DataGrid que actua como las tablas html pero en una forma muuuuy potente. Si deseas un excelente tutorial dale click a http://www.cristalab.com/tutoriales/..._flash_mx_2004 Eso si, tendrás que romperte la cabeza un rato estudiando ActionScript2.0, pero dale, es una herramienta excelente - ahi hay otros tutoriales si deseas =) Saludos!
__________________ EdiWorks :adios: =P Última edición por EdiWorks; 11/04/2005 a las 21:23 |
| ||||
Muchas Gracias Edi !! estuve mirando el componente ese, pero no tenia ninguna ayuda ni se me ocurria nada.. .gracias por el dato.. lo voy a mirar.. bye!
__________________ W:-DL ...estas cosas pasan una sola vez en la vida... capaz dos. Diseño Web - Desarrollo Web |