09-27-2022 01:52 AM
Hi all
Theese days lots of customers want to save energi , and in that case they actually activate the system standby mode
when leaving the meeting. This is activated by three clikc on the Touch 10. Have anybody made an macro for activating standby mode by one click (red dot ish) on the touch 10 ?
Thanks in advance
Regards
Claus Pedersen
09-28-2022 06:45 AM
09-28-2022 04:47 PM
Yes - just use the UI Extensions Editor to create a button (in my example, I called it "Standby_Button").
Then use a macro such as this one:
import xapi from 'xapi';
xapi.event.on('UserInterface Extensions Panel Clicked', (event) => {
if (event.PanelId === 'Standby_Button') {
xapi.command('Standby Activate');
}
});
Please remember to mark helpful responses and to set your question as answered if appropriate.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide