Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing a mac application using Xcode with applescript base. I want to add in a set of code so upon program launch, it would compare with system date. If date within range specified, proceed. If date check is out of range then terminate program immediately.

Can anyone offer any suggestions? thank you!

Xcode: 3.2.5 OSX 10.6 Snow Leopard

share|improve this question

1 Answer

Do you mean something like this?

set range to 3 * days
set targetDate to (date "Saturday, March 19, 2011 12:00:00 AM")
set currDate to current date
if abs(targetDate - currDate) > range then
    display dialog "quit"
else
    display dialog "continue"
end if

on abs(n)
    if n < 0 then
        return -n
    else
        return n
    end if
end abs
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.