|
|
Add step forward/backward feature to QuickTime Player
I have this script working in both Quicktime X and Quicktime 7, making the adjustments recommended here for Quicktime X, but am finding that sometimes the script (which I have assigned to a hotkey) pauses Quicktime X when the hotkey is pressed, instead of continuing to play (the playhead does go back 10 seconds though) and wonder if anyone else is experiencing this, and if there is anything that can be done. Using terminal I have set Quicktime X to play files automatically. I am not sure if this is relevant to this issue.
Add step forward/backward feature to QuickTime Player
i had the same issue. inserting:
play front document
as the line before the end tell line solved it for me.
Here's a fix for that
harywilke's suggestion actually prevents the feature where you can jump trough the movie in pause mode and it stays in pause mode.
To get all the fixes for QuickTime Player X and none of the issues, use this:
property step : 10 tell application "QuickTime Player" set playerPosition to (current time of front document) + step set movieDuration to duration of front document if (playerPosition > movieDuration) then if front document is playing then stop front document end if set playerPosition to movieDuration end if if front document is playing then set current time of front document to playerPosition play front document else set current time of front document to playerPosition end if end tellCheers! |
SearchFrom our Sponsor...Latest Mountain Lion HintsWhat's New:HintsNo new hintsComments last 2 daysNo new commentsLinks last 2 weeksNo recent new linksWhat's New in the Forums?
Hints by TopicNews from Macworld
From Our Sponsors |
|
Copyright © 2014 IDG Consumer & SMB (Privacy Policy) Contact Us All trademarks and copyrights on this page are owned by their respective owners. |
Visit other IDG sites: |
|
|
|
Created this page in 0.06 seconds |
|