Page 1 of 1

SeedCode_CleanText?

PostPosted: Fri Apr 06, 2012 4:36 pm
by DPmax
Just wondering, what are all the formatting changes the SeedCode_CleanText custom function makes?

Is there a list of all the Seed Code custom functions and their "task/function"?

Thanks,
Max

Re: SeedCode_CleanText?

PostPosted: Fri Apr 06, 2012 5:56 pm
by John Sindelar
It removes any font and color options from the text, while trimming leading/trailing spaces and returns. Here is the function:

// Trim with removing returns

TextColorRemove (
TextFontRemove (
TextFormatRemove ( Trim ( Substitute ( string ; "ΒΆ" ; "" ) ) )
)
)

I think the list of custom functions themselves (File / Manage / Custom Functions) is the best list =) And the tricky ones are prefaced with a nice explanation of what they do, what the parameters are, etc.