On clip event

i am having problems making this code work with onclip event or on enter frame. i know that if i change the code to mybutton.onRelease it will work but i want it to work with on enter frame or on clip event.

onClipEvent = function() {
	for (i=0; i<t_xml.length; i++) {		
		if (deingabe_txt.text == t_xml*.attributes.datum) {
			_level1.playSFX("Transfer");
			currentD =  t_xml*.attributes.datum.split('.')[0];
			currentMonth = t_xml*.attributes.datum.split('.')[1]-1;			
			currentYear = t_xml*.attributes.datum.split('.')[2];
			cleanUp();       
    		displayMonth(currentMonth, currentYear);
			anzeige_txt.text = this._parent["date"+currentD].weekday+"
"+(((((currentD+" ")+monthArray[currentMonth])+" - ")+curYear));
			news_txt.htmlText = "<font color='#ff0000'>"+t_xml*.attributes.titel+"</font><br><br>";
			news_txt.htmlText += t_xml*.firstChild+"<br><br>";
			if (t_xml*.attributes.links != undefined) {
				news_txt.htmlText += "<p align='right'><font color='#ff3300'>[ <a href='"+t_xml*.attributes.links+"'>Jump</font> ]</a></p>";
			}
			deingabe_txt.text = "";
			break;
		} else {			
			news_txt.htmlText = "Kein Termin!";			
		}
	}
}

Well, there are two things. First, is this on a frame or a movieclip?

If it’s on a frame, it needs to be
onEnterFrame = function() {

If it’s on a movieclip, it should be
onClipEvent(enterFrame) {

Didn’t look at the rest of the code… but that was what i saw right off.