| Ok, I seem to have figured it out. The following:
>if inote==36 goto Kick
>if inote==38 goto Snare
>if inote==42 goto HHat
> goto end
should read like this:
if inote==36 goto kick
if inote==38 goto snare
if inote==42 goto hhat
; goto end
I'm not sure if the caps had anything to do with it, but commenting out the
"goto end" did. All things considered, I still have a problem I'd like your
help on. When I combine my instruments together in one .orc, midified, perf
crashes on me. It does so when skipping meta events from the .mid file.
"skipping meta event 58, skipping meta event 59, skipping meta" (then it
hangs) Trouble is, I've scoured my .mid file and cleaned it up as much as
possible, but can't seem to get rid of these meta events. Comments,
suggestions anyone?
Thanks again, |