If you are currently required to hit your microphone on and off button a
few times in order to get all your Vocola files loaded, following is a
solution. This solution simply makes sure the new Python files are in
the right place before things get started. Make a backup of your
original file before you start.
Bring the following file up in your editor:
C:\Program Files\NatLink\macrosystem\_vocola_main.py
Find the following method:
def initialize(self):
Add the following line to that method:
self.loadAllFiles('')
The method should now look as follows:
def initialize(self):
self.load(self.gramSpec)
self.activateAll()
self.setNames()
self.loadAllFiles('')
# Don't set callback just yet or it will be clobbered
self.needToSetCallback = 1
----
Thanks,
Matt