Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flash movie opens in new window in IE8 with _self 1

Status
Not open for further replies.

MoleDirect

Technical User
Sep 4, 2007
45
0
0
US
I am really perplexed by this one.... I am using IE8, (if I could find the uninstaller, I would go back to 7) and I have a flash movie on my page that has links. The flash movie is my Nav bar, and when you click on a link, it opens in a new window, even though I have the target as _self. I have tried _Parent and _Top

I also tested in Firefox and Google Chrome, and they work fine.

The site is kovacichosting(dot)com, and here is the nav actionscript:

Code:
stop();
one.onPress = function() {
	getURL("[URL unfurl="true"]http://kovacichosting.com/index.html",[/URL] "_Self");         // HOME
};
two.onPress = function() {
	getURL("[URL unfurl="true"]http://kovacichosting.com/about.php",[/URL] "_Self");         // ABOUT US
};
three.onPress = function() {
	getURL("[URL unfurl="true"]http://kovacichosting.com/service.html",[/URL] "_Self");         // HOSTING
};
four.onPress = function() {
	getURL("[URL unfurl="true"]http://kovacichosting.com/compare.php",[/URL] "_Self");         //COMPARE
};
five.onPress = function() {
	getURL("[URL unfurl="true"]http://kovacichosting.com/order/client_login.php",[/URL] "_Self");         //CLIENT LOGIN
};
six.onPress = function() {
	getURL("[URL unfurl="true"]http://kovacichosting.com/order",[/URL] "_Self");         // SIGN UP
};
seven.onPress = function() {
	getURL("[URL unfurl="true"]http://kovacichosting.com/support.php",[/URL] "_Self");         //  HELP
};
 
I will change the case and try again.. I am testing it online.
 
Well, changing the case did it! :)

Thank you much!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top