Bonjour,
J'essaye en vain d'exporter un calendrier ical(version 4) au format ics en applescript .
Première piste essayée -> save
(nb: j'ai du mettre dans ce message desktop avec un petit d car sinon çà affiche )
Seconde voie testée: UI scripting
Quelqu'un aurait-il la solution ?
merci d'avance
J'essaye en vain d'exporter un calendrier ical(version 4) au format ics en applescript .
Première piste essayée -> save
même en créant au préalable un fichier Calendrier.ics vide çà ne marche passet aliasfichier to alias "Macintosh HD:Users:Rene:desktop:Calendrier.ics"
tell application "iCal"
activate
set varcal to (calendars whose title is "Personnel")
save varcal in aliasfichier
end tell
(nb: j'ai du mettre dans ce message desktop avec un petit d car sinon çà affiche )
Seconde voie testée: UI scripting
j'arrive pas à "appuyer" sur le bouton Exporter ou à faire Returntell application "iCal" to activate
tell application "System Events"
click menu item "Exporter " of menu "Fichier" of menu bar 1 of application process "iCal"
keystroke "Calendrier"
delay 2
-- click the button "Exporter"
-- keystroke return
end tell
Quelqu'un aurait-il la solution ?
merci d'avance