Welcome,
(EDIT: First suggestion already mentioned

resuming post...
)
If you're trying to refer to mcs you put in this class from Flash, you have to name them in Flash in order to be able to access them. Then you can just write
ActionScript Code:
//adding Childs
addChild(square);
addChild(start_btn);
IMPORTANT: if this is true, you should not be declaring
ActionScript Code:
public var square:MovieClip;
public var start_btn:MovieClip
in your class, because this will actually override your mcs' variables and you won't be able to access them
Hope something i wrote made sense