PDA

View Full Version : applescript "bring to front"




mnkeybsness
Sep 7, 2003, 09:47 PM
ok, so i did this about a year ago and it worked...

i have a keyspan dmr and i wrote a short little applescript to tell the finder to bring the itunes window to the front...

since that time, i have lost the script and would really like it back...

i tried this...
tell application "Finder"
set window 1 of application "iTunes" to frontmost
end tell

i had thought that this was what i used, but i keep getting an error...

little help please?



mnkeybsness
Sep 8, 2003, 02:29 PM
i know lots of you out there know applescript....

OutThere
Sep 8, 2003, 03:10 PM
this little baby will bring iTunes to the front:

tell application "iTunes"
activate
end tell

OutThere
Sep 8, 2003, 03:16 PM
Sorry for the double post.

mnkeybsness
Sep 8, 2003, 04:12 PM
wow i knew it was a lot more simple than i was trying to make it this time...thanks