MoleDirect
Technical User
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:
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
};