Need Eudora applescript to change queue time and date

Hi, All!

The Applescript dictionary for Eudora v5.2 states:

“queue: Queue a message to be sent
queue reference – the message to queue
[for date] – date & time to send the message”

But note that this script does NOT change the queue date – the date remains current date and time:

tell application “Eudora”
activate
queue message 0 for “1/1/2007”
end tell

This script also does NOT work:

tell application “Eudora”
activate
queue message 0 for date “1/1/2007”
end tell

Can anyone give me any suggestions?

Thanks!

– Race