marley,
En el el htm coloca el siguiente javascript
:
<script type="text/javascript">
function textoStatus(miTexto){
window.status=miTexto;
}
</script>
En Flash como acción de fotograma:
//boton 1
_root.boton1.onRelease = function(){
getURL("http://etmoreno.com.ar");
}
_root.boton1.onRollOver = function(){
getURL("javascript
:textoStatus('http://etmoreno.com.ar')");
}
_root.boton1.onRollOut = function(){
getURL("javascript
:textoStatus(' ')");
}
No te olvides de darle al botón nombre de instancia, en este caso boton1 (el _root lo puedes obviar o dirigir la ruta a donde tengas el botón)
Saludos ;)