Metronome?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Metronome?
Wow - it's been a long time since I've looked at Revolution (or Metacard!). It's great to see how much it's grown and improved. Anyway here's my question:
Has anyone built a metronome? Basically I want to build a metronome to play off a laptop with a graphical display (i.e. flashing red & green LEDs)and adjustable digital display. It should also support playlists - basically made up of song titles and the associated meters.
The playlist items would be easily added, edited, and removed.
Why? I play in several bands and have to call out the count for each tune within <3-5 seconds. Programmed playlists for different occassions make this a snap. I currently use a small electronic metronome but I've used up all its memory and programming lists on it is a pain. A laptop solution would provide the flexibility I need.
Anyone come across anything like this?
Has anyone built a metronome? Basically I want to build a metronome to play off a laptop with a graphical display (i.e. flashing red & green LEDs)and adjustable digital display. It should also support playlists - basically made up of song titles and the associated meters.
The playlist items would be easily added, edited, and removed.
Why? I play in several bands and have to call out the count for each tune within <3-5 seconds. Programmed playlists for different occassions make this a snap. I currently use a small electronic metronome but I've used up all its memory and programming lists on it is a pain. A laptop solution would provide the flexibility I need.
Anyone come across anything like this?
moxman,
There is a MikMod external now, for Mac OS X, which would be perfect for this task. You can find it at
http://andregarzia.com/revmikmod.html
Of course, you can also use QuickTime, but that will probably give you less accuracy.
You may also embed sounds inside Revolution and use the play audioClip command. You might get good results with that, if the clip is short.
Making a basic metronome should be fairly easy.
This gives you a very basic metronome with 80 beats/minute. You can turn the button in to a checkbox and set the hilite to cSwitch (or the reverse) and add a slider to change the speed (replace 750 with a global variable or user property).
Best,
Mark
There is a MikMod external now, for Mac OS X, which would be perfect for this task. You can find it at
http://andregarzia.com/revmikmod.html
Of course, you can also use QuickTime, but that will probably give you less accuracy.
You may also embed sounds inside Revolution and use the play audioClip command. You might get good results with that, if the clip is short.
Making a basic metronome should be fairly easy.
Code: Select all
on mouseUp
set the cSwitch of me to not (the cSwitch of me is true)
ticktack
end mouseUp
on ticktack
if the cSwitch of me is true then
play audioClip id 20001
send "ticktack" to me in 750 millisecs
end if
end ticktack
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
This is a nice one: http://www.metronomeonline.com/
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
-
- Posts: 179
- Joined: Sat Apr 08, 2006 11:08 pm
- Contact:
Re: Metronome?
Does anyone know where to find this metronome stack. or where to find Mark Smith?Mark Smith wrote:I've uploaded a basic metronome stack to RevOnline:
Name: Metronome
User: Mark Smith
Category: General
It uses the 'beep' command, so if you have that set to some long sound, it might not be ideal.
Thanks in advance
Re: Metronome?
Hi,
There are multiple Mark Smiths. I'm not entirely sure about it, but I believe that the Mark Smith you are looking for is the same Mark Smith as as on this Wikipedia page.
I can't find the Metronome stack either.
Best,
Mark
There are multiple Mark Smiths. I'm not entirely sure about it, but I believe that the Mark Smith you are looking for is the same Mark Smith as as on this Wikipedia page.
I can't find the Metronome stack either.
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode