Wanted: Date/Time Macro

Get help using and writing Nisus Writer Pro macros.
Post Reply
midwinter
Posts: 333
Joined: 2004-09-09 18:07:11
Location: Utah
Contact:

Wanted: Date/Time Macro

Post by midwinter »

Hi all.

I'm wondering if someone would take pity on me and create a date/time macro for me. Specifically, I'd like a macro that would produce this with a single click:

Wednesday, June 17, 2007
9:51 PM

I know that there is a date/time macro built in, but I can't make heads or tails of Perl.

Thanks in advance.

Cheers
User avatar
martin
Official Nisus Person
Posts: 5227
Joined: 2002-07-11 17:14:10
Location: San Diego, CA
Contact:

Post by martin »

Pity taken:

Code: Select all

$fullDate = '' 
$shortTime = '' 

Begin Perl
	use POSIX qw(strftime);
	my $time = time;
	my @timestamp = localtime($time);
	
	my ($sec, $min, $hour, $day, $month, $year, $weekday) = localtime($time);
	$year += 1900; 
	$monthName = strftime( '%B', @timestamp );
	$weekdayName = strftime( '%A', @timestamp );
	if( $hour > 12 ) {
		$hour -= 12;
	}
	elsif( 0 == $hour ) {
		$hour = 12; # for 12AM
	}
	$ampm = strftime( '%p', @timestamp );
	
	$fullDate = sprintf( '%s, %s %d, %04d', $weekdayName, $monthName, $day, $year ); 
	$shortTime = sprintf( '%d:%02d %s', $hour, $min, $ampm ); 
End 

Type Text $fullDate 
Type Newline 
Type Text $shortTime
Last edited by martin on 2007-07-31 22:45:59, edited 1 time in total.
User avatar
martin
Official Nisus Person
Posts: 5227
Joined: 2002-07-11 17:14:10
Location: San Diego, CA
Contact:

Post by martin »

I've added this macro (and a couple more date/time formats) to the macro repository.
midwinter
Posts: 333
Joined: 2004-09-09 18:07:11
Location: Utah
Contact:

Post by midwinter »

Thanks, Martin! Works like a charm! Exclamation point!
User avatar
scottwhitlock
Posts: 174
Joined: 2004-10-26 07:10:40
Location: Tucson, AZ

Post by scottwhitlock »

Good to see you back, midwinter. I've missed the banana.
MacBook Pro 15
2.66 Ghz Core i7
8GB RAM
10.8.3
NWP 2.0.4
iPad 3
midwinter
Posts: 333
Joined: 2004-09-09 18:07:11
Location: Utah
Contact:

Post by midwinter »

scottwhitlock wrote:Good to see you back, midwinter. I've missed the banana.
Thanks, Scott. It was a crazy semester followed by a broken foot followed by a research trip to Europe.

But I'm back and writing again, so my plan is to bury Martin in feature requests for the upcoming Nisus Writer Super-Pro. ;)
User avatar
martin
Official Nisus Person
Posts: 5227
Joined: 2002-07-11 17:14:10
Location: San Diego, CA
Contact:

Post by martin »

midwinter found a bug in the macros I wrote. Basically all times in the 24th hour are printed as "00:MM AM" instead of "12:MM AM", eg: "00:55 AM" instead of "12:55 AM".

I've updated the macro files to fix this, so if you ever plan on writing in the midnight hour, it might be worth re-downloading them. Sorry everyone.
gemboy27
Posts: 355
Joined: 2003-09-30 21:33:58

Thanks

Post by gemboy27 »

I haven't had a need for any of the macros, but I would just like to thank you for creating a page that has them on them

merci

please don't get your cape caught in the revolving door!!
http://s169.photobucket.com/albums/u202 ... /niman.gif
I have never let my schooling interfere with my education/Mark Twain (1835-1910)
Post Reply