Action Scheduler Not Ticking

Hey guys, long time no post. Been working away in Wappler trying to get a big project finished and have missed ya’ll. :slight_smile:
I’m trying to create a simple timer and it appears that the action scheduler is not “ticking”. Nothing happens, I tried setting to no auto run and triggering it manually but it doesn’t appear to do anything. When I render {{varTimer.value}} it stays at 0
I also made sure that the /dmxAppConnect/dmxScheduler/dmxScheduler.js file is included on the layout page. Been a while since I’ve messed with the action scheduler so maybe I’m missing something simple?

<dmx-value id="varTimer" dmx-bind:value="0"></dmx-value>
        <dmx-scheduler id="schedulerTimer" dmx-on:tick="varTimer.setValue((varTimer.value+1))"></dmx-scheduler>

Thanks in advance,

Twitch

Hi Twitch,

It could be an issue with the missing `delay'.

<dmx-scheduler id="schedulerTimer" delay="15" dmx-on:tick="varTimer.setValue((varTimer.value+1))"></dmx-scheduler>

Thank you @guptast ….figured it was something simple….:man_facepalming:

No worries at all - I've had plenty of those moments myself :slight_smile:

1 Like