Hi!
For a Flash navigation bar I need to provide a button ID# instead of linking my button directly to a URL. Other scripting on the page is referring to the button ID to make my page hide/show certain content on button release.
Earlier I was able to have Java script help open a popup window by using this code:
In Flash:
on (release) {
getURL ("Javascript:popup3():");
{
In HTML
<script language="JavaScript">
function popup3() {
}
</script>
Question:
Can I use this kind of code to make flash trigger a java script that provids an ID for a Button on release?
If so what would it look like?
Thank you on beforehand.
ggaarde