>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Сustom Buttons http://forum.mozilla-russia.org/viewforum.php?id=34 >Как сделать индикацию? http://forum.mozilla-russia.org/viewtopic.php?id=55391 |
toxa > 23-06-2012 15:01:55 |
Я хочу прицепить код кнопки Clear Cache(Firefox 3.6-4.0) к мышиному жесту. Без установленного расширения Сustom Buttons. |
okkamas_knife > 23-06-2012 15:30:57 |
toxa |
bunda1 > 23-06-2012 17:30:54 |
Выделить код Код:var cbTitle = "Cache"; // Title of the sliding alert var cbDesc = "Clear Cache"; // Instructions/Info to describe the event custombuttons.alertSlide(cbTitle, cbDesc); замени на: Выделить код Код:var alertsService = Components.classes["@mozilla.org/alerts-service;1"].getService(Components.interfaces.nsIAlertsService); alertsService.showAlertNotification("chrome://global/skin/icons/information-16.png", "Cache", "Clear Cache", false, "", null, ""); |
toxa > 23-06-2012 17:54:57 |
Вариант bunda1 предпочтительнее, он в точности повторяет поведение слайдера как при Сustom Buttons. В любом случае, okkamas_knife и bunda1 - спасибо! |