I'm trying to make a few movie clips a certain type of object-and then putting it into an array. This code is not working properly what am I doing wrong?
function objLine33 ()
{
}
Line33=[];
Line33.push(new objLine33(Line33A));
Line33.push(new objLine33(Line33B));
Line33.push(new objLine33(Line33C));
Line33.push(new objLine33(Line33D));
Line33.push(new objLine33(Line33E));
* all the lines are actual movieclips
and then when I'm trying to see if a user clicked on one of the items I wrote:
else if (this==objLine33) //but it doesn't recognize it
thank you
function objLine33 ()
{
}
Line33=[];
Line33.push(new objLine33(Line33A));
Line33.push(new objLine33(Line33B));
Line33.push(new objLine33(Line33C));
Line33.push(new objLine33(Line33D));
Line33.push(new objLine33(Line33E));
* all the lines are actual movieclips
and then when I'm trying to see if a user clicked on one of the items I wrote:
else if (this==objLine33) //but it doesn't recognize it
thank you