so i love mmm-carousel with navigation. And i have been trying many ways to move the slides handsfree. I see that a notification can trigger the slides to move, and I have been trying to do that by sending a notification using mmm-remote to do so. MMM-remote allows us to send notifications and alerts. I was wondering if anyone knows a way you trigger the slides to move by doing that? So if i send a notification with mmm-remote like slide increment, it will move the slide, and the same for slide decrement and home. I have tried using code that onkelbobby used in mmm-carousel for his button to trigger slides using mmm-buttons. Below is the code
// Handle notifications sent from MMM-Buttons Module
if (notification === "SLIDE_INCREMENT") {
this.manualTransition(undefined, 1);
this.restartTimer();
}
if (notification === "SLIDE_DECREMENT") {
this.manualTransition(undefined, -1);
this.restartTimer();
}
i was hoping that i could use this as a base so when i send a notification using mmm-remote it would do the same. however it does not. Any idea guys?