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.





213 123 test 12
213 123 test 12
213 123 test 12
213 123 test 12
213 123 test 12
213 123 test 12
213 123 test 12
213 123 test 12
213 123 test 12
213 123 test 12
var l = 5;
UltraEdit.activeDocument.top();
UltraEdit.activeDocument.findReplace.regExp = true;
UltraEdit.activeDocument.findReplace.find("t"); //it will match in 1st line
var intLine = UltraEdit.activeDocument.selectWord;
UltraEdit.activeDocument.gotoLine(l,0); //Will go to line 5, same column. OK !
UltraEdit.document[0].write("Line " + String(intLine));213 123 Line function selectWord() { [native code]}Line 12
selectABCnotThere()
var line = UltraEdit.activeDocument.selection;
var intLine = parseInt( line );



UltraEdit.ueReOn(); /* Let's use UE's own regexp syntax */
UltraEdit.activeDocument.findReplace.regExp = true;
UltraEdit.activeDocument.top();
var regexpFind = "error on line [0-9]+ in file *$";
if(UltraEdit.activeDocument.findReplace.find(regexpFind)) {
var lineandfile = UltraEdit.activeDocument.selection;
var words = lineandfile.split(" ");
var lineno = parseInt(words[3]); // points to lineno in array
var path = lineandfile.substr(lineandfile.indexOf("in file ")+8);
UltraEdit.open(path);
UltraEdit.activeDocument.gotoLine(lineno,0);
}

