JAVASCRIPT running flash button
Hi! I think im almost there. Please help me out. I need to complete a script to trigger a click event using keyboard shortcuts:
*myListener is the name of my button
Code:
<script>
function searchKeyPress(e)
{
if (e.keyCode == 113)
{
document.getElementById('myListener').click();
}
}
</script>
or
Code:
<script language=javascript type="text/javascript" >
function ClickMe() {document.getElementById("myListener").click();}
</script>
How would javascript determine that this Id name, myListener, is inside a flash file?
GetURL converting to External Internal
Hi! Ive this from gparis, but unfortunately, the programmer said, the code is not working/running
I have this, originally:
Code:
getURL("javascript:command('clue',1)","_self");
gparis taught me this:
Code:
ExternalInterface.call("clue(1)");
So should I change it to:
ExternalInterface.call("command(clue, 1)");
and how do I convert this: getURL("javascript:loadHistory(+1)","_self");
Help me please... thanks!