Clipboard PASTE USESEL to multiple selected folders

Would be useful if Clipboard PASTE USESEL could paste to multiple folders please.

Easily done already with a short script:

function OnClick(clickData)
{
	var cmd = clickData.func.command;
	for (var eSel = new Enumerator(clickData.func.sourcetab.selected_dirs); !eSel.atEnd(); eSel.moveNext())
	{
		cmd.ClearFiles();
		cmd.AddFile(eSel.item());
		cmd.RunCommand("Clipboard PASTE USESEL");
	}
}

when used on expanded folders few files are shown in the end of long list in root folder, not in needed folders, when modified sort order is on.
similar to this

This seems to work OK now (probably fixed when the issue you linked was fixed). Please let us know if I'm wrong and it still needs looking at.

1 Like

seems to be fixed, thanks

1 Like