Sandbox: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
(Template test)
Line 57: Line 57:
{{SkinEntry|1=WMP11|2=WMP11_1.jpg|3=Morten's WMP11 skin for MM3|4=Morten|5=2007-01-26|6=http://www.diskusjon.no/index.php?act=Attach&type=post&id=135227|7=1.2|8=2007-01-28|9=This skin tries to look like Windows Media Player v11 as much as possible. Some usability enhancements are made that are not available in WMP11 itself.}}
{{SkinEntry|1=WMP11|2=WMP11_1.jpg|3=Morten's WMP11 skin for MM3|4=Morten|5=2007-01-26|6=http://www.diskusjon.no/index.php?act=Attach&type=post&id=135227|7=1.2|8=2007-01-28|9=This skin tries to look like Windows Media Player v11 as much as possible. Some usability enhancements are made that are not available in WMP11 itself.}}


==WMP11==
[[Image:WMP11_1.jpg|right|thumb|300px|Morten's WMP11 skin for MM3]]


'''Author:''' [[User:Morten9300|Morten]]


'''First released:''' 2007-01-26
'''Current version:''' [http://www.diskusjon.no/index.php?act=Attach&type=post&id=135227 Download] (v1.2 - 2007-01-28)
'''Notes:''' This skin tries to look like Windows Media Player v11 as much as possible. Some usability enhancements are made that are not available in WMP11 itself.
<br clear="all" />
==ITunes==
==ITunes==
[[Image:ITunes_morten.jpg|right|thumb|300px|Morten's ITunes7 skin for MM3]]
[[Image:ITunes_morten.jpg|right|thumb|300px|Morten's ITunes7 skin for MM3]]

Revision as of 12:54, 3 April 2007

This page is purely for testing


File:WMP11 1.jpg
Thumb test

Main Page

Main Page

Main Page

Main Page

Main Page

Name Type Description


// Hello World in Microsoft C# ("C-Sharp").

using System;

class HelloWorld
{
    public static int Main(String[] args)
    {
        Console.WriteLine("Hello, World!");
        return 0;
    }
}
' A simple script that swaps the content of Title and Artist fields of selected tracks

Sub SwapArtistTitle
  ' Define variables
  Dim list, itm, i, tmp

  ' Get list of selected tracks from MediaMonkey
  Set list = SDB.CurrentSongList 

  ' Process all selected tracks
  For i=0 To list.count-1
    Set itm = list.Item(i)

    ' Swap the fields
    tmp = itm.Title
    itm.Title = itm.ArtistName
    If itm.AlbumArtistName = itm.ArtistName Then     ' Modify Album Artist as well if is the same as Artist
      itm.AlbumArtistName = tmp
    End If
    itm.ArtistName = tmp
  Next

  ' Write all back to DB and update tags
  list.UpdateAll
End Sub

{{{skinname}}}

[[Image:{{{imageurl}}}|right|thumb|300px|{{{skinname}}}]]

Author:

First released:

Current version:

Web link:

Notes:



ITunes

Morten's ITunes7 skin for MM3

Author: Morten

First released: 2007-01-26

Current version: Download (v1.2 - 2007-01-28)

Notes: This skin tries to look like ITunes v7 as much as possible. Some usability enhancements are made that are not available in ITunes7 itself.