Hello adobe collegue's,I am currently stumbling on a strange issue
regarding javascript embedded to compress a string:// main function to
compress any string, removing all non-word characters and making the
string all lowercasefunction compressString(input){ var patt=new
RegExp("\\W","g"); patt.compile(patt); var output =
input.toLowerCase().replace(patt,"")+"YESS"; return output;}Somehow this
code does execute perfectly while previewing in adobe designer 9.0.0.2
but runtime all javascript does ...