thestr = clipboardData.getData(“Text”);
Editor.newfile();
Testdoc = Editor.activedocument;
Testdoc.ConfigName = “Pub”;
Testdoc.write(thestr);
Testdoc.selection.SetActivePoint( eePosLogical, 1, 1 );
Quit();
i want to create anew file and set it to a configurauin and then paste into it from clipboard.
It works up to the point where I paste from clipboard.
I manually need to do ctl+v
Thanks