Hi all!
I've got a little question about panels.
I declared a struct containing 3 vars and one string pointer,

Code:
typedef struct { 
	STRING * animName;
  	int startFrame; 
  	int endFrame; 
  	int framesCount;
} animationData;


and an array of animationData

Code:
animationData animations[20];


So i need to show in a panel the content of these strings.
I've tried to do this with the following code line

Code:
digits (50,50,"Anim1:%s", #14, 1, animations[0].animName);


but i obtain this error message..."Too many parameters".

Any suggestion??

P.s. I'm sorry for my bad english