Thank you!!! Your help with the replace option worked perfectly!!! I was
able to replace the spaces with %20 using your code above...at that
point I still had an issue because the resulting NETWORK link (vs.
hyperlink) was no longer being recognized when it was copied into my
auto-generated email (it didn't understand %20)...but I solved that too
by adding the'File://' + to the tfFieldWithSpaces exit
event:tfFieldWithNoSpaces.rawValue = 'File://' + this.rawvalue.replace
(/ /g, '%20');And now my ...