Avid Pro Audio Community

Avid Pro Audio Community

How to Join & Post  •  Community Terms of Use  •  Help Us Help You

Knowledge Base Search  •  Community Search  •  Learn & Support


Avid Home Page

Go Back   Avid Pro Audio Community > Legacy Products > Pro Tools TDM Systems (Mac)

Reply
 
Thread Tools Search this Thread Display Modes
  #11  
Old 02-18-2007, 07:04 AM
smlworld smlworld is offline
Member
 
Join Date: Dec 1969
Posts: 536
Default Re: A new & free helper application for ProTools

i am curious, why is your app removing apple audiomidi prefs?

thanks

scott
__________________
[img]/images/graemlins/tongue.gif[/img] <<<<< in the psychiatric emergency handbook this is bad news.
Reply With Quote
  #12  
Old 02-18-2007, 08:49 AM
studiojimi's Avatar
studiojimi studiojimi is offline
Member
 
Join Date: Dec 1969
Location: Los Angeles, CA
Posts: 3,115
Default Re: A new & free helper application for ProTools

Quote:
Are you all really trashing your prefs so much you need an app do to it? I'd go as long as a year without trashing.

on a side note, when you DO trash, do you still need to restart?

Tim
kinda really makes the software suspect doesn't it

ok guys i bought a G5 dual 7.2 with 8 gig of RAM i'll be getting it going this week and back to work and if i still have the same problems i'll resurrect my PROBLEMS PROBLEMS PROBLEMS thread

i've had to downgrade to HD3 due to reduces slots in the G5 under the slot capacity of the G4 in order to have a digi approved puter....i guess i can sell the Accel card to pay for the computer...who wants it?

what a nice labor of love to make this macro or whatever it is....thanks for sharing i can't wait to try it....can you add in one that restores fresh audio "sweet" favorites?
__________________
CAZADOR RECORDING
PT10.3.10/HD6/192w16in/MTN.LION OS 10.8.5 / Westmere MacPro 8 Core W/20gRAM MAGMA-PE6R4/TDM&RTAS/WAVES Platinum/UA/Eventide Plugs/I usually record at 88.2
With GOD as my partner. . . I need to make my plans LARGER.

Reply With Quote
  #13  
Old 02-18-2007, 10:38 AM
JC925602 JC925602 is offline
Member
 
Join Date: Nov 2000
Location: Montreal
Posts: 769
Default Re: A new & free helper application for ProTools

Quote:
Are you all really trashing your prefs so much you need an app do to it? I'd go as long as a year without trashing.
No I don't trash my prefs often, but I work for more than one studio (6 ProTools studios, 9 users), and in tree of them, nobody speak English so I cannot tell them over the phone "Go read the troubleshooting tread on the DUC".

And if I'm not home (ex: Working on a show setup at 2 am) I cannot start Chicken of the VNC and take control of their Mac and do it for them (and I only have one of the studio setup for that).

So I wrote those scripts.
Quote:
on a side note, when you DO trash, do you still need to restart?
I rarely do. It's an old reflex from OS 9, as reinstalling the OS once a month used to be on Windows 95 for some people.

Sometime just closing the OS session is OK.
Quote:
i am curious, why is your app removing apple audiomidi prefs?
I wrote those scripts at the first OS X version of ProTools, and audiomidi pref was on the troubleshooting thread. It's not there anymore, so I will move it to an independent button.
Quote:
Hi, excellent app. Can you add in "com.digidesign.CoreAudioManager.plist" to be trashed as well? This has caused many a problem when running Logic with DAE
Yes

I will also add on another button the "Volumes" folder in MacHD > Library > Application Support > Digidesign > Databases. I forgot to add it in the script 2 years ago, and I did not miss it. Plus I think it hold the "catalog" that I created in the digibase, and I don't want to lose them (there will be a warning when you click on that one)

I transformed these scripts into an application using Project Builder from the apple developer tools because I wanted to learn it. It took me half an hour to find where to change the version number as the french documentation I have for AppleScript Studio date back to 2004.

As I learn more AppleScript I will add a button for:
It is working well now, so make a copy of all my prefs so I can restore them later and one for:
I'm having problem right now so let's try a restore of those prefs to see if it cure all those problems
I will also add a French, Italian, Spanish, Polish translation.

History: I wrote those scripts at the first OS X version of ProTools, it was a simple script.
Tell finder to delete this and that file and delete Digi database on all disk.

Then came OS X 10.3 and the Digi Database script didn't work because of a new Network volume that the Finder was seeing, and ProTools was naming it's pref with the version number.

In a discussion on the DUC Tiago Silva wrote the actual Delete database script

tell application "Finder"
set disk_list to disks
repeat with i in disk_list
set folder_list to every folder of i
repeat with j in folder_list
if name of j is "Digidesign Databases" then delete j
end repeat
end repeat
end tell

So it's a simple copy and paste, but it gave me the basic knowledge to face the changing name of the prefs (ProTools v6.4, 6.7, 7.xx preferences) with this script

tell application "Finder"
set file_list to every file of folder "Preferences" of folder "Library" of home
repeat with i in file_list
if name of i starts with "Pro Tools" and name of i ends with "Preferences" then delete i
end repeat
end tell

Then, yesterday, I opened the book to learn how to integrated them into one AppleScript Studio application, went to the theatre, then made a version 1.1 with 5 independent buttons because Andre Knecht asked for it.

I will not transform this application into a 20 windows with 5 tabs each and a 10cm thick book to cover all troubleshooting options. It will stay a simple one window with 3 big buttons for the non geek ProTools users, and I will add translations for all those users who can't really read English well (for that I really like the command-control-D place the mouse over a word and see it's definition).

If you have ideas or some script that you want in this little app, then ask for it, and I will look into it.

JC
Reply With Quote
  #14  
Old 02-18-2007, 11:59 AM
AG AG is offline
Member
 
Join Date: Apr 1999
Location: LA, CA
Posts: 186
Default Re: A new & free helper application for ProTools

Thanks JC, this is cool.
Reply With Quote
  #15  
Old 02-18-2007, 01:26 PM
JC925602 JC925602 is offline
Member
 
Join Date: Nov 2000
Location: Montreal
Posts: 769
Default Re: A new & free helper application for ProTools

version 1.2 is out

Delete ProTools Pref and Database

new button for com.digidesign.CoreAudioManager.plist
moved com.apple.audio.AudioMIDISetup.plist out of the main scripts
Added version history

JC
Reply With Quote
  #16  
Old 02-18-2007, 02:59 PM
Willard Willard is offline
Member
 
Join Date: Jul 2002
Location: Los Angeles, CA
Posts: 143
Default Re: A new & free helper application for ProTools

Nice scripts JC925602! You could also build this with Automator and then have the actions sitting on your tool bar or, make it a "workflow," that is only accessed when you control click. Automator works for all programs that have the requisite "handles;" the finder, Filemaker Pro, iTunes etc. But not Pro Tools itself.

Kevin
__________________

Pro Tools Ultimate 2023.12.1.138 | Mac Studio M1 Max (64 GB) | Ventura 13.6.3 | Clarett+ 2Pre


Pro Tools HD 9.0.6 | HD6 PCIx | Mac Pro5,1 (mid 2010) Westmere 3.33 GHz Hexacore (32 GB) | Lion 10.7.5 | Magma PE6R4-I | 192 i/o |

Pro Tools HD 9.0.6 | HD3 PCIe | MacPro5,1 (mid 2010) Westmere 3.33 GHz Hexacore (32 GB) | Lion 10.7.5 | Apogee Rosetta 200 | C|24

Reply With Quote
  #17  
Old 02-18-2007, 05:12 PM
Chief Technician Chief Technician is offline
Member
 
Join Date: Dec 2001
Location: NYC
Posts: 6,981
Default Re: A new & free helper application for ProTools

Quote:
Nice scripts JC925602! You could also build this with Automator and then have the actions sitting on your tool bar or, make it a "workflow," that is only accessed when you control click. Automator works for all programs that have the requisite "handles;" the finder, Filemaker Pro, iTunes etc. But not Pro Tools itself.
Does it? I tried writing an automator action that moved a plug-in from the plug-ins folder to the plug-ins (unused) folder, and it didn't move it, it copied it. So, I thought, its an automator bug, I'll add a step to copy and then delete. Well, guess what it did? It didn't copy then delete, it just deleted it! This was all in the Finder, which of course is supposed to be automatable.

If you're going to do this with Automator, please test it rigorously. Automator has issues.
__________________
Jonathan S. Abrams, CEA, CEV, CBNT
Apple Certified - Technical Coordinator (v10.5), Support Professional (v10.6 through v10.10)
Reply With Quote
  #18  
Old 02-18-2007, 05:43 PM
Willard Willard is offline
Member
 
Join Date: Jul 2002
Location: Los Angeles, CA
Posts: 143
Default Re: A new & free helper application for ProTools

Yes absolutely!! Automator has bugs and should be thoroughly tested. But for simple tasks like this it can save a minute or two. You just have to learn it's "quirks." I can't program apple script so thanks again to JC925602 for writing and posting this app.

Kevin
__________________

Pro Tools Ultimate 2023.12.1.138 | Mac Studio M1 Max (64 GB) | Ventura 13.6.3 | Clarett+ 2Pre


Pro Tools HD 9.0.6 | HD6 PCIx | Mac Pro5,1 (mid 2010) Westmere 3.33 GHz Hexacore (32 GB) | Lion 10.7.5 | Magma PE6R4-I | 192 i/o |

Pro Tools HD 9.0.6 | HD3 PCIe | MacPro5,1 (mid 2010) Westmere 3.33 GHz Hexacore (32 GB) | Lion 10.7.5 | Apogee Rosetta 200 | C|24

Reply With Quote
  #19  
Old 02-18-2007, 08:51 PM
francois's Avatar
francois francois is offline
Member
 
Join Date: May 2004
Posts: 874
Default Re: A new & free helper application for ProTools

Thanks JC
__________________
PT 2023-12 ultimate -HDX1- OSX 13.6.1- MacPro 7.1
- D-command 24- Trinnov Dmon6
Reply With Quote
  #20  
Old 02-20-2007, 12:07 AM
Michael James Michael James is offline
Member
 
Join Date: Oct 2005
Location: Petaluma, CA
Posts: 132
Default Re: A new & free helper application for ProTools

JC, you might consider moving DigiSetup.OSX away from the first button. I've found that I never need to trash it, but about once a week I trash the following, and all is well.

Pro Tools YYY Preferences
com.digidesign.protoolsYYY.plist
DAE Prefs
All Digidesign Databases folders on system and audio drives

My setup uses 4x 192 I/Os loaded with DA exp. cards and a Big Ben clock, so resetting DigiSetup.OSX, one interface at a time, is time-consuming. Therefore, it makes sense to give it a separate button if it rarely needs to be reset.

Thank you for making this application!
__________________
Michael James
michaeljamesproducer.com
www.IndieProMix.com

System info: PT Ultimate 2019.6 HDX, Mac Pro 5,1 Westmere, OS 10.13.3, UAD2 Octo PCIe, 2x Lynx Aurora16 w LTHD cards, 1x Lynx Aurora(n) 32 ch analog I/O DigiLink, 4x Dangerous Convert-8 (AES via Lynx), Dangerous Convert-2 (AES via Lynx), Dangerous Vonvert AD+, Apogee Big Ben, SSD boot drive, external FW800 audio drives
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't find Pro Tools 8 prefs to delete in Mountain Lion Cartoonguy 003, Mbox 2, Digi 002, original Mbox, Digi 001 (Mac) 0 08-18-2012 09:48 AM
trash database and prefs in P T 8 ??? not2tech Pro Tools TDM Systems (Mac) 1 10-06-2009 12:32 PM
I delete prefs and the Database open session then system crashes 8.0.1 philip888 Pro Tools M-Powered (Win) 8 09-10-2009 06:42 AM
Free Pro Tools Application - Delete Prefs/Database JC925602 Pro Tools M-Powered (Mac) 1 03-21-2007 03:04 AM
Free Pro Tools Application - Delete Prefs/Database JC925602 003, Mbox 2, Digi 002, original Mbox, Digi 001 (Mac) 5 03-18-2007 11:20 AM


All times are GMT -7. The time now is 11:26 AM.


Powered by: vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Limited. Forum Hosted By: URLJet.com