Ho notato che il link non esiste più, ma ne avevo fatta una copia in locale con il mitico scrapbook, la posto qui sotto in formato testo, un po' bruttino, ma dovrebbe esserci tutto ...
Ever time I set an alarm for an event in google calender using Lightning it is a pop-up alarm, but i want it to be a sms alarm. Anyway to do this.
Commento di srini2007 del 2 luglio 2007, 05:15:
Since there is no infrastructure in Sunbird/Lightning to handle other types of alarms, there is no (easy) way I can do this yet.
See the following bugs for progress.
https://bugzilla.mozilla.org/show_bug.cgi?id=282565https://bugzilla.mozilla.org/show_bug.cgi?id=293194Commento di Philipp Kewisch del 2 luglio 2007, 05:21:
Before recent changes, it was possible to use the default settings for google calender alarm to select sms, email and/or popup. Now however either alarmtype popup or alarm disabled is transmitted by lightning. Maybe it is possible to avoid this information, since google use its default settings only if no alarm is specified.
(quote google settings - in german, sorry- :
Terminerinnerungen:
Soweit für einzelne Termine nicht anders angegeben.
Standardmäßig erinnern mittels
Vor jedem Termin Entfernen
Vor jedem Termin Entfernen
Vor jedem Termin Entfernen
Weitere Erinnerung hinzufügen)
Commento di Stefan Weber del 20 luglio 2007, 05:08:
I thought while there isn't a nice way to do this through the Sunbird/Lightening UI I should add if you have setup the respective options within the Google UI you can modify the file
calGoogleUtils.js on line 516 from:
gdReminder.@method = "alert";
To:
gdReminder.@method = "sms";
Shut down Thunderbird reload and give it a whirl...
Its a _nasty_ hack but this seems the only option currently. If the provider upgrades the provider add-on you will need to make the modification again. The line numbers might change in the file. The line numbers are based on the current version 0.2.1
Commento di timp del 27 luglio 2007, 11:23:
If you really want sms alarms, I think timp's tipp is the way to go. I'll contemplate making an overlay to the event dialogs to allow changing this, but since things will change I don't think this is the way to go.
Commento di Philipp Kewisch del 31 luglio 2007, 12:25:
I need sms alarm,too.
I will try timp's tip
Commento di jarlyyn del 2 agosto 2007, 01:48:
I did this:
if(aItem.getProperty("LOCATION")=="SMS"){
gdReminder.@method = "sms";
}else{
gdReminder.@method = "alert";
}
Just write "SMS" in the location field to make the calendar alert using SMS, otherwise it uses the default "alert".
Commento di B_jammin del 18 settembre 2007, 03:17:
SMS-alerts customized:
calGoogleCalendar.js
[http://pastebin.com/f2eaea503] line 716 to 742
calGoogleUtils.js
[http://pastebin.com/f5660da67] line 500, 529, 533 to 623
******************************* Usage *******************************
In Description field (of event) add:
rsms(vStr[,vStr[,...]])
Where vStr are:
5m,10m,15m,20m,25m,30m,45m,1h,2h,3h,12h,1d,2d or 1w
given:
m = minute
h = hour
d = day
w = week
Note: Remember the limit of 5 alerts pr. event.
And: Clearly the code can be better written - but a fast hack for a urgent need made it like this...
Commento di Nickwiz del 15 ottobre 2007, 02:57: