well … i create one button that will call one [color=royalblue]Javascript in HTML[/color] file.
the button has the code:
on(release) {
getURL(“javascript:openLocal();”);
}
i try too:
on(release) {
getURL(“openLocal()”);
}
and
this.onRelease = function() {
getURL(“javascript:openLocal();”);
}
and all not work…
in HTML FILE has the code js:
<script>
function openLocal() {
local = window.open(“localizacao.html”,“Local”,“width=630, height=390”);
}
</script>
anyone know how call one js from flash !
scuza the newbie question… and thanks in advance.