Hi There,
I know how to do pop ups with onFocus so if a page has many links to external pages they will keep replacing each other, but is there a way to do this only in flash, or do I have to have code on the html page, too? Just wondering.

right now my link looks like:

on (rollOver) {
if (_root.link<>2) {
this.gotoAndPlay("s1");
}
}
on (releaseOutside, rollOut) {
if (_root.link<>2) {
this.gotoAndPlay("s2");
}
}
on (release) {
getURL("http://www.visitorangecounty.net/", "_top");
}


I was wondering if there is a way to say _onFocus or something to that effect.
thanks~