Forum Moderators: open
Is there any way of having a button in flash do the same?
Should I just call the same javascript function from Flash using getURL?
Any help would be great.
yup, you call javascript from flash like that:
getURL("javascript:someFunction();");
calling JS functions is of course simplier than writing up it all up in the string like this:
getURL("javascript:alert('test'); var s='string'; return false;");
hope that helps, Martin