[jQuery] Using jQuery to resize div from rollover event in Flash
I am not sure what is the best avenue to pursue. An z-indexed SWF is
preventing clicks on HTML links in FF & Safari. The swf uses z-index and is
wmode=transparent. It is 300x274 & has a visible area of 300x100 on frame1
of an mc that on rollover goes to frame2 where the visible content is
300x274. The bottom 174 pixels overlay HTML links. In IE these links are
clickable. In Safari & FF the expandable transparent area of the SWF,
prevents clicks on the links, and there is no cursor. I am looking at
flash_resize.js but am unsure how to bend it to suit my situation. Also
wondering if there is another way to approach this with either jquery
Here is my AS
Code:
box_mc.onMouseDown = function():Void
{
getURL("javascript:pageTracker._trackPageview('/flash/click/');");
getURL("http://www.yahoo.com","_blank");
};
box_mc.onRollOver = function():Void
{
getURL("javascript:pageTracker._trackPageview('/flash/rollover/');");
box_mc.gotoAndPlay(2);
};
box_mc.onRollOut = function():Void
{
box_mc.gotoAndStop(1);
};
--
View this message in context: http://www.nabble.com/Using-jQuery-to-resize-div-from-rollover-event-in-Flash-tp15347735s27240p15347735.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.