PDA

View Full Version : Linking Problems Again (Flash 8)


rushy
10-09-2006, 05:15 PM
I used all the code that Aerospace said to use butt1.onRollOver = over;
butt1.onRollOut = out;
butt1.onMouseDown = function()
{
getURL('http://www.yahoo.com');
}
butt1.text.buttonText.text = "Chassis ";


butt2.onRollOver = over;
butt2.onRollOut = out;
butt2.onMouseDown = function()
{
getURL('http://www.yahoo.com');
}
butt2.text.buttonText.text = "PARTS ";

butt3.onRollOver = over;
butt3.onRollOut = out;
butt3.onMouseDown = function()
{
getURL('http://www.karting.co.uk');
}
butt3.text.buttontext.text= "Accessories ";

butt4.onRollOver = over;
butt4.onRollOut = out;
butt4.onMouseDown = function()
{
getURL('http://www.google.com');
}
butt4.text.buttontext.text= "About US ";

function over() {
this.gotoAndPlay(2);
}

function out() {
this.gotoAndPlay(1);
}

but the thing is that even if i click on anything on the flash part in html it loads up one of the thing ie. yahoo.com evn if i click on butt4 which is google it still does it???

Any help???

_Aerospace_Eng_
10-09-2006, 07:04 PM
Why did you even make a new thread about this? Why didn't you just continue the one you already had?

rushy
10-09-2006, 07:57 PM
I dont know its different thing

rushy
10-10-2006, 09:05 PM
Solved