I'm adding auto bullets in a textbox in ES2So in a plain text multiline textbox I add this Javascript to the change event to detect the carriage return and substitute for a carriage return, space, bullet, spaceif (xfa.event.change == "\u000A") { xfa.event.change = "\u000A" + " • ";}This works OKI al...