i've tried with brackets...with both panel* and text*...but nothing...T_T
The error message is still the same ("Too many parameters").
How do i fill the strings? Simply reading from a text file with thess code lines:

Code:
fhandle = file_open_read ("test.txt");
	
	while (file_str_read (fhandle,animations[counter].animName)!=-1)
	{
		animations[counter].startFrame 	= file_var_read (fhandle);
		animations[counter].endFrame 		= file_var_read (fhandle);
		animations[counter].framesCount 	= file_var_read (fhandle);
		counter++;
	}
	
	file_close(fhandle);