tiempo de cálculo de AppleScript

0

Estoy intentando hacer una declaración if con la hora actual,

por ejemplo

  

si el tiempo es entre las 14h y las 14:30, entonces ... si el tiempo es entre las 14:30   y 15h entonces ...

y así sucesivamente.

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

obviamente, el tiempo no es una cadena como lo hice en mi script, ¿cómo puedo hacer que funcione?

También aquí está mi formato de hora del sistema: fecha actual

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

1 respuesta

1

Encontré un trabajo alrededor

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
    
respondido por el Kevin 09.12.2017 - 15:37

Lea otras preguntas en las etiquetas