Quoting hlolli : > I'm trying to build a counter loop. But I want it to be kind of a stopwatch, > that kndx will intialize once at the beginning but will never reintialize > again. In that way Im hoping to get a stopwatch on different frequency than > normal clock (60BPM). I hope someone will understand this question :) > > kndx init 0 ;??? > if (kMetro == 1) then > kndx += 1 > endif So you initialise kndx to zero, and if it ever reaches 1 you make it 2. But it will remain at 0 for ever..... What are you trying to do? ==John ff