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: kai <email@hidden>
- Date: Sat, 16 Sep 2006 01:29:11 +0100
On 16 Sep 2006, at 01:14, Peter Baxter wrote:
Yes, I've got "Pro" but it does not help much. I have a look at
the file with UIElementInspector and then Interface Builder, but
the slider definitely has no name. I guess I'm stuck.
You don't need to use a name, Peter. Just try Martin's "Pro"
variation - perhaps something like this modified version of my
original 'shift_pitch' handler:
-------------------
to shift_pitch by v
tell application "QuickTime Player" to set show av controls window
to false
tell application "System Events" to tell process "QuickTime Player"
set frontmost to true
keystroke "k" using {command down}
tell window "A/V Controls"
repeat until exists
delay 0.1
end repeat
if exists group 3 then (* QuickTime Pro *)
set value of slider 5 of group 3 to v
else (* QuickTime Regular *)
set value of slider 4 of group 1 to v
end if
end tell
end tell
tell application "QuickTime Player" to set show av controls window
to false
end shift_pitch
-------------------
---
kai
_______________________________________________
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