When you put the lyrics to song on your iTunes, is there a way to get them to come up? ? - meaning of i put on lyrics
If you put the text of a song in iTunes, there is a means to ask, while you listen to music?
I know how to do this in the real iPod, but I think at the same time on your computer to listen to iTunes.
Sunday, January 31, 2010
Meaning Of I Put On Lyrics When You Put The Lyrics To Song On Your ITunes, Is There A Way To Get Them To Come Up? ?
Subscribe to:
Post Comments (Atom)
2 comments:
--- This is an AppleScript to search for the text of the song you hear on iTunes. Just cut and paste this code into the Script Editor and save it in ~ / Library / Scripts. Call it what you want, and showed in the Script menu in iTunes.
The script needs a good disc, artist and song names. In addition, if the deposit is not the song, you're out of luck. However, it is very useful to find lyrics to!
[RobG adds: To get the script menu in iTunes on my script, I had put in ~ / Library / iTunes / Scripts. Once there, however, was as described.]
I apologize for the code is a bit long ... hopes to one day become a hosting site for these and other! Comments, criticism, ideas are always welcome at all - I would OS X be a better place:)
nameOfTrack good ""
nameOfAlbum good ""
nameOfArtist good ""
tell application "iTunes"
Copy the name of the current track nameOfTrack
Copy albumthe current track nameOfAlbum
Artist copy of the current track on nameOfArtist
nameOfTrack configuring my ParseWords (nameOfTrack)
nameOfAlbum configuring my ParseWords (nameOfAlbum)
nameOfArtist configuring my ParseWords (nameOfArtist)
nameOfArtist open my browser (, nameOfAlbum, nameOfTrack)
last word
In ParseWords (MyWord)
myDelims {"(", ") offers" "" "" "" - "," @ "," # "" $ ""% ", ¬
"^", "&", "*" "-", "+", "=" "" "" "" ".", "/", "\\ \\ \\ \\ \\ \\ \\ \\ U0026lt;" ¬
">", "?", "(" ")" "[" "]")
Repeat with currentDelim in myDelims
AppleScript set text item delimiters currentDelim
MyWords established in each text element MyWord
AppleScript set text item delimiters ( "")
MyWord put myWords such as chain
repeat end
- Convert double spaces to single
AppleScript set text item delimiters to ""
MyWords established in each text element MyWord
AppleScript set text item delimiters ( "")
MyWords MyWord defined as a string
- Get rid of spaces
AppleScript set text item delimiters ( "")
MyWords established in each text element MyWord
{"_"} AppleScript set text item delimiters
MyWords MyWord defined as a string
MyWord back
ParseWords final
nameOfArtist in openBrowser (, nameOfAlbum, nameOfTrack)
tell application "Safari"
enable
make new document at end of document
- Definition of the URL of document 1 to "http://www.getlyrics.com/lyrics.php?Art ... & ¬
nameOfArtist & "& Album =" & nameOfAlbum & "= & Song" & nameOfTrack
Set URL of document 1 to ¬
"http://display.lyrics.astraweb.com:2000 ... & ¬
nameOfArtist and ".." & & NameOfAlbum ".." & NameOfTrack
last word
openBrowser final
--- This is an AppleScript to search for the text of the song you hear on iTunes. Just cut and paste this code into the Script Editor and save it in ~ / Library / Scripts. Call it what you want, and showed in the Script menu in iTunes.
The script needs a good disc, artist and song names. In addition, if the deposit is not the song, you're out of luck. However, it is very useful to find lyrics to!
[RobG adds: To get the script menu in iTunes on my script, I had put in ~ / Library / iTunes / Scripts. Once there, however, was as described.]
I apologize for the code is a bit long ... hopes to one day become a hosting site for these and other! Comments, criticism, ideas are always welcome at all - I would OS X be a better place:)
nameOfTrack good ""
nameOfAlbum good ""
nameOfArtist good ""
tell application "iTunes"
Copy the name of the current track nameOfTrack
Copy albumthe current track nameOfAlbum
Artist copy of the current track on nameOfArtist
nameOfTrack configuring my ParseWords (nameOfTrack)
nameOfAlbum configuring my ParseWords (nameOfAlbum)
nameOfArtist configuring my ParseWords (nameOfArtist)
nameOfArtist open my browser (, nameOfAlbum, nameOfTrack)
last word
In ParseWords (MyWord)
myDelims {"(", ") offers" "" "" "" - "," @ "," # "" $ ""% ", ¬
"^", "&", "*" "-", "+", "=" "" "" "" ".", "/", "\\ \\ \\ \\ \\ \\ \\ \\ U0026lt;" ¬
">", "?", "(" ")" "[" "]")
Repeat with currentDelim in myDelims
AppleScript set text item delimiters currentDelim
MyWords established in each text element MyWord
AppleScript set text item delimiters ( "")
MyWord put myWords such as chain
repeat end
- Convert double spaces to single
AppleScript set text item delimiters to ""
MyWords established in each text element MyWord
AppleScript set text item delimiters ( "")
MyWords MyWord defined as a string
- Get rid of spaces
AppleScript set text item delimiters ( "")
MyWords established in each text element MyWord
{"_"} AppleScript set text item delimiters
MyWords MyWord defined as a string
MyWord back
ParseWords final
nameOfArtist in openBrowser (, nameOfAlbum, nameOfTrack)
tell application "Safari"
enable
make new document at end of document
- Definition of the URL of document 1 to "http://www.getlyrics.com/lyrics.php?Art ... & ¬
nameOfArtist & "& Album =" & nameOfAlbum & "= & Song" & nameOfTrack
Set URL of document 1 to ¬
"http://display.lyrics.astraweb.com:2000 ... & ¬
nameOfArtist and ".." & & NameOfAlbum ".." & NameOfTrack
last word
openBrowser final
Post a Comment