Does QTX not follow the preferences set from Quicktime Player 7.app? I haven't tested, but I do remember seeing many of these preference options in the QT7 pane.
Thanks a bunch for the extra effort Apple should have put forth in the first place!!
What are they thinking (or not).
Now, all we need is the option to only record a section of the screen when using the screen recording feature in QuickTime X.
set recentItems to {"None", "5", "10", "15", "20", "30", "50"}
display dialog (choose from list recentItems with prompt "Select the amount of Recent Items.")
if recentItems is "None" then
do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 0"
else if recentItems is "5" then
do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 5"
else if recentItems is "10" then
do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 10"
else if recentItems is "15" then
do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 15"
else if recentItems is "20" then
do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 20"
else if recentItems is "30" then
do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 30"
else if recentItems is "50" then
do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 50"
end if
display dialog "Please restart QuickTime Player for the preference changes to take effect." & return buttons {"Restart QuickTime Player"} default button 1 with icon alias ((path to me) & "Contents:Resources:QuickTimePlayerX_128.icns" as string)
copy the result as list to {restartButton}
if restartButton is "Restart QuickTime Player" then
tell application "QuickTime Player" to quit
tell application "QuickTime Player" to open
end if
if theButton is "Restore Defaults" then
do shell script "defaults delete com.apple.QuickTimePlayerX NSRecentDocumentsLimit"
end if
set buttonClicked to button returned of (display dialog "Please restart QuickTime Player for the preference changes to take effect." & return buttons {"Restore defaults", "Restart QuickTime Player"} default button 2 with icon alias ((path to me) & "Contents:Resources:QuickTimePlayerX_128.icns"))
if buttonClicked is "Restore defaults" then
do shell script "defaults delete com.apple.QuickTimePlayerX NSRecentDocumentsLimit"
else if buttonClicked is "Restart QuickTime Player" then
tell application "QuickTime Player" to quit
delay 3 -- give the app time to quit, otherwise the next command may fail
tell application "QuickTime Player" to activate
end if
Result:
error "Can’t make alias {alias \"Macintosh HD:Users:celebi23:Library:Scripts:Applications:QuickTime Player:Recent Items.scptd:\", \"Contents:Resources:QuickTimePlayerX_128.icns\"} into type number or string." number -1700 from alias {alias "Macintosh HD:Users:celebi23:Library:Scripts:Applications:QuickTime Player:Recent Items.scptd:", "Contents:Resources:QuickTimePlayerX_128.icns"} to number or string
what about auto play of audio files? Not just movies? And the option to only use 1 quicktime window and not have it open up in many windows?
Thanks so much for the scripts. I'm going to try out the preferences in a bit.
Is there any way that you could add the option that any new movie you open plays in the existing window instead of opening another? I love the new interface and I'd hate to not use it because they didn't finish their program.
I also noticed that there is no option to double the size of the video. You can do normal, fit to screen, and fullscreen. I checked in the view options and they go from command-1 to command-3. Not sure what the deal is with that.
Excellent, thanks again for all the work you're putting into this.
Finished version 2.1. Now you'll see a dialog to restart QuickTime when you select a button (see the previous dialog for an example)
![]()
Just follow the steps posted on my site:
- To activate the system-wide script menu item, open the "Script Editor" app (do a Spotlight search) or navigate to the "Applications/Utilities" folder. Open the Preferences & click the "Show Script menu in menu bar" check box
- Download the dmg here
- Copy the "QuickTime Player" folder, from the mounted dmg, to the "Macintosh HD/Users/'your user name'/Library/Scripts/Applications" folder.
(If no "Scripts" folder exists in this location, create one)
See my website for more info
http://web.me.com/celebi23/QuickTimeXScripts/Main.html
Any way to boost the framerate for QuickTime X Screen Recordings? 12fps isn't very much. I'd much rather have 60 or 30fps.
Yes, 30 is needed.