_root.answer1._visible - not working!

I have a numbers of answer that I want users to be able to choose when they appear. I have a button next to each answer with the below code. Now, the answer are visable from the start although they can be toggled on/off using the buttons. Any idea how I can make them invisable from the beginning?

on(click){
	_root.answer1._visible=!_root.answer1._visible
}

Yossi