--
You received this message because you are subscribed to the Google Groups "Quicksilver" group.
To unsubscribe from this group and stop receiving emails from it, send an email to blacktree-quicks...@googlegroups.com.
To post to this group, send email to blacktree-...@googlegroups.com.
Visit this group at http://groups.google.com/group/blacktree-quicksilver?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
I support the idea of having them in the plugin. I was planning to poke around in the iTunes plugin some more once Rob's current work has stabilized.
Im trying to accomplish this task "move forward or backward within a song" the functions is available from with in iTunes by Option-Command-Right Arrow or Left Arrow (move in 5sec increments).
property skip : 5
tell application "iTunes"
if player state is not stopped then
set pos to player position
if pos + skip ≤ finish of current track then
set player position to pos + skip
else
set player position to finish of current track as integer
end if
end if
end tell
property skip : 5
tell application "iTunes"
if player state is not stopped then
set pos to player position
if pos - skip ≥ 0 then
set player position to pos - skip
else
set player position to 0
end if
end if
end tell
2. It’s been over 5 years since Apple sold a keyboard that doesn’t have dedicated keys for this. :-)