ok heres what I’m trying to do, basically what I need is something like
if(a._x > 100 and b._x > 100 and c._x >100){
//do action
}
But what I want here is say both a and c were greater than 100 then I want them to preform the action and b does nothing. I looked around in the refference and && and || didn’t seem to work. Anyone knows what this line of code should be?
well hellooo
you can put as many conditions as you want.
if (a._x>= 100 && c._x>= 100 && b._x>100 && outside = "it's raining") {
//statements
};
//or combine with || (or)
if ((a._x>= 100 && b._x=>100 && c._x>= 100) || outside!="rain") {
trace("either all your mcs are over 100 on x position or outside is clear :D");
};
But what I want here is say both a and c were greater than 100 then I want them to preform the action and b does nothing
B does nothing? Where you wrote it was a condition… not something you tell B to do ;). So… What are you trying to do?
executing only the ones that are you don’t need the && or ||.
you simply put them one after another as bodyvisual said.
But if you need something like… do the testing only when b > 100 then you should try something like:
if (b>100) {
//do something for b only
if (c>100) {
//do something if c>100 only if b>100
}
if (a>100) {
//do something if a>100 only if b>100
}
}
I’m making a windows type layout www.geocities.com/skinny_man21/new.html and for the task bar I’ve set it so if any of the buttons locations are greater then then button thats dissapearing then they move across and the variables are reset.