Cannot detect the MCs on the timeline

Hey guys,
need some help here…im trying to insert some actions on some buttons (they’re movieclips btw)…before, it was working but then when i added some codes to load an xml file it gives me a 1120 error (Access of undefined property ).

Here’s the function.

			public function initButtons():void
		{
			playSound.addEventListener(MouseEvent.MOUSE_OVER,chPlayImage);
			pauseSound.addEventListener(MouseEvent.MOUSE_OVER,chPauseImage);
			stopSound.addEventListener(MouseEvent.MOUSE_OVER,chStopImage);
			forwardSound.addEventListener(MouseEvent.MOUSE_OVER,chForwardImage);
			
			playSound.addEventListener(MouseEvent.MOUSE_UP,playSong);
			pauseSound.addEventListener(MouseEvent.MOUSE_UP,pauseSong);
			stopSound.addEventListener(MouseEvent.MOUSE_UP,stopSong);
			forwardSound.addEventListener(MouseEvent.MOUSE_UP,forwardSound);
		}