FIXME: Broken English

Timer Plugin Version 0.0.1

* Summary

This plugin provides to run scheduled commands.

Notice: This is pilot version, no config UI,
        controled by only macro.


* Install

Just copy "timer.dll" to kplugins folder.


* Uninstall

Delete "timer.dll" in kplugins folder.


* How to use

** regist timer

pluginmsg(timer, "SetTimer", $interval, $command);

$interval is seconds.
$command is command string like "ID_NAV_BACK" or "macros(Search)".

** unregist timer

pluginmsg(timer, "KillTimer", $command, "");

** unregist all timers

pluginmsg(timer, "ClearTimer", "", "");

** example

OnStartup{
...
pluginmsg(timer, "SetTimer", 600, "macros(LetsStudy)")
...
}
LetsStudy{
alert("Let's study.", "K-Meleon", QUESTION)
}


* Limits

- Maximum number of timer is 10.
- To regist same command with different interval isn't allowed.
- This plugin sends message to last activated K-Meleon window.


* License

This software is distributed under GPL (see COPYING).
