Sandbox: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
m (Updated skinentry)
No edit summary
 
(25 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This page is purely for testing
This page is purely for testing


<syntaxhighlight lang="bash">
var x = 1;
</syntaxhighlight>


[[Image:WMP11_1.jpg|center|thumb|100px|Thumb test]]
[[Image:Example.png]]
 
<br>
<br>
<br>
<br>
<br>
<br>
<br>
[[Image:Example.png]]
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
 
 
This [http://diberri.dyndns.org/wikipedia/html2wiki/index.html html2wiki converter] is very useful.
 
[[Image:WMP11_m.jpg|center|thumb|150px|Thumb test]]


==[[Main Page]]==
==[[Main Page]]==
Line 10: Line 38:
<big>[[Main Page]]</big>
<big>[[Main Page]]</big>


{{MethodParameters}}
==Numbered list==
# one
# two
# three
# four
# five


<source lang="csharp">
==Bulleted list==
// Hello World in Microsoft C# ("C-Sharp").
?????
: a
: b
: c


using System;
{{MethodParameters}}
 
class HelloWorld
{
    public static int Main(String[] args)
    {
        Console.WriteLine("Hello, World!");
        return 0;
    }
}
</source>
 
<source lang="vb">
' 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
</source>
 
{{SkinEntry
|skinname=WMP11
|imageurl=WMP11_1.jpg
|imagedesc=Morten's WMP11 skin for MM3
|author=Morten
|firstreleased=2007-01-26
|skinurl=http://www.diskusjon.no/index.php?act=Attach&type=post&id=135227
|version=1.2
|released=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.
}}
 
 
 
==ITunes==
[[Image:ITunes_morten.jpg|right|thumb|300px|Morten's ITunes7 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 ITunes v7 as much as possible. Some usability enhancements are made that are not available in ITunes7 itself.
<div style="float: right; margin-left: 1em; margin-bottom: 0.5em; clear: right; background-color:#F9F9F9; border:1px solid #CCCCCC; font-size:95%; padding:5px;">
<div style="text-align: center;">'''Song title'''</div>
<div><table>
<tr style="background-color: #ddd;"><td>'''Scripting value'''</td><td>[[SDBSongData|Object SongData]] > [[ISDBSongData::Title|Title]]</td></tr>
<tr style="background-color: #f4f4f4;"><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;''Value type''</td><td>''String''</td></tr>
<tr style="background-color: #ddd;"><td>'''Database field'''</td><td>[[Songs_table|Table Songs]] > [[Songs_table#SongTitle|SongTitle]]</td></tr>
<tr style="background-color: #f4f4f4;"><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;''Field type''</td><td>''String''</td></tr>
<tr style="background-color: #ddd;"><td>'''Tracklist column'''</td><td>"Title"</td></tr>
</table></div>
</div>
{{MethodDeclaration|SDBSongData|ISDBSongData|Property Get/Let Title As String}}

Latest revision as of 02:45, 6 January 2021

This page is purely for testing

var x = 1;

File:Example.png








File:Example.png











This html2wiki converter is very useful.

Thumb test

Main Page

Main Page

Main Page

Main Page

Main Page

Numbered list

  1. one
  2. two
  3. three
  4. four
  5. five

Bulleted list

?????

a
b
c
Name Type Description



Song title
Scripting valueObject SongData > Title
      Value typeString
Database fieldTable Songs > SongTitle
      Field typeString
Tracklist column"Title"

CoClass SDBSongData, Interface ISDBSongData

Property Get/Let Title As String