|
Script Summary:
A demonstration of the script at http://userscripts.org/scripts/show/58203 |
This script has no discussions. |
This script has no reviews. |
This script is a demonstration of the Growl tool for Windows script in action.
Requirements
In order to see Growl notices using this method, you will need to have installed the following:
- Firefox
- Greasemonkey add-on for Firefox
- Growl/GNTP add-on for Firefox
- Growl for Windows (direct download) or a development build of Growl for OSX
Setup: (you only have to do this once)
- Install Growl for Windows (direct download) or a development build of Growl for OSX
- Start Growl. You may want to open Growl once it starts and turn on auto start.
- Install Growl/GNTP add-on for Firefox
- Restart Firefox
- Go to the Ikariam Options page and scroll down to the Ikariam Notifier section
- Click on "test" next to the Growl section and you should see a test notification pop up.
- Customize the notification settings under "Applications" and "Displays" in Growl if desired
Source
// ==UserScript==
// @name GrowlDemo of tools for Windows
// @namespace PhasmaExMachina
// @author PhasmaExMachina
// @description A demonstration of the script at http://userscripts.org/scripts/show/58203
// @include *
//
// @require http://userscripts.org/scripts/source/58203.user.js
//
// ==/UserScript==
Growler.addNoticeType('greeting', 'Greeting from Hal');
Growler.addNoticeType('question', 'Question from Hal');
Growler.register('HAL 9000 Script', 'http://i763.photobucket.com/albums/xx278/PhasmaExMachina/icons/hal_icon.png');
Growler.growl('greeting', 'Hal 9000', 'Hello Dave.');
setTimeout(function() {
Growler.growl('question', 'Hal 9000', 'What are you doing Dave?');
}, 2000);







