Merging audio externally
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
David,
I think you start to get into rev. I bear with you, I can not count the number of times I stared at a script or a stack and did not find what was wrong.
You might want to look into the debugger, often if you look at what the variables actually contain it gives you a hint of what is wrong with the script.
cheers
Bernd
I think you start to get into rev. I bear with you, I can not count the number of times I stared at a script or a stack and did not find what was wrong.
You might want to look into the debugger, often if you look at what the variables actually contain it gives you a hint of what is wrong with the script.
cheers
Bernd
Oh please someone help!!!
I've spent hours trying to figure out what is happening. My tButtonlist is not sorting itself into numeric order and I cannot figure out why? I have Test field that displays what tButton list contains and no matter what I do noting will work. Load in the blank wav files from the included library and
you will see how they display out of order.
http://www.errolgray.com.au/Teststack.zip
Any help would be greatly appreciated.
Thanks
Bidge

I've spent hours trying to figure out what is happening. My tButtonlist is not sorting itself into numeric order and I cannot figure out why? I have Test field that displays what tButton list contains and no matter what I do noting will work. Load in the blank wav files from the included library and
you will see how they display out of order.

http://www.errolgray.com.au/Teststack.zip
Any help would be greatly appreciated.
Thanks
Bidge
Bidge,
change
change the this line in the button script of "ChooseAudioFiles"
the difference is short name instead of name.
Than it works
regards
Bernd
change
change the this line in the button script of "ChooseAudioFiles"
Code: Select all
if name of button i contains "Track" then put the short name of button i & comma after tbuttonList
the difference is short name instead of name.
Than it works
regards
Bernd
Hello Bernd.
Thanks for replying mate...I tried adding that .line of code but it still does not work?
I have updated the link and put a few more files in the library. Now it starts at 20 instead of 1
Have a look.
http://www.errolgray.com.au/Teststack.zip
Cheers
Bidge
Thanks for replying mate...I tried adding that .line of code but it still does not work?
I have updated the link and put a few more files in the library. Now it starts at 20 instead of 1

http://www.errolgray.com.au/Teststack.zip
Cheers
Bidge
Bidge,
add this to the script:
just to show that it is now working, for me no problem
what exactly is not working when you changed it to the short name?
regards
Bernd
add this to the script:
Code: Select all
replace comma with return in tButtonList
put tButtonList into field "test"
end mouseUp
what exactly is not working when you changed it to the short name?
regards
Bernd