well the "flickering" graphic shouldn't be used as a clickable object...as it isn't always there!
The sollution to that is to make an rectrangle covering the flickering graphic(a new layer). and use that as the clickable part...
To do so, you will have to select the rectangle(from now on button), and press F8. By doing so you made the rectangle into a element. In the pop-up select "button" or "movie clip" and press ok(or accept or something alike

).
Than reselect that rectangle, and change the instance name to "btn". This way you can use actionscript to do things with the rectangle. You also need to change the "alpha" level to 100...so that its completely see-through.
Now after al this, select the layer you want to write your "global AS" in (I did put everything in the same layer...as there was only need for one). If you take the same layer as I did just continue below the AS that is already there.
The actionscript:
Code:
btn.onPress = function() {
getURL("www.hvc.nl", "_blank");
};
That opens a new browser window in which "www.hvc.nl" is opened. The "btn" parts specifies what should have the effect. The "onPress" is the effect (mouseclick). And the "getURL" is used to go to the URL.
I hope this helps...let me know if it isn't clear..than I will try to explain better
BTW: I haven't got any new messages....no PM's for me