Trouble combining flash's Externalinterface.callback and jQuery's mouseover event
Hey,
I'm really stuck with this one guys. It would really help me out if you could solve this problem.
So here's the deal: I have two swf using AS 2.0 in a webpage. One of them is hidden at the start, but when I rollover on the other one, the hidden one is supposed to show up and the visible one is supposed to hide.
$('#ad_peel_small').mouseover(function(){
$(this).hide();
$('#ad_peel_huge').show();
document['ad_peel_huge_obj'].peelOff();
});
However, everytime I rollover it, it says peelOff() is not a function. Although it is a function, since I'm able to control it with any other events such as "click".
It's really wierd, maybe it's a question of timing, if so is there any ways I could use the callback of a mouseover to call the peelOff() function?