Page 1 of 1

Support Metadata Edit

Posted: 22 May 2022 11:25
by poegtam
This definitely is useful and should be added.
Simply refer to how directory opus does.

Re: Support Metadata Edit

Posted: 22 May 2022 14:57
by Horst
What meta data you mean ?
Its not helpful to refer to other tools which are not installed.

Re: Support Metadata Edit

Posted: 23 May 2022 07:05
by poegtam
Horst wrote: 22 May 2022 14:57 What meta data you mean ?
Its not helpful to refer to other tools which are not installed.
I mean the metadata of files.
Now we can only view the metadata of a file, but can not edit the data.

Re: Support Metadata Edit

Posted: 05 Aug 2022 15:34
by admin
Not planned.

Re: Support Metadata Edit

Posted: 05 Aug 2022 19:46
by Norn
Solution: Use two file managers. :)
Focus on Dopus and open the metadata pane:

Code: Select all

$dopusrt = """D:\Tools\Directory Opus\dopusrt.exe""";      //Not dopus.exe
 if (<curitem> != "" && exists(<curitem>) != 2) {
     run lax($dopusrt /cmd GO "<curitem>" NEW);
     wait '1000';
     run lax($dopusrt /cmd Set METAPANE=On)
 } else
 {
     run lax($dopusrt /cmd GO "<curpath>" NEW);
     if (<curname> != "") {
         wait '2000';
         run lax($dopusrt /cmd Select EXACT "<curname>" SETFOCUS);
         wait '500';
         run lax($dopusrt /cmd Set METAPANE=On)
     }
 }
Focus on XY (Close Dopus tab) (JS):

Code: Select all

function OnClick(clickData)
{
     var cmd = clickData.func.command;
     var tab = clickData.func.sourcetab;
     cmd.RunCommand("\"D:\\Tools\\XYplorer\\XYplorer.exe\" /feed=\"::tab('new', '{sourcepath}'); selectitems '{allfilepath|sep=|}';\"")
     if (tab.lister.tabs.count == 1){
         cmd.RunCommand("Close")
     }
     else
         cmd.RunCommand("Go TABCLOSE")
}