If you do a EOS you can do this here -->
https://milovana.com/eos/editor/
For the Metronome you need an Audio File. You can upload this in the Editor, just go to files and click upload.
Make sure to activate Audio in the Settings of your Tease, by default it's off.
My way to do it:
- Create the page
- add the Audio in first position --> set an identifier like 'fast'
- make an eval that stops the Audio, so it's not playing from the beginning. Code: Sound.get('fast').stop();
- do all the Images and what you like
- if you come to the point where you want to add a timer with the metronome sound, you should strat the sound so it gets executet before the timer starts. Otherwise it starts when the timer is done.
- To start an Audio you need an Eval again --> Sound.get('fast').play();
- then you make the timer (until the timer is done, there will be nl further execution of commands)
- Stop the Sound again with an Eval Sound.get('fast').stop();
I hope this helps you or is what you where looking for :)
Also i hope it works with my crap English
If you have some more Questions feel free to ask
