List Iterator Separator Constants

 Hi, 

In the BeforeAction of my List Iterator, I'm trying to set the Action.ListSeparator.  

Both of these seem to tell me undefined.  Am I using the constant wrong?

Action.ListSeparator = lsCRLF;

Action.ListSeparator = TFBListSeparator.lsCRLF

-Nelson

Hi Nelson,

The scripting constants weren’t being registered, it’s fixed that for the next build. In the meantime you can use the following values:

Action.ListSeparator = 0; //lsCRLF
Action.ListSeparator = 1; //lsTab
Action.ListSeparator = 2; //lsCharacter

Regards,
Paul.