IMPORTANT ANNOUNCEMENT

These forums were permanently set to read-only mode on July 20, 2022. From that day onwards, no new posting or comment is allowed on the site, but the historical content remains intact and searchable.

A new location for posting questions about PlanetPress Suite is now available:

OL Learn - PlanetPress Classic (opens in new tab)

Topic Options
#18997 - 10/23/05 11:11 PM Current Date in Page
agoens Offline
Junior Member

Registered: 10/23/05
Posts: 1
I need a date function like DATE() to place in my page. Preferably to look like "October 23, 2005"
Any Ideas?
THanks!
[PPS 5 & PPW 5]

Top
#18998 - 10/24/05 01:26 PM Re: Current Date in Page
Anonymous
Unregistered


Hello,

A PlanetPress form is a postscript program that runs inside of the printer. At that state, it is not possible to get the date.

However, since you mention that you have PlanetPress Watch then we can work something out. What you need to do is use the Set Job Info Plug-in in PlanetPress Watch.

%M = month as a string
%d = day as a number
%y = year

See SS below




You put that plug-in right before your form.

Then, in the form, you can use the 7 variable to show the date.

Example : show(&Watch.JobInfos[7])

Of course, at design time, PlanetPress Watch is not feeding the data to your form. So if you go to the document properties, job info tab, you can hardcode a value there so that you can see what it should look like on screen.

Top