Hi, The error says that the "homee" object is a MovieClip not a Boolean object, means homee value cannot be "false" or "true" like the Boolean object, The movie clip value is "MovieClip" and it has some properties, so if you want to check some property value you have to add it in the if statement:
if(homee.visible == false) // check the visibility of the homee mc if it's false (hidden)
{
//Do something
}
or:
if(homee.x >= 100) check the x axis of the homee mc if it's greater than or equal to 100
{
// Do something
}