Howd they do this _myspace player hack or something??
-
- KVRAF
- 5629 posts since 22 Sep, 2005
I was peepin the JET page on Myspace.. (WHICH I'M BLOWN AWAY WITH CAUSE THEIR ALBUM SOUNDS FRIKKIN AMAZING WARNING ITS ROCK)
http://www.myspace.com/jet
Sorry for the splamage..
Anyhoo I was wondering if anyone knows how the hell they got a player to have so many tracks? Maybe a hack/custom version of the player?? Ofcourse in true Myspace crappy ass Flash Actionscripting the downside is it doesnt rewind or fast forward (for me anyway).. Let me know if you know anything (maybe post some actionscript for me)..
C
http://www.myspace.com/jet
Sorry for the splamage..
Anyhoo I was wondering if anyone knows how the hell they got a player to have so many tracks? Maybe a hack/custom version of the player?? Ofcourse in true Myspace crappy ass Flash Actionscripting the downside is it doesnt rewind or fast forward (for me anyway).. Let me know if you know anything (maybe post some actionscript for me)..
C
-
- KVRAF
- 16154 posts since 2 Dec, 2003 from Nashville, TN
I wonder if it has anything to do with it being a myspace exclusive album? I know they were creating a myspace label also, where added distribution would take place.
But my money is on the exclusive part. Although I can't find in my account anywhere to do that. So maybe they just worked out a deal.
Brent
But my money is on the exclusive part. Although I can't find in my account anywhere to do that. So maybe they just worked out a deal.
Brent
My host is better than your host
- KVRAF
- 10286 posts since 17 Sep, 2004 from Austin, TX
That's what they give you when you're a featured band.
Mine doesn't have that but it has a rain of weird smileys.
http://www.myspace.com/briarmonsmetrach5
Mine doesn't have that but it has a rain of weird smileys.
http://www.myspace.com/briarmonsmetrach5
-
- KVRAF
- Topic Starter
- 5629 posts since 22 Sep, 2005
runagate.. 
That kinda sucks in a way cause it's like favortism all over again.. Whats next myspayola? The reason I ask is cause I have a lable release coming out soon and want the same thing on mine. Anyhow I will just hack their regular player (already have it decompiled) then put it on my page so I look all exclusive and snooty..! Let me know if anyone wants it I will send it once I'm done customizing.. BTW runagate like Bower Pallid.. Would sound good with vocals..
That kinda sucks in a way cause it's like favortism all over again.. Whats next myspayola? The reason I ask is cause I have a lable release coming out soon and want the same thing on mine. Anyhow I will just hack their regular player (already have it decompiled) then put it on my page so I look all exclusive and snooty..! Let me know if anyone wants it I will send it once I'm done customizing.. BTW runagate like Bower Pallid.. Would sound good with vocals..
- KVRAF
- 10286 posts since 17 Sep, 2004 from Austin, TX
I'd love a copy of that, and I suspect that about 2 million other people would, too.
As to vocals, those are indeed backing tracks awaiting vocals which shall be forthcoming. Now that I'm awake I can look at your page, too, I would not have guessed that page was yours.
<yspace payola? That wouldn't really be any worse that their terrible taste in music, would it? Lol! They seem to mostly like emo, which is inexcusable.
As to vocals, those are indeed backing tracks awaiting vocals which shall be forthcoming. Now that I'm awake I can look at your page, too, I would not have guessed that page was yours.
<yspace payola? That wouldn't really be any worse that their terrible taste in music, would it? Lol! They seem to mostly like emo, which is inexcusable.
-
- KVRAF
- 2108 posts since 31 Dec, 2002 from London, UK
Lagrange: I've had 8 tracks on my MySpace site for ages AND I can skip songs 
Different (better) player though.
Here's some good info. The player is called Jeroen's player.
http://groups.myspace.com/flashplayers
Different (better) player though.
Here's some good info. The player is called Jeroen's player.
http://groups.myspace.com/flashplayers
-
- KVRAF
- Topic Starter
- 5629 posts since 22 Sep, 2005
-
- KVRAF
- Topic Starter
- 5629 posts since 22 Sep, 2005
Ok working on the last stages of the player bash! I need to get this one part worked out before I get this working 100 percent.. Let me know if you can help out with the actionscript here.. I need to figure out where the hell the xml file is located..
Code: Select all
function Connloaded(success)
{
if (success)
{
_root.appURL = this.firstChild.firstChild.nextSibling.firstChild.nodeValue;
xmldocurl = "http://www.myspace.com/services/media/mediaxmlprovider.ashx?b=" + fid;
XMLDoc = new XML();
XMLDoc.load(xmldocurl);
XMLDoc.onLoad = fnloaded;
}
else
{
loading_stat.text = "Unable to reach host";
} // end else if
} // End of the function
function fnloaded(success)
{
if (success)
{
if (timestamp > parseNodes())
{
popcacheurl = decode64(_root.p);
gotoAndPlay(2);
}
else
{
loading_stat.text = "Loading Error";
} // end else if
}
else
{
loading_stat.text = "Error Loading XML Document";
} // end else if
} // End of the function-
Reverse Engineer Reverse Engineer https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=9129
- KVRAF
- 4968 posts since 23 Sep, 2003 from Glasgow
Did you see the pitchfork review of shine on?Lagrange wrote:I was peepin the JET page on Myspace.. (WHICH I'M BLOWN AWAY WITH CAUSE THEIR ALBUM SOUNDS FRIKKIN AMAZING WARNING ITS ROCK)
http://www.myspace.com/jet
Sorry for the splamage..
Anyhoo I was wondering if anyone knows how the hell they got a player to have so many tracks? Maybe a hack/custom version of the player?? Ofcourse in true Myspace crappy ass Flash Actionscripting the downside is it doesnt rewind or fast forward (for me anyway).. Let me know if you know anything (maybe post some actionscript for me)..
C
- KVRAF
- 10286 posts since 17 Sep, 2004 from Austin, TX
Lag, I wouldn't have guessed it was yours simply cuz it wasn't called "Lagrange" which is the only thing I know to call you.
-
- KVRian
- 1422 posts since 16 Jan, 2004 from Minneapolis, MN.
Sounds 'bout right to me.Reverse Engineer wrote:Did you see the pitchfork review of shine on?
I've recorded over 400 answering machines - the Best Of recordings are available for use and can be found here:
https://answerphone.tumblr.com/
https://answerphone.tumblr.com/
-
- KVRAF
- Topic Starter
- 5629 posts since 22 Sep, 2005
