| Support |  |       | 
Here's a "global fade" script that's been passed around for awhile.  
-----
!name Global Fade Out
# 
# Fade the output levels of all tracks slowly to zero
# This one is tricky because this pattern:
#
#   for *
#     while output > 0
#     ...
#     next
#   next
#
# will fade each track in sequence, not at the same time.
#
Variable done false
Message Starting Global Fade
while !done
  set done true  
  for *
    if output > 0
       set output output - 1
       set done false
    endif
  next
  if !done
    Wait msec 50
  endif
next
Message Global Fade Complete
end
-----
________________________________________
From: William Walker <Billwalker@baymoon.com>
Sent: Wednesday, March 5, 2014 8:35 PM
To: Loopers-Delight@loopers-delight.com
Subject: All tracks command in Mobius
Hey there Mobius Ninja's,
 I like to end pieces on a fade when i use My looperlative LP-1 , and yet 
in Mobius, there doesn't appear to me an "All Tracks"  command  I can 
initiate so that i can the reduce the feedback for a natural fade out.  I 
assume its some kind of script and someone mentioned " Focuslock" as a way 
to tell all the tracks to do something, but I would rather it be a simple 
"all track" command and not tied to something else, because sometimes I 
like to tell all the tracks to fade away (reduce feedback), sometimes to 
all drop an octave, sometimes to all go in reverse, sometimes to do the 
hocky pocky, and I don't really want to create a different command (and 
different midi preset) for each possibility, so a single command that says 
"hey all of you tracks , get ready for the next command. Is this possible?
 Thank you kindly
Bill