Reload when copying custom columns to clipboard
Moderators: Hacker, petermad, Stefan2, white
Reload when copying custom columns to clipboard
Copying the content of custom columns to clipboard (cm_CopyFpFileDetailsToClip) reloads the panel. In my case getting the content from the files takes a very long time and reloading is actually not necessary. Any idea how to avoid the redundant reload?
TC plugins: Autodesk 3ds Max / Inventor / Revit Preview, FileInDir, ImageMetaData (JPG Comment/EXIF/IPTC/XMP), MATLAB MAT-file Viewer, Mover, SetFolderDate, Solid Edge Preview, Zip2Zero and more
- ghisler(Author)
- Site Admin
- Posts: 50406
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
This is done because
- only the currently visible lines are available
- the plugin data may have changed
- very long plugin values may have been truncated
- only the currently visible lines are available
- the plugin data may have changed
- very long plugin values may have been truncated
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
What I do is calling very long calculations on the files using the scriptWDX plugin by activating this custom column. Then I want to copy the column contents to clipboard. Maybe there is a trick of how to avoid the calculations a second time when copying.
Otherwise I can call the script on the files without usage of TC. OK I may think about this option.
Otherwise I can call the script on the files without usage of TC. OK I may think about this option.
TC plugins: Autodesk 3ds Max / Inventor / Revit Preview, FileInDir, ImageMetaData (JPG Comment/EXIF/IPTC/XMP), MATLAB MAT-file Viewer, Mover, SetFolderDate, Solid Edge Preview, Zip2Zero and more
- ghisler(Author)
- Site Admin
- Posts: 50406
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Try this:
1. Reduce the size of TC until only one line is visible
2. Switch to your special view
3. Select all with Ctrl+A
4. Use cm_CopyFpFileDetailsToClip
1. Reduce the size of TC until only one line is visible
2. Switch to your special view
3. Select all with Ctrl+A
4. Use cm_CopyFpFileDetailsToClip
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Thanks, Christian, for the workaround. This helps indeed as only one calculation per file is performed.
TC plugins: Autodesk 3ds Max / Inventor / Revit Preview, FileInDir, ImageMetaData (JPG Comment/EXIF/IPTC/XMP), MATLAB MAT-file Viewer, Mover, SetFolderDate, Solid Edge Preview, Zip2Zero and more