What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Last.fm for Messenger Live! Plus

Pages: (2): « First [ 1 ] 2 » Last »
Last.fm for Messenger Live! Plus
Author: Message:
Yorick
Junior Member
**

Avatar

Posts: 22
33 / Male / Flag
Joined: Mar 2007
O.P. Last.fm for Messenger Live! Plus
[Image: badge_red_rev.gif] [Image: badge_grey_rev.gif]
My first version of Last.fm for Messenger Live! Plus is just approved (http://www.msgpluslive.net/scripts/view/268/) but I'm already working on a new version with much more features.

Here are some screenshots:
[Image: img4.png]
The profile page, displays the users avatar and some general information.

[Image: img6.png]
Here you can view your top artist, and send them to your buddy, you can even define how many artists should be send (sometimes the full list of 50 contacts is to much).

[Image: img5.png]
The recent tracks, almost the same as top artists, there will be a lot of this kind of windows.

What do you guys think about the interface? Or maybe some of you have some ideas that I could add?

Thanks in advance!
03-02-2007 08:37 PM
Profile E-Mail PM Web Find Quote Report
color680
Banned


Posts: 15
Reputation: -4
Joined: Mar 2007
RE: Last.fm for Messenger Live! Plus
Looks good :)
I downloaded it now.
I will see how it is.
Good luck, :)
03-02-2007 08:45 PM
Profile E-Mail PM Find Quote Report
Voldemort
Veteran Member
*****

Avatar

Posts: 3504
Reputation: 49
– / – / Flag
Joined: Jul 2005
Status: Away
RE: Last.fm for Messenger Live! Plus
quote:
Originally posted by Yorick
Or maybe some of you have some ideas that I could add?
Is it possible to use a script to upload the song list to last.fm, like instead of their program.
*All posts are a purely speculative hypothesis based on abstract reasoning.
Not my daughter, you bitch!
[Image: ico-mollytrix16.gif]
03-02-2007 08:57 PM
Profile E-Mail PM Find Quote Report
Sypher
Senior Member
****

Avatar

Posts: 623
Reputation: 15
36 / Male / Flag
Joined: Apr 2003
RE: Last.fm for Messenger Live! Plus
Nicely done.. But i'm still looking for a way to read the current song.. Would be possible by reading the tooltip of the trayicon..

Messenger Plus Beta Tester
Plus! Live Faq Maintainer
03-02-2007 09:37 PM
Profile PM Find Quote Report
Yorick
Junior Member
**

Avatar

Posts: 22
33 / Male / Flag
Joined: Mar 2007
O.P. RE: Last.fm for Messenger Live! Plus
quote:
Originally posted by Voldemort
quote:
Originally posted by Yorick
Or maybe some of you have some ideas that I could add?
Is it possible to use a script to upload the song list to last.fm, like instead of their program.
I'll look into that, but I might think it's a bit to complicated for Jscript, but I could write a dll file, coming back on this :)!

quote:
Originally posted by Sypher
Nicely done.. But i'm still looking for a way to read the current song.. Would be possible by reading the tooltip of the trayicon..
Al the information in this extension are generated by internet feeds, if you wan't the current song it's the easiest way to get that song from the player (by example winamp or windows media player), there a lot of plugins for that I think..

Thanks for the comments!

This post was edited on 03-02-2007 at 10:30 PM by Yorick.
03-02-2007 10:01 PM
Profile E-Mail PM Web Find Quote Report
Sypher
Senior Member
****

Avatar

Posts: 623
Reputation: 15
36 / Male / Flag
Joined: Apr 2003
RE: Last.fm for Messenger Live! Plus
Sorry, i specifically meant the last.fm application which allows you to listen to their streams...

It would be cool to have a (!WAT) replacement for Last.fm (!LNP) or something like that :)

Btw: You've quoted me twice in the message above *-)

This post was edited on 03-02-2007 at 10:27 PM by Sypher.
Messenger Plus Beta Tester
Plus! Live Faq Maintainer
03-02-2007 10:27 PM
Profile PM Find Quote Report
Yorick
Junior Member
**

Avatar

Posts: 22
33 / Male / Flag
Joined: Mar 2007
O.P. RE: Last.fm for Messenger Live! Plus
quote:
Originally posted by Sypher
Sorry, i specifically meant the last.fm application which allows you to listen to their streams...

It would be cool to have a (!WAT) replacement for Last.fm (!LNP) or something like that :)
I know that you meant that, but can you actually play music in the application itself? I thought it only collected your current song from all kind of music players (winamp, windows media player) trough that plugins...? Or can you actually play music in the app itself?

EDIT: quoting went a bit wrong :P

This post was edited on 03-02-2007 at 10:30 PM by Yorick.
03-02-2007 10:29 PM
Profile E-Mail PM Web Find Quote Report
Eddie
Veteran Member
*****


Posts: 2078
Reputation: 30
32 / Male / Flag
Joined: Oct 2005
Status: Away
RE: Last.fm for Messenger Live! Plus
Looks nice, works nice and is nice :) Well Done and gl lookin forward to the new version :)
03-03-2007 03:07 AM
Profile PM Web Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: Last.fm for Messenger Live! Plus
Instead of defining the ScriptMenu in the ScriptInfo.xml, do it within the script itself. So now, you can display the Show Recent Tracks option only in ChatWnds :).
code:
function OnGetScriptMenu(Location){
    var ScriptMenu = "<ScriptMenu>";
    if(Location == 2)// If accessed from ChatWnd
        ScriptMenu += "    <MenuEntry Id=\"SendRecentTracks\">Send recent tracks</MenuEntry>";
    ScriptMenu += "    <MenuEntry Id=\"Options\">Options</MenuEntry>";
    ScriptMenu += "    <Separator/>";
    ScriptMenu += "    <MenuEntry Id=\"About\">About</MenuEntry>";
    ScriptMenu += "</ScriptMenu>";
    return ScriptMenu;
}
03-03-2007 03:27 AM
Profile E-Mail PM Web Find Quote Report
Yorick
Junior Member
**

Avatar

Posts: 22
33 / Male / Flag
Joined: Mar 2007
O.P. RE: Last.fm for Messenger Live! Plus
quote:
Originally posted by Felu
Instead of defining the ScriptMenu in the ScriptInfo.xml, do it within the script itself. So now, you can display the Show Recent Tracks option only in ChatWnds :).
code:
function OnGetScriptMenu(Location){
    var ScriptMenu = "<ScriptMenu>";
    if(Location == 2)// If accessed from ChatWnd
        ScriptMenu += "    <MenuEntry Id=\"SendRecentTracks\">Send recent tracks</MenuEntry>";
    ScriptMenu += "    <MenuEntry Id=\"Options\">Options</MenuEntry>";
    ScriptMenu += "    <Separator/>";
    ScriptMenu += "    <MenuEntry Id=\"About\">About</MenuEntry>";
    ScriptMenu += "</ScriptMenu>";
    return ScriptMenu;
}


Thank you very much for pointing this out! Hadn't thought about it yet!

quote:
Originally posted by Eddie
Looks nice, works nice and is nice :) Well Done and gl lookin forward to the new version :)

Thank you!

EDIT:
Ok I need some help, because there going to be a lot of different xml feeds that will be read out (http://www.audioscrobbler.net/data/webservices/) I want to make a plugin system. So I'll put the plugins in a sub directory, and read them out. Any-one an example of a other script that has this sort of thing? Because as far as I can remember is that Jscript files in sub directory's aren't read out by default? 

This post was edited on 03-03-2007 at 01:32 PM by Yorick.
03-03-2007 09:26 AM
Profile E-Mail PM Web Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On