Read the rest of the article for the AppleScript...
(*Enter the above script in ScriptEditor, save it as an application, then drag and drop the movie to be viewed onto the script's icon and choose "screen" for a full-screen presentation.
Full-screener! by Mikey-San.
http://www.mikey-san.net/
If you make changes, add a comment below and keep the ones above!
*)
on open theMovie
tell application "QuickTime Player"
activate
set request to display dialog "Select a scaling, fool!" with icon ¬
note buttons {"normal", "double", "screen"} default button "screen"
if button returned of request is "normal" then
open theMovie
present movie 1 scale normal
else if button returned of request is "double" then
open theMovie
present movie 1 scale double
else if button returned of request is "screen" then
open theMovie
present movie 1 scale screen
end if
end tell
end open
Now, to figure out how to get MPEG-2 support without the $20 MPEG-2 module!

