Kronos Posted January 2, 2013 Share Posted January 2, 2013 Hola amigos. Como puedo crear un texto que valla cambiando abajo de la pantalla Link to comment
Castillo Posted January 2, 2013 Share Posted January 2, 2013 Una tabla y funciones de DX o GUI. guiCreateLabel dxDrawText Link to comment
Xperia Posted January 2, 2013 Share Posted January 2, 2013 function ventana() dxDrawRectangle() dxDrawText(texto) end addEventHandler("onClientRender",getRootElement(),ventana) texto = "Texto 1" setTimer( (function() if texto == "Texto 1" then texto = "Texto 2" if texto == "Texto 2" then texto = "Texto 3" if texto == "Texto 3" then texto = "Texto 1" end end ), 10000,0) Link to comment
Recommended Posts