If there a way to display the numeric position of the caret in a file. I know the status bar displays the line number and column, but I need the absolute caret position. Also is there a way to goto an absolute position in a file.
Thanks
Neal
Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.

var nPosition = UltraEdit.activeDocument.currentPos;
UltraEdit.messageBox("Current position is: "+nPosition);