Help me with my code okay so the problem is that the object (text12) is suppose to be visible after object (char1) touches object (char2) but when char1 touches cha2 the text isnt visible even after they touch
jah._visible = false;
if(char1.hitTestObject(char2))
{
jah._visible = true; }
If you want your object jah to be
visible
only when char1 touches char2, you can write:bird_mc.hitTest(missile_mc)
returns exactly the sameBoolean
astexte._visible
(true or false), so you can also write: