Here is an AppleScript that gives you the song name, artist & album 
separated by commas.
Put this in a Rev property or field and then "do myScript as 
AppleScript". If you then check "the result" you should have the data 
you need.

tell application "iTunes"
        set trackID to the current track
        set trackName to the name of trackID
        set artistName to the artist of trackID
        set albumName to the album of trackID
        
        set totalData to trackName & ", " & artistName & ", " & albumName
        return totalData
end tell

This has only been tested on OS X but I assume the OS 9 version of 
iTunes has the same AppleScript dictionary.

Cheers,
Sarah


On Sunday, May 19, 2002, at 05:23  PM, Ludovic Th�bault wrote:

> hello
>
> I want to make an iconized window in the dock which display the current
> track of iTunes
>
> but if i am a newbie with Rev, i am a baby with AppleScript :-)
>
> I just need to get the current track (artist + song name) with
> AppleScript and put it in a fld in rev.
> (With iconized window and the lens effect of the dock, it's possible to
> read the content of the fld without open the window).
>
> If anybody can help me !
>
> Thanks !
>
> -- Ludovic THEBAULT
> (Sorry for my poooor english :-)
> _______________________________________________
> use-revolution mailing list
> [EMAIL PROTECTED]
> http://lists.runrev.com/mailman/listinfo/use-revolution
>


_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to