Here's a workaround, use Flash to call a custom javaScript function:
Javascript:
Flash:
The javascript is currently only throwing up alerts in response to the user's choice but you could add some Javascript/Flash Methods in there directing the movie to a particular frame depending on the choice made etc...
Javascript:
Code:
<script>
function doConfirm(message){
if(confirm(message)){
alert('OK!');
}
else {
alert('Cancelled!')
}
}
</script>
Flash:
Code:
btn.onRelease = function() {
getURL("javascript:doConfirm('Confirm this?')");
};
The javascript is currently only throwing up alerts in response to the user's choice but you could add some Javascript/Flash Methods in there directing the movie to a particular frame depending on the choice made etc...