i'm using the
validation function in one of my scripts. let me sum up quickly what i'm trying to do: i have an io-page where a user can specify a filename for a file the script generates. i'm using the validation function in the leave function of the io-page to verify the inputs.
so i was trying to check, if the specified filename contains any illegal characters.
!define ILLCHARS '\/:*?"<>|'
Push "This contains:illegal chars"
Push "${ILLCHARS}"
Call Validate
Pop $0
i push ${ILLCHARS} to that function, but always get 0 as output. what am i doing wrong?