hello
Could anyone tell me how I can pop a multi-line dialog
when using getValue, getString function?
like,
Insert value : \n 1. list \n 2. run \n 3. summary
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 splitsequence = "@";
var myTest = UltraEdit.getString("what?", 1);
var myVars = myTest.split(splitsequence);
UltraEdit.getString("Parameters entered: " + myVars.length,1);
for (i=0;i<myVars.length;i++)
UltraEdit.getString("Parameter " + i + " = " + myVars[i],1);
