tempo di calcolo di AppleScript

0

Sto provando a fare una dichiarazione con l'ora corrente,

es

if Time is between 14h and 14:30 then ... if time is between 14:30 and 15h then ...

e così via.

time string of (current date)
set Timeleft to missing value

if time string is in "14:00:00" and "14:29:60" then

end if

ora ovviamente il tempo non è una stringa come ho fatto nel mio script, come posso farlo funzionare?

Anche qui è il mio formato orario di sistema: data corrente

  --> date "Saturday 9 December 2017 at 14:10:09"
    
posta Kevin 09.12.2017 - 15:17
fonte

1 risposta

1

Trovato un lavoro in giro

set myTime to time string of (current date) as Unicode text
##set Timeleft to missing value

if myTime > "14:00:00" and myTime < "14:30:60" then
    display notification "!"
end if
    
risposta data 09.12.2017 - 15:37
fonte

Leggi altre domande sui tag