Out in the Web (and in MS Word) there are features which generates "random text" (lorem ipsum generator). Is there a feature or an external interface in UE?
Thanks
Peter
Thanks
Peter
UE 26.20.0.74 German / Win 10 x 64 Pro
Code: Select all
UltraEdit.newFile();
var nWords = UltraEdit.getValue("How many words should have the paragraph?",1);
loremIpsumParagraph(nWords);
Code: Select all
// just switch language like this! You can also do this in a script block on the page.
var loremLang = latin;
Code: Select all
// just switch language like this! You can also do this in a script block on the page.
var loremLang = UltraEdit.getString("Sprache wählen: \nlatin - swedish - zufall",1);
Code: Select all
L i i t l i i i l l.
Code: Select all
if (nWords < 1)
{
UltraEdit.closeFile(UltraEdit.activeDocument.path,2);
}
else
Code: Select all
if (nWords > 0)