Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
Apple Computing Products:
macOS - Apps and Programs
GUIDE: How To Achieve Fullscreen Quicktime Without Quicktime Pro
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Discerptor" data-source="post: 366306" data-attributes="member: 12177"><p>With the Perian project and others advancing the way they are, it will not be long before we are able to make Quicktime our own cute little version of Media Player Classic with a bevy of plugins that make it able to play anything and everything. To be honest, just about the only files it can't do that with are MKVs, and the Perian folks are working on that. So I've decided that since this is the case, more people will want to use Quicktime as their primary video player. The only problem with this is that many (rightfully) do not like the idea of a video player that cannot fullscreen without getting an extra $30 poured into it. True, playing in iTunes will do it, but really, who wants to go through iTunes to do this when a movie player should be able to fullscreen?</p><p></p><p>Now, to the point. If you are using a Mac, you can get Quicktime Player to play movies in full screen even if you don't have Quicktime Pro. And I'm not talking about Front Row, which will only recognize movies in the Movies folder and require going into Front Row. How, you ask? Well, <a href="http://www.apple.com/applescript/quicktime/" target="_blank">Apple has provided the solution themselves</a>. Follow these steps:</p><p></p><p>1. Click the linky.</p><p>2. Download the Script Collection.</p><p>3. Open /Applications/AppleScript/AppleScript Utility.app</p><p>4. Check the box "Show Script Menu in menu bar" (and "Show Library Scripts" if it's not automatically checked).</p><p>5. Mount the Disk Image if it's not automatically mounted.</p><p>6. In the "QUICKTIME SCRIPTS" folder that results, open /Quicktime Player Scripts/Play/Present Front Movie.scpt</p><p>7. This should open in Script Editor. Look for this block of text:</p><p></p><p><em> -- CHECK FOR QUICKTIME PRO</em></p><p><em> if QuickTime Pro installed is false then</em></p><p><em> set the target_URL to "http://www.apple.com/quicktime/download/"</em></p><p><em> display dialog "This script requires QuickTime Pro." & return & return & ¬</em></p><p><em> "If this computer is currently connected to the Internet, " & ¬</em></p><p><em> "click the “Upgrade” button to visit the QuickTime Website at:" & ¬</em></p><p><em> return & return & target_URL buttons {"Upgrade", "Cancel"} default button 2</em></p><p><em> ignoring application responses</em></p><p><em> tell application "Finder"</em></p><p><em> open location target_URL</em></p><p><em> end tell</em></p><p><em> end ignoring</em></p><p><em> error number -128</em></p><p><em> end if</em></p><p><em> </em></p><p>8. DELETE IT!</p><p>9. Save and quit Script Editor.</p><p>10. Take the file you just edited and drop it in /Library/Scripts/</p><p>11. You are now done. When you checked that box earlier, a weird S-ish symbol should have appeared on your menu bar. Now whenever you want to fullscreen a movie in Quicktime, make sure it's the front window and click that little S-ish thing and click on "Present Front Movie." This will fullscreen the movie, complete with Fullscreen controls. Very nice, eh?</p><p></p><p>For those that want to know what they just did, Apple supplies premade scripts for use with Quicktime Player. One of the, Present Front Movie, works just like Full screen. Since they're letting you download a script file, you can edit it as you see fit for your own purposes (with a program Apple puts on every Mac no less). It turns out the nice folks at Apple comment extremely thoroughly, and even labelled which part blocks you from using the feature if you don't have Quicktime Pro. You simply edited this part out, so Quicktime does not check to see if you have Quicktime Pro when running the script. You then put this Script where it needed to be for the menubar script button to show it to you. Bear in mind this does not come with the Cmd+F shortcut that Full screen in Quicktime Pro does, so you'll have to click the S-thing and click "Present Front Movie" every time you want to do this (unless you assign a keyboard shortcut of your liking to this script <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite2" alt=";)" title="Wink ;)" loading="lazy" data-shortname=";)" />).</p><p></p><p>Well, have fun with this if you've been looking for a way to fullscreen Quicktime without Front Row and don't want to shell out $30 for Quicktime Pro.</p><p></p><p>DISCLAIMER TO AVOID LOCKAGE: Moderators, if you read through the post you will see that this is not a 'hack' or anything similar and is not in any way illegal.</p></blockquote><p></p>
[QUOTE="Discerptor, post: 366306, member: 12177"] With the Perian project and others advancing the way they are, it will not be long before we are able to make Quicktime our own cute little version of Media Player Classic with a bevy of plugins that make it able to play anything and everything. To be honest, just about the only files it can't do that with are MKVs, and the Perian folks are working on that. So I've decided that since this is the case, more people will want to use Quicktime as their primary video player. The only problem with this is that many (rightfully) do not like the idea of a video player that cannot fullscreen without getting an extra $30 poured into it. True, playing in iTunes will do it, but really, who wants to go through iTunes to do this when a movie player should be able to fullscreen? Now, to the point. If you are using a Mac, you can get Quicktime Player to play movies in full screen even if you don't have Quicktime Pro. And I'm not talking about Front Row, which will only recognize movies in the Movies folder and require going into Front Row. How, you ask? Well, [URL="http://www.apple.com/applescript/quicktime/"]Apple has provided the solution themselves[/URL]. Follow these steps: 1. Click the linky. 2. Download the Script Collection. 3. Open /Applications/AppleScript/AppleScript Utility.app 4. Check the box "Show Script Menu in menu bar" (and "Show Library Scripts" if it's not automatically checked). 5. Mount the Disk Image if it's not automatically mounted. 6. In the "QUICKTIME SCRIPTS" folder that results, open /Quicktime Player Scripts/Play/Present Front Movie.scpt 7. This should open in Script Editor. Look for this block of text: [I] -- CHECK FOR QUICKTIME PRO if QuickTime Pro installed is false then set the target_URL to "http://www.apple.com/quicktime/download/" display dialog "This script requires QuickTime Pro." & return & return & ¬ "If this computer is currently connected to the Internet, " & ¬ "click the “Upgrade” button to visit the QuickTime Website at:" & ¬ return & return & target_URL buttons {"Upgrade", "Cancel"} default button 2 ignoring application responses tell application "Finder" open location target_URL end tell end ignoring error number -128 end if [/I] 8. DELETE IT! 9. Save and quit Script Editor. 10. Take the file you just edited and drop it in /Library/Scripts/ 11. You are now done. When you checked that box earlier, a weird S-ish symbol should have appeared on your menu bar. Now whenever you want to fullscreen a movie in Quicktime, make sure it's the front window and click that little S-ish thing and click on "Present Front Movie." This will fullscreen the movie, complete with Fullscreen controls. Very nice, eh? For those that want to know what they just did, Apple supplies premade scripts for use with Quicktime Player. One of the, Present Front Movie, works just like Full screen. Since they're letting you download a script file, you can edit it as you see fit for your own purposes (with a program Apple puts on every Mac no less). It turns out the nice folks at Apple comment extremely thoroughly, and even labelled which part blocks you from using the feature if you don't have Quicktime Pro. You simply edited this part out, so Quicktime does not check to see if you have Quicktime Pro when running the script. You then put this Script where it needed to be for the menubar script button to show it to you. Bear in mind this does not come with the Cmd+F shortcut that Full screen in Quicktime Pro does, so you'll have to click the S-thing and click "Present Front Movie" every time you want to do this (unless you assign a keyboard shortcut of your liking to this script ;)). Well, have fun with this if you've been looking for a way to fullscreen Quicktime without Front Row and don't want to shell out $30 for Quicktime Pro. DISCLAIMER TO AVOID LOCKAGE: Moderators, if you read through the post you will see that this is not a 'hack' or anything similar and is not in any way illegal. [/QUOTE]
Verification
Name this item. 🍎
Post reply
Forums
Apple Computing Products:
macOS - Apps and Programs
GUIDE: How To Achieve Fullscreen Quicktime Without Quicktime Pro
Top