Creating Song Categories

Let us know about any problems in SongBeamer
Post Reply
sdpaul
Posts: 3
Joined: Sun Sep 21, 2014 11:41 pm

Creating Song Categories

Post by sdpaul »

Is there a way of creating or changing Song Categories? If not, could it be added?
Sebastian
SongBeamer
Posts: 208
Joined: Sat Apr 22, 2006 10:58 pm

Post by Sebastian »

You can create a file with the name Categories.txt in the folder for the global SongBeamer configuration files and fill it with your own set of categories.

Code: Select all

%SongBeamer%
My Category 1
My Category 2
The easiest way to do this is this: Use Tools->Macros, and add the following text:

Code: Select all

// Opens categories for editing
// Write %SONGBEAMER% in an empty lines in order to add all built-in categories

var 
  FileName: String; 

begin 
  FileName := GetFolder_SBProgramData + 'Categories.txt'; 
  CreateProcess(GetFolder_System + 'Notepad.exe', FileName); 
end.
Then Press F9 in order to run the script.

The OSX Version does not support Macros. So you'll have to do it manually. Press and hold shift while clicking on the "Help" menu. Then select "Folders for configuration data". The Categories.txt file will be in the "Folder for global configuration files". Copy it from there to the Mac or to other Windows PC in order to keep this file in sync.
Post Reply