removeChild

Im having issues remove a child from my stage in AS3. My game has a movieClip going across the screen and when it hits a certain point it gets removed, but that never happens, instead an error always comes up and the program freezes. Ive tried to put it in different frames but the same error occurs.

ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller.
at flash.display::DisplayObjectContainer/removeChild()
at QuickKeys_fla::MainTimeline/frame11()

Here is the code i use to remove the movieClip:

if (letA.x >= 458){
	removeChild(letA)
}

Any help appreciated, Bimz