PDA

View Full Version : Flash Question


Nikolai459
02-27-2006, 09:15 PM
Hey Guys,

I'm currently in the middle of making a flash program. I'm using images with hidden buttons to link each of them together. What I would like to do is have something set up so that if the user clicks anywhere on the screen that is not a button, it will go to a homepage. Is there anyway to do this without creating a button everywhere that i haven't yet?

Thanks in advance.

_Aerospace_Eng_
02-27-2006, 10:14 PM
You could probably put some action script in the first frame of the movie using onRelease = function()
{
getURL();
}

Thats probably not exactly the correct syntax but you get the idea.