You can manually add buttons of your own liking. (just don't use the wizard). And yes you will need Girder 5.1 you can find it on this forum. Simply install into a DIFFERENT directory from your Girder 5.0 install.
You can manually add buttons of your own liking. (just don't use the wizard). And yes you will need Girder 5.1 you can find it on this forum. Simply install into a DIFFERENT directory from your Girder 5.0 install.
Ron
No support through PM
Ron, I have downloaded and installed Girder 5.1.
In the Component Manager the Event Devices component is enabled by default but
under the Miscellaneous tab there is only Caller ID, GlobalCache, RSS Feeds, SunClock and Voice.
I have tried everything I can think of to get the EventDevices configuration option to appear but no luck.
Bill
Some of my IR codes (ex. Volume +/-) would work best repeated until the button is released. Does anyone have a simple code, or should I use a script similar to the one below?
var intervalId;
$("#button").mousedown(function() {
intervalId = setInterval(do_something, 500);
}).mouseup(function() {
clearInterval(intervalId);
});
function do_something() {
// whatever
}
I'm sure it's related but the event devices component an not be disabled either. I try and restart Girder but it's still enabled on restart.
Any update on this?
Hmm looks like missing files. Unzip the attached file into the girder installation directory. After unzip make sure you have Girder\Plugins\UI\EventDevices.xml and Girder\Plugins\Treescript\EventDevices.lua
The close and restart Girder.
Ron
No support through PM
That fixed it! Thanks Ron
Brett