useSystemDate
Posted: Wed Oct 28, 2009 1:44 pm
My MacOS X (10.5.8) system dates are set to display in dd/mm/yyyy format, e.g.:
Monday, 5 January 2009
Monday, 5 January 2009
5 Jan 2009
05/01/2009
A stack contains the following in Basic Properties:
Yet the following script, at field level, results in the American format of the date being put into the field "modified":
(also tried without the "English" -- same result)
In today's case, this is shown as "Wednesday, October 28, 2009"
How do I get this to show as "Wednesday, 28 October 2009"?
Monday, 5 January 2009
Monday, 5 January 2009
5 Jan 2009
05/01/2009
A stack contains the following in Basic Properties:
Code: Select all
on openStack
set the useSystemDate to true
end openStack
Code: Select all
on closeField
if the short name of the target = "Notes" then exit closeField
put the long English date into fld "modified"
end closeField
In today's case, this is shown as "Wednesday, October 28, 2009"
How do I get this to show as "Wednesday, 28 October 2009"?