Re: Modifying Pitch Shift in QuickTime Player (was: no subject)
Re: Modifying Pitch Shift in QuickTime Player (was: no subject)
- Subject: Re: Modifying Pitch Shift in QuickTime Player (was: no subject)
- From: Stan Cleveland <email@hidden>
- Date: Thu, 14 Sep 2006 18:14:07 -0700
- Thread-topic: Modifying Pitch Shift in QuickTime Player (was: no subject)
On 9/14/06 5:31 PM, kai wrote:
> Right - the dictionary was my first port of call, too. I don't know
> the history of the controls, but those 3 unnamed sliders look as
> though they might have been bolted on after the original, named set.
> The sequence of UI elements bears no resemblance to the order in
> which the sliders appear in the window, either. :-/
>
> <snip>
>
> In QuickTime Player 7.1.1, all seven sliders can be controlled via
> GUI scripting (although, wherever possible, it obviously makes more
> sense to script QuickTime Player direct). Looks like that
> accessibility may have become broken in either 7.1.2 or 7.1.3. :-(
My setup (on a 1 GHz G4 PowerBook):
System Version: Mac OS X 10.4.7 (8J135)
AppleScript: 1.10.7
iTunes: 7.0
QuickTime Player: 7.1.3
System Events: 1.3.1
This code correctly shifts pitch OMM:
tell application "QuickTime Player"
set show av controls window to true
end tell
tell application "System Events"
tell process "QuickTime Player"
set frontmost to true
tell slider 4 of group 1 of window 1
set value to -300 -- in range plus/minus 400
end tell
end tell
end tell
Perhaps the Intel brain inside Martin's MacBook makes a difference?
Stan C.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden