08/02/2006, 16:46
|
| Crazy Coder | | Fecha de Ingreso: enero-2002 Ubicación: En la Oficina
Mensajes: 2.880
Antigüedad: 22 años, 10 meses Puntos: 193 | |
Con asfunction
Código:
function doSome (arg : String)
{
trace ("Funcion desde HTML con el parametro " + arg);
}
this.createTextField ("field", 1, 0, 0, 0, 0);
field.autoSize = true;
field.html = true;
field.htmlText = "<a href='asfunction:doSome,algo'>Click here</a>";
|