Hi all

i am totally new to flash i downloaded a template. when i try to edit it and i found twitter and other social media images with some animation when i place courser on it. it had a action script like this

Code:
onClipEvent (load) {
	num = 1;
	num1 = 1;
}
Now i want to link that images to social media site.. for that i tryed this

Code:
onClipEvent (load) {
	num = 1;
	num1 = 1;
}
onClipEvent (mouseUp) {
getURL("http://twitter.com/", "_blank");
}
but unfortunately when ever i load on the page all the links are opening automatically. Please help me..
what should i do if i want to open links only on mouse click. i even tryed this code also but when i place that code animation of that image is not working.

Code:
on (release) { 
getURL("http://www.twitter.com", "_blank"); 
}
please help me how to link twitter with out changing image animation?