Timestamping

Features wanted...
Post Reply
prino
Posts: 337
Joined: 18 Mar 2012 21:14
Location: Vilnius, Lithuania
Contact:

Timestamping

Post by prino »

Could you consider adding an option (a green V with a little 3, like the cube-root key on some old pocket calculators, inside it comes to mind) that would make it possible to apply a timestamp to all three (Created/Modified/Accessed) timestamps simultaneously in the Properties panel, removing the need to change one, Cut&Paste the date into the second and repeat this process for the third?
Robert AH Prins
robert.ah.prins @ the.17+Gb.Google thingy
At last, a tiny bit of programming here... :mrgreen:

Nighted
Posts: 459
Joined: 21 Jan 2007 01:58
Location: Gitmo Nation North, Win 7/10/Linux/(x64)

Re: Timestamping

Post by Nighted »

Yes, something like this would be great. I've thought about a few times. If you could popup a calender, would be handy also.
I want XY to serve soft ice cream. Please Don, make XY serve soft ice cream.

Stefan
Posts: 1360
Joined: 18 Nov 2008 21:47
Location: Europe

A script to change all timestamps to current time

Post by Stefan »

prino wrote: apply a timestamp to all three (Created/Modified/Accessed) timestamps simultaneously
If you want you can add a User Button with such a script to change all timestamps to current time:

Code: Select all

timestamp 
timestamp [type], [date], [itemlist]
type [optional] c|m|a or any combinations in any order (cm, am, cma, ac...); defaults to cma
date [optional] must be in a format that the local system can understand; missing: defaults to Now;
An icon you can find on the net, like this one (it's not green, but do the work)
cube-rootV3.zip
ICO file
(6.46 KiB) Downloaded 71 times
For a How to add an Custom Toolbar Button (CTB) click here


- - -

Apply timestamp from selected file in other panel:

Code: Select all

focus "PI";
  $refName  = "<curname>";
  $refDateM = "<datem>";
  focus "PI";
  $curName  = "<curname>";
  $curDate  = "<datem>";

  $do = confirm("Use timestamp of<crlf>$refName - $refDateM
                  <crlf>to modify<crlf>$curName - $curDate?");
  if($do==1){
     //timestamp [type], [date], [itemlist]
       timestamp cam, $refDateM;
  }

- - -

Ask for and apply timestamp:

Code: Select all

.

.

Post Reply