Music and Videos Myspace Stuff
Please bear in mind that for this tutorial you will need to be able to upload to a website. There are many sites out there that will give you one for free i.e. geocities (http://geocities.yahoo.com/).
To begin with, you will need the songs you wish to add to your play list. You can search for them at http://www.exploseek.com/. Once you’ve found your songs copy their URLS (they should end in .mp3 or .wma).
Now open up notepad and copy and paste the following text.
<ASX version="3.0">
<Entry>
<Ref href="URL"
/>
</Entry>
<Entry>
<Ref href="URL"
/>
</Entry>
<Entry>
<Ref href="URL"
/>
</Entry>
</ASX>
Replace each URL with your songs URL’s. If you want more than three, then copy and paste the following code after the lastr </entry>
<Entry.
<Ref href=”URL” />
</Entry>
Then go to save your file, and name it playlist.asx.
Before you click save go down to Save Type As, and change it to all files.
Upload your playlist.asx file to a web server then copy and paste its URL over PLAYLIST_RUL in the code below:
<embed src="PLAYLIST_URL" type="application/x-mplayer2" autostart="true" loop="true" height="45" width="180">
Copy and paste the above code where you want the media player to appear on your profile.
If you do not want it to auto play when people open your page, change autostart=”true” to autostart=”false”.
If you want to stop it from looping, then change loop=”true” to loop=”false”.
It is also possible on Myspace to have different styles of cursors on it. Below are the codes for some of them:
<style type="text/css">body { cursor: hand; } </style>
<style type="text/css">body { cursor: crosshair; } </style>
<style type="text/css">body { cursor: move; } </style>
<style type="text/css">body { cursor: help; } </style>
<style type="text/css">body { cursor: n-resize; } </style>
<style type="text/css">body { cursor: ne-resize; } </style>
<style type="text/css">body { cursor: nw-resize; } </style>
<style type="text/css">body { cursor: wait; } </style>
Below is a list of codes that you can use to add effects to links when your mouse moves over them. You can copy these into your About Me section.
Links Flip Horizontally
<style type="text/css"><!-- --> a:hover{filter:fliph(color:FF0000, strength=3);height:0px;width:inherit} //--></style>
Links Flip Backwards:
<style type="text/css"><!-- --> --> a:hover{filter:fliph(color:B22222, strength=3);height:0px;width:inherit} //--></style>
Links Glow On Mouseover
<style type="text/css"><!-- a:hover{filter:glow(color:FF0000, strength=3);height:0px;width:inherit} //--></style>


