Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tell application "iTunes"
- if player position is not missing value then
- set current_pos to player position
- set mute to true
- set new_pos to current_pos - 30
- if new_pos < 0 then set new_pos to 0
- set player position to new_pos
- set mute to false
- end if
- end tell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement