code
content_arr = new Array("This is the text for the button 0 your text",
"This is the text for the button 1 your text",
"This is the text for the button 2 your text",
"This is the text for the button 3 your text",
"This is the text for the button 4 your text");
for (i = 0 ; i < content_arr.length ; i++)
{
_level0["func" + i + "_btn"].num = i;
_level0["func" + i + "_btn"].onPress = function ()
{
content_txt.text = content_arr[this.num];
}
}