Hi,
i want to import a ics-file into a calendar of thunderbird/lightning.
There are some of them, e.g.
-private
-training
-veranstaltung
It works till it open a windows with the diverent calendars. I do not know how to choose between them with autoit.
My code is as follows:
;ICS File aus Filemaker nach iCal schreiben
#include <File.au3>
$Dateipfad = 'C:\temp\icalimport.txt'
; oeffne Thunderbird
WinActivate("Posteingang - Mozilla Thunderbird")
WinWaitActive("Posteingang - Mozilla Thunderbird")
Send("!t")
Send("!i")
Send("c:\temp\icalimport.ics")
Send({Enter})