PDA

View Full Version : Easy ActionScript Question...


Confused!
01-26-2005, 04:44 AM
Does anyone know how I can use a button made in Flash to open another HTML page in the same window? I'm using a Flash menu. I think I know but would like to get into good practice before I go diving in.

Help would be great thanks. ;)

_Aerospace_Eng_
01-26-2005, 10:48 AM
specify the url and the target
on(release) {
getURL("youlinkhere.html", "_self");
}