[release] Music now playing |
Author: |
Message: |
BrutuZ
New Member
Posts: 9
– / / –
Joined: Jun 2006
|
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
Attachment: (2.61 KB)
This file has been downloaded 263 time(s).
Oh c'mon, i bet My English > Your Portuguese ¬¬
|
|
12-31-2007 06:21 AM |
|
|
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 |
|
|
-dt-
Scripting Contest Winner
;o
Posts: 1819 Reputation: 74
36 / /
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
Happy Birthday, WDZ
|
|
01-02-2008 01:14 PM |
|
|
VeKi
New Member
Posts: 2
Joined: Jan 2008
|
RE: [release] Music now playing
it's english...
|
|
01-02-2008 10:06 PM |
|
|
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 |
|
|
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 |
|
|
ahmetgns
Veteran Member
Posts: 1343 Reputation: 8
39 / /
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 |
|
|
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 |
|
|
mynetx
Skinning Contest Winner
Microsoft insider
Posts: 1175 Reputation: 33
37 / /
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?
|
|
01-11-2008 11:12 AM |
|
|
-dt-
Scripting Contest Winner
;o
Posts: 1819 Reputation: 74
36 / /
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
Happy Birthday, WDZ
|
|
01-11-2008 12:05 PM |
|
|
Pages: (70):
« First
«
46
47
48
49
[ 50 ]
51
52
53
54
»
Last »
|
|