Is it possible to get the current frame LABEL of a MC?

is it possible to get the current frame LABEL of a MC?

no, you can however work your way around this by storing your labels in an array:


myLabels = new Array();
myLabels[1]="start";
myLabels[15]="label1";
myLabels[25]="label2";

then you could create a function that gets the label for you


getLabel = function(){
	 var currentF = _root._currentframe;
	 return myLabels[currentF];
}

cheers Flink