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 10
Register FAQ Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 06-27-2013, 01:39 AM
:Rob: :Rob: is offline
Member
 
Join Date: Jan 2009
Location: Battlestation
Posts: 46
Default Audiosuite Render key shortcut

Is there a shortcut for the software button "Render" in Audiosuite?
Google it do not bring back meaningful results. Any way to assign it to a hardware key?
Thanks!
Reply With Quote
  #2  
Old 06-27-2013, 07:52 AM
albee1952's Avatar
albee1952 albee1952 is offline
Member
 
Join Date: May 2004
Location: Norwich, CT
Posts: 39,330
Default Re: Audiosuite Render key shortcut

None that I am aware of. I just mouse-click on the render button
__________________
HP Z4 workstation, Mbox Studio
https://www.facebook.com/search/top/...0sound%20works


The better I drink, the more I mix

BTW, my name is Dave, but most people call me.........................Dave
Reply With Quote
  #3  
Old 06-28-2013, 01:56 AM
Oliver M Oliver M is offline
Member
 
Join Date: Dec 1969
Location: Europe
Posts: 1,107
Default Re: Audiosuite Render key shortcut

Quote:
Originally Posted by :Rob: View Post
Is there a shortcut for the software button "Render" in Audiosuite?
Google it do not bring back meaningful results. Any way to assign it to a hardware key?
Thanks!
There is none. However there a several workarounds, are you on Mac or Windows?


Oliver
Reply With Quote
  #4  
Old 08-23-2013, 10:27 PM
shtepy shtepy is offline
Member
 
Join Date: Jun 2006
Location: North Hollywood, CA. USA
Posts: 18
Default Re: Audiosuite Render key shortcut

I use Quick Keys on a mac and program a mouse click on the Render Button. I leave the Audiosuite window open, it can't be moved or you'll have to reprogram the Quick Key command. I also create a Window configuration in case the Audiosite window gets closed or moved.
__________________
Stephen

Mackbook Pro 13" I5
4GB Ram
Mac OS 10.8.2 (Mountain Lion)
Pro Tools 10.3.3
Mbox 2
Reply With Quote
  #5  
Old 03-11-2016, 05:13 PM
Goombot Goombot is offline
Member
 
Join Date: Oct 2012
Location: Burbank, CA
Posts: 434
Default Re: Audiosuite Render key shortcut

This is a question to an old post... so if you leave the audio suite window in the exact same spot (like recalling it with a Window Configuration) you can program it with Quickeys? Is that what you're saying?
Reply With Quote
  #6  
Old 03-12-2016, 01:37 PM
Oliver M Oliver M is offline
Member
 
Join Date: Dec 1969
Location: Europe
Posts: 1,107
Default Re: Audiosuite Render key shortcut

Quote:
Originally Posted by shtepy View Post
I use Quick Keys on a mac and program a mouse click on the Render Button. I leave the Audiosuite window open, it can't be moved or you'll have to reprogram the Quick Key command. I also create a Window configuration in case the Audiosite window gets closed or moved.
You can avoid that by using AppleScript. The window location doesn't matter.

Here is the code to click the Render button in an AudioSuite window for Pro Tools versions 10.3 to 12.4.

HTML Code:
set returnValue to missing value

try
	if ptVersionCheck("12.2") then
		activate application "Pro Tools"
		tell application "System Events"
			tell process "Pro Tools"
				tell (1st window whose name contains "Audio Suite") to click button "Render" -- Render button
			end tell
		end tell
		
	else if ptVersionCheck("11.1") then
		activate application "Pro Tools"
		tell application "System Events"
			tell process "Pro Tools"
				tell (1st window whose name contains "Audio Suite") to click button "process" -- Render button
			end tell
		end tell
		
	else if ptVersionCheck("10.3") then
		activate application "Pro Tools"
		tell application "System Events"
			tell process "Pro Tools"
				tell (1st window whose name contains "AudioSuite") to click button "process" -- Process button
			end tell
		end tell
		
	else
		-- Display error message
		tell application "Pro Tools"
			activate
			display dialog "This action requires Pro Tools 10.3 or higher." giving up after 10 with title "Incompatible Pro Tools Version" buttons {"Cancel"} default button "Cancel"
		end tell
	end if
	
on error
	return returnValue
end try

on ptVersionCheck(referenceVersion)
	set proToolsVersion to version of application "Pro Tools"
	considering numeric strings
		return (proToolsVersion as text) is greater than or equal to referenceVersion
	end considering
end ptVersionCheck

Save this code into a new Apple Script Editor document or use it in QuicKeys.
Reply With Quote
  #7  
Old 03-12-2016, 03:26 PM
Goombot Goombot is offline
Member
 
Join Date: Oct 2012
Location: Burbank, CA
Posts: 434
Default Re: Audiosuite Render key shortcut

Wow. Thank you for this. What else do I need to do in order to get it to work? I'm a bit unfamiliar with working with AppleScripts although I know a little bit. I've opened the Script Editor, saved it as a script. I have it in my dropdown menu now. Once I open ProTools, I just created a quick test session. I created one track, imported one sound, selected the clip, opened the Gain plug in and ran the script and nothing happened. Can you let me know what I might be missing or what I might be doing wrong? Thank you. I really appreciated this. chris
Reply With Quote
  #8  
Old 03-12-2016, 03:48 PM
Oliver M Oliver M is offline
Member
 
Join Date: Dec 1969
Location: Europe
Posts: 1,107
Default Re: Audiosuite Render key shortcut

Quote:
Originally Posted by Goombot View Post
Wow. Thank you for this. What else do I need to do in order to get it to work? I'm a bit unfamiliar with working with AppleScripts although I know a little bit. I've opened the Script Editor, saved it as a script. I have it in my dropdown menu now. Once I open ProTools, I just created a quick test session. I created one track, imported one sound, selected the clip, opened the Gain plug in and ran the script and nothing happened. Can you let me know what I might be missing or what I might be doing wrong? Thank you. I really appreciated this. chris
The best way of using AppleScripts is to use FastScripts, you can assign shortcuts to each script and they override existing shortcuts of the app you run them in.
Its free for up to 10 scripts.

As for the code not working, it could be that Apple Script Editor is not switching fast enough to Pro Tools.

Add this in front of the code (right at the top):

activate application "Pro Tools"
delay 0.1

This should be obsolete if you trigger the script from FastScripts.
Reply With Quote
  #9  
Old 03-12-2016, 03:52 PM
Goombot Goombot is offline
Member
 
Join Date: Oct 2012
Location: Burbank, CA
Posts: 434
Default Re: Audiosuite Render key shortcut

ok I'll try it and get back. Thank you.
Reply With Quote
  #10  
Old 03-12-2016, 04:01 PM
Oliver M Oliver M is offline
Member
 
Join Date: Dec 1969
Location: Europe
Posts: 1,107
Default Re: Audiosuite Render key shortcut

Quote:
Originally Posted by Goombot View Post
ok I'll try it and get back. Thank you.
You can send me a private message and we'll figure it out and continue this conversation via E-Mail.
Once we know what the problem was we can update this thread accordingly.
Reply With Quote
Reply


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
Why do Loudness analysers render in Audiosuite? Felix Rost Post - Surround - Video 21 06-04-2016 07:06 AM
AudioSuite Render Behavior Peter Baird Post - Surround - Video 4 11-22-2012 12:56 AM
Artifacts on Audiosuite Render on Pro Tools 10 Lou Garcia macOS 3 06-19-2012 01:44 PM
Cant render Autotune TDM 7 Audiosuite in PT10HD belolab Pro Tools TDM Systems (Mac) 4 12-16-2011 02:30 AM
Render audiosuite without expanding handles? SirLexelot Post - Surround - Video 9 07-04-2005 01:41 AM


All times are GMT -7. The time now is 01:00 AM.


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