|
|
Get Member Modified Time and Date
Added on 8/16/2000
|
Returns the full time and date a member was last modified.
--Copyright 2000 Chuck Neal
--chuck@mediamacros.com
--If you find this code helpful, send me an e-mail and let me know. :-)
on getMemberModified whatMember
m = whatMember.modifiedDate
return [#year : m.year, #month : m.month, #day : m.day, #hour : (m.seconds/3600), #minute : (m.seconds mod 3600)/60, #second : m.seconds mod 60]
end
on getBehaviorDescription me
return "This script returns the full time and date a member was last modified."
end
|
|