Re: Add Scaled in QuickTime Player
Re: Add Scaled in QuickTime Player
- Subject: Re: Add Scaled in QuickTime Player
- From: bryan <email@hidden>
- Date: Wed, 01 May 2002 03:56:58 -0400
I had to use PreFab Player to execute the 'add scaled' from it's key command:
cmd-shft-opt-V
You could probably use QuicKeys or other similar app to do the same thing.
-- this script requires QuickTime Pro, Sdndi's Additions OSAX and PreFab Player
tell application "Finder"
set my_movie to (open file (choose file with prompt "Select a movie to add the sound
to."))
set my_movie_name to name of (info for my_movie)
end tell
tell application "QuickTime Player"
tell movie my_movie_name to select all
tell application "PreFab Player" to type "c" holding command
tell movie my_movie_name to close
end tell
tell application "Finder"
activate
set my_sound to (open file (choose file with prompt "Select a sound file to add."))
set my_sound_name to name of (info for my_sound)
end tell
tell application "QuickTime Player"
tell movie my_sound_name to select all
tell application "PreFab Player" to type "v" holding command & shift & option
end tell
tell application "QuickTime Player"
tell movie my_sound_name to play
end tell
"Kinsella, John R." wrote:
>
Are there any scripters out there who have experience with scripting the
>
QuickTime Player? I need help getting the Add Scaled command working. I
>
can call out add, but I can't figure out how to call the scaled option. I'm
>
hoping someone out there has a suggestion for me.
>
>
BTW, I wanted to say thanks to all who gave me suggestions on writing to a
>
file multiple times. I've got it working great now. Thanks!
>
>
John Kinsella
>
-------------
>
"The surest way to corrupt a youth is to teach him to hold in higher regard
>
those who think alike rather than those who think differently."
>
--Nietzsche
>
_______________________________________________
>
applescript-users mailing list | email@hidden
>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/applescript-users
>
Do not post admin requests to the list. They will be ignored.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.