Flash Problem....Help!

Snakebite7

New Member
Ok I have Flash MX Professional 2004 and I made a banner on this website www.courageofdavid.blogspot.com, if you click one of the buttons, the button doesnt take you to the URL I want it....heres my action script:
Code:
on(press) {
			
			mysound = new Sound();
mysound.attachSound("Ding");
mysound.start()
			}
on (release) {
	getURL("www.cddiscussion.blogspot.com", "open in new window");
}

I also noticed by looking at the URL at the top after clicking, that the button seemed to have put the URL I wanted AFTER the URL that you clicked it in....almost like it thinks this URL (the one I want to go to) is within the same site as the one you click the button in. Because I rigged it where theres links to other blogs that have differnt information on them....that way itd be like going to a page within that site. If you could help me make it so when you click the button, it will take you to the site above....it would be soooo appreciated!
 
Back
Top