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"); pat...