Hello, happy Friday to all!
So I'm back trying to get Mobius set up and going again. I installed Build 41 but things weren't working so for the sake of immediacy, went back to Build 28 and although most everything is working there, some of my scripts aren't working there either.
Kinda feel like I need to start this rabbit hole of the new builds starting with Build 41 but just not sure how long it will take.
Can I ask about this script and why it is isn't working in Build 28?
!name WLSolo03
!autoload
For 2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32
Mute
next
for 1
Mute
next
Wait Loop
Next
For 2,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32
Mute
next
for 1
Mute
next
What this was doing was soloing Track 3 for the remainder of the loop and then unsoloing. I have one of these for all 32 tracks.
Why not use Solo, you might ask? Well, I could never get its behavior to work as one might expect but Mute always worked.
Why do Track 1 separate, you might ask? I could never get Track 1 to work without doing it separately.
Calling out tracks like this works in Build 28. I have a FocusLockAll script that does this that still works. This one:
!name FocusLockALL2
!autoload
for track 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32
if focus true
set focus false
else
set focus true
endif
next
for track 1
if focus true
set focus false
else
set focus true
endif
next
So if you all tell me to stop this nonsense and move to Build 41, will totally understand! Will need help converting all my scripts however. But if I can get these Mute and Solo scripts working then I can have a Build 28 folder that works and keep playing and then have separate new Build folder for porting over to new builds and then move over to that one when everything is working. Any thoughts/insights?