Xml gallery "go to specific image"

Hi,

I’ve added the following code to make the gallery move to a specific image when the button “test” is pressed. It works for the captions but not the image. Would anybody know what I’m missing? Thanks.



};
	test.onRelease = function() {
		showImage();
	};

};
function showImage() {
	var p = 3;
    picture._visible = 1;
	picture._alpha = 0;
	picture.onEnterFrame = fadeIn; 
	desc_txt.text = description[p];
	comment_txt.text = comment[p];
	caption_txt.text = caption[p];
	comment_txt.autoSize = true;
	picture_num();