<< Click to Display Table of Contents >> Songs - Import from an XML document |
|
SongShow Plus lets you import songs using a simple XML format as documented below.
1. | Ensure the Songs Media Panel is visible. |
2. | Select the menu command Songs > Create or Acquire from > XML Document. This will open the Select Song Import File. |
3. | Find and select the XML document you wish to import. Click Open. The songs in the document will be imported. |
4. | You will then be given a few options of what you want to do with the imported song(s). |
The following is an example of how the XML document should be formatted. At this time, only the ISO-8859-1 encoding type is supported. All elements are optional with the exception of Title. Use a "//" to indicate line breaks in lyrics. There can be multiple SongImport elements within the SongImportList element which lets you import more than one song at a time.
<?xml version="1.0" encoding="ISO-8859-1"?>
<SongImportList>
<SongImport>
<Title>MyTitle</Title>
<Author>MyAuthor</Author>
<Reference>MyReference</Reference>
<Collection>MyCollection</Collection>
<SongNo>100</SongNo>
<Verses>
<Lyrics Part="Verse 1">This is verse 1 line 1//This is verse 1 line 2//This is verse 1 line 3</Lyrics>
<Lyrics Part="Verse 2">This is verse 2 line 1//This is verse 2 line 2//This is verse 2 line 3</Lyrics>
<Lyrics Part="Chorus">This is the chorus line 1//This is the chorus line 2//This is the chorus line 3</Lyrics>
<Lyrics Part="Bridge">This is the bridge line 1//This is the bridge line 2</Lyrics>
</Verses>
<CCLISongID>12345</CCLISongID>
<Copyright>(c) 2001 MyMusicSource</Copyright>
<TypicalSequence>
<Part>Verse 1</Part>
<Part>Chorus</Part>
<Part>Verse 2</Part>
<Part>Chorus</Part>
<Part>Bridge</Part>
<Part>Chorus</Part>
</TypicalSequence>
<Keys>
<Key>F</Key>
<Key>G</Key>
</Keys>
<LowKey>F</LowKey>
<HighKey>G</HighKey>
<MinorKey>No</MinorKey>
<Tempo>Medium</Tempo>
<Themes>
<Theme>Assurance</Theme>
<Theme>Glory</Theme>
<Theme>Praise</Theme>
<Theme>Protector</Theme>
<Theme>Shield</Theme>
<Theme>Testimony</Theme>
</Themes>
<Notes>These are my notes.</Notes>
</SongImport>
</SongImportList>