What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [release] Music now playing

Pages: (70): « First « 46 47 48 49 [ 50 ] 51 52 53 54 » Last »
2 votes - 5 average   [release] Music now playing
Author: Message:
BrutuZ
New Member
*

Avatar

Posts: 9
– / Male / –
Joined: Jun 2006
Roll Eyes  RE: [release] Music now playing
Dunno if it has already been made, but if not, i made the Portuguese (Brazilian) translation to be included (or not :$) in the next releases :)

.zip File Attachment: (2.61 KB)
This file has been downloaded 236 time(s).
Oh c'mon, i bet My English > Your Portuguese ¬¬
12-31-2007 06:21 AM
Profile PM Find Quote Report
VeKi
New Member
*


Posts: 2
Joined: Jan 2008
RE: [release] Music now playing
well, i select an option: "Enable updatin your Personal message to your current song", and click save,it freezes, includig a whole messenger, everything that has anything with messenger freezes...
any help?
01-02-2008 11:01 AM
Profile E-Mail PM Find Quote Report
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
O.P. RE: [release] Music now playing
quote:
Originally posted by VeKi
well, i select an option: "Enable updatin your Personal message to your current song", and click save,it freezes, includig a whole messenger, everything that has anything with messenger freezes...
any help?
non english winamp?

if so, i'm looking into the problem


quote:
Originally posted by BrutuZ
Dunno if it has already been made, but if not, i made the Portuguese (Brazilian) translation to be included (or not :$) in the next releases :)
thanks :) ill add it for the next release

[Image: dt2.0v2.png]      Happy Birthday, WDZ
01-02-2008 01:14 PM
Profile PM Web Find Quote Report
VeKi
New Member
*


Posts: 2
Joined: Jan 2008
RE: [release] Music now playing
it's english...
01-02-2008 10:06 PM
Profile E-Mail PM Find Quote Report
sinancetinkaya
New Member
*


Posts: 5
Joined: Jan 2008
RE: [release] Music now playing
hi all and -dt-
can you change some codes in api.js for real time progress bar
code:
var currentSong = {"Title" : "", "Artist" : ""};
var songChangeUsers = 0;
var currentTimer = false;
var currentPlayer = false;
var currentStatus = -1;
var currentSongPosition = -1;
var currentPlayerName;
var isOpen = false;
             
function songChangeCheck(){
    var playerName = prefs.get("default/player");
    if(currentPlayerName != playerName){
        if(currentPlayer){
            destoryGlobalPlayer(currentPlayerName);
            currentPlayer = false;
            currentPlayerName = playerName;
        }
    }
   
    if(!currentPlayer)currentPlayer = getGlobalPlayer(playerName);
   

    if(currentPlayer.isOpen()){
        isOpen = true;
        var current = currentPlayer.CurrentTrack();

        //Debug.Trace(current.Title + "-" + current.Artist);
        if(currentSong.Title == current.Title && currentSong.Artist == current.Artist){
            //return
        }else{

            currentSong = current;
            triggerEvent("songChange", playerName, currentPlayer, currentSong);
        }
       
        var currentS = currentPlayer.Status();
        var position = currentPlayer.SongPosition();
        if(currentS == currentStatus && currentSongPosition == position)
        {
            //return
        }else{
currentSongPosition = position;           
currentStatus = currentS;
            triggerEvent("songStatusChanged", playerName, currentPlayer, currentStatus);
        }
       
    }else{
            destoryGlobalPlayer(playerName);
            currentPlayer = false;
            if(isOpen){
                triggerEvent("songStatusChanged", "", "", 0);
                triggerEvent("playerClosed", playerName);
                isOpen = false;
                currentSong = {"Title" : "", "Artist" : ""};
            }       
    }
}



And attachment is turkish language please add new versions

Edit: attachment file updated see my next post

This post was edited on 01-12-2008 at 02:54 PM by sinancetinkaya.
01-03-2008 01:00 PM
Profile E-Mail PM Find Quote Report
SpritHansi
New Member
*


Posts: 3
Joined: Jan 2008
RE: [release] Music now playing
I have a problem showing cover art. I use MediaMonkey 3 and sometimes this script doesn't show my art. I don't have the art i the folder, just in the ID3 tag.

This post was edited on 01-10-2008 at 08:36 AM by SpritHansi.
01-09-2008 04:39 PM
Profile E-Mail PM Find Quote Report
ahmetgns
Veteran Member
*****

Avatar

Posts: 1343
Reputation: 8
39 / Male / Flag
Joined: Dec 2006
RE: [release] Music now playing
Hi, I am using Windows Media Player 11 but this script doesn't show the song. My messenger shows it from directly Windows Media Player but that is the standard look, not this script's special look. I can't format the the now playing with Plus! tags. Also with this script's version which accompanied with Messenger Plus! Live, when I wanted to send the song I was listening on wmp to a contact, it said "wmp isn't installed". But now I have installed latest 1.3.4 version, now it sends "NP   :  [/00:00] [] (Stopped)" although my song is still playing. What is the problem?
01-10-2008 12:27 PM
Profile PM Web Find Quote Report
SpritHansi
New Member
*


Posts: 3
Joined: Jan 2008
RE: [release] Music now playing
Where does this script pic up ther cover art? From folder or ID3?
01-11-2008 10:47 AM
Profile E-Mail PM Find Quote Report
mynetx
Skinning Contest Winner
*****

Avatar
Microsoft insider

Posts: 1175
Reputation: 33
36 / Male / Flag
Joined: Jul 2007
RE: [release] Music now playing
quote:
Originally posted by SpritHansi
Where does this script pic up ther cover art?
quote:
Originally posted by Music Now Playing/coverArt.js
/*
    if you reuse this code, you must remove my amazon key and get your own :)
*/

var cover_url = "http://webservices.amazon.com/onca/xml?Service=AWSECommerceService&" +
        "AWSAccessKeyId=" + amazon_key + "&" +
        "Operation=ItemSearch&" +
        "SearchIndex=Music&" +
        "ResponseGroup=Small,Images&" +
        "Keywords=%s";

var coverArtDirectory = MsgPlus.ScriptFilesPath + "\\cache\\art\\";

Answer enough? :)
mynetx - Microsoft, enhanced.

You have a problem or issue with Windows, Internet
Explorer or Office?
Send a tweet!
01-11-2008 11:12 AM
Profile E-Mail PM Web Find Quote Report
-dt-
Scripting Contest Winner
*****

Avatar
;o

Posts: 1819
Reputation: 74
35 / Male / Flag
Joined: Mar 2004
O.P. RE: [release] Music now playing
quote:
Originally posted by sinancetinkaya
hi all and -dt-
can you change some codes in api.js for real time progress bar
no, this has been discussed before and I dont want to flood your contacts with updates to the bar

quote:
Originally posted by sinancetinkaya
And attachment is turkish language please add new versions
it will be added

quote:
Originally posted by ahmetgns
Hi, I am using Windows Media Player 11 but this script doesn't show the song. My messenger shows it from directly Windows Media Player but that is the standard look, not this script's special look. I can't format the the now playing with Plus! tags. Also with this script's version which accompanied with Messenger Plus! Live, when I wanted to send the song I was listening on wmp to a contact, it said "wmp isn't installed". But now I have installed latest 1.3.4 version, now it sends "NP   :  [/00:00] [] (Stopped)" although my song is still playing. What is the problem?

disable "windows live media plugin" in wmp and enable the "true launch one" (tools -> plugins)

quote:
Originally posted by SpritHansi
I have a problem showing cover art. I use MediaMonkey 3 and sometimes this script doesn't show my art. I don't have the art i the folder, just in the ID3 tag.
the script doesnt get the coverart from the ID3 tag instead it either finds it in the folder or looks it up on amazon, the ID3 tag thing is on my todo list

[Image: dt2.0v2.png]      Happy Birthday, WDZ
01-11-2008 12:05 PM
Profile PM Web Find Quote Report
Pages: (70): « First « 46 47 48 49 [ 50 ] 51 52 53 54 » 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