Je n'ai pas utilisé AppleScript depuis un moment et je n'arrive pas à coder un script dont j'ai besoin.
Ce que j'essaie de faire :
liste1 : jour ouvrable {"Monday", "Friday", "Saturday", "Sunday"}
article à trouver currentDay : set currentDay to weekday of (get current date) as text
(en gros, je veux vérifier si je travaille aujourd'hui ou non afin d'exécuter un autre script)
set currentDay to weekday of (get current date) as text
set workingdays to {"Monday", "Friday", "Saturday", "Sunday"}
set imworking to false
repeat with a from 1 to length of workingdays
set theCurrentListItem to item a of workingdays
if theCurrentListItem = workingdays then
set imworking to true
else
set imworking to false
end if
end repeat
theCurrentListItem y currentDay \= "Lundi" alors pourquoi si theCurrentListItem = workingdays n'est pas vrai