I have a rollover type flashing image in my page, and also a javascript bookmark code:
javascript: ... onclick=bookmark();...
when this is clicked and then I press cancel (on the bookmark page) the flashing image on the page stop flashing until I hover over it, and then it starts again, is this normal?
korkus2000
12:49 pm on Mar 24, 2003 (gmt 0)
Yes. You are giving focus away from the current window and Flash knows this. Since you are using onmouseover the next event stops that event which is onblur or onfocus(where ever it stops the mouseover action). Does that make sense?