Search found 770 matches

by jtclipper
Fri Sep 07, 2018 5:13 pm
Forum: Requests - Questions
Topic: Can't connect on line
Replies: 1
Views: 2916

Re: Can't connect on line

Freedb and services like freedb rely on a ID generated from the files in the order recorderd in the original CD. try sorting by track and search again, also try selecting gnudb or tracktype (from the available servers combo box). You could also upgrade to the last version (not really needed) but Ama...
by jtclipper
Mon Jul 16, 2018 4:27 pm
Forum: Bugs
Topic: Edit mode always shows LYRICS3 instead of ID3v2
Replies: 2
Views: 8213

Re: Edit mode always shows LYRICS3 instead of ID3v2

Please check in File/Options/Edit/ID3 that the read order is set to ID3v1->ID3v2,
so that the ID3v2 tags are the last to be loaded into the appropriate fields.
by jtclipper
Tue May 08, 2018 4:17 pm
Forum: Bugs
Topic: Delete ALL Tags doesn't
Replies: 2
Views: 7969

Re: Delete ALL Tags doesn't

Thanks for reporting , will have a look at this, delete all basically deletes all 'supported' tags
by jtclipper
Sat Mar 24, 2018 2:53 pm
Forum: Scripting
Topic: Question about some more folders in orga-script
Replies: 21
Views: 33861

Re: Question about some more folders in orga-script

Yes, it can be done. First you will need to create a user script variable (File/Options/variables %..%/user (page) - Scripts (panel) at the bottom. Like so: begin if Uppercase( Copy( gTag.Artist, 1, 3 ) ) = 'THE' then begin var_result( Trim( Copy( gTag.Artist, 4, 999 ) ) + ',The' ); end else begin v...
by jtclipper
Wed Mar 14, 2018 5:24 pm
Forum: Scripting
Topic: tg_Rename not found
Replies: 3
Views: 8714

Re: tg_Rename not found

It basically triggered the rename functionality of the old 'Rename" panel and it was no longer applicable to the new Edit panel
by jtclipper
Tue Mar 13, 2018 6:33 pm
Forum: Scripting
Topic: tg_Rename not found
Replies: 3
Views: 8714

Re: tg_Rename not found

You can use the following function to set the 'If renamed' column like so:

Code: Select all

tg_setField('Rename', 'new name.mp3');
After that you could use

Code: Select all

tg_Update
With only filename selected in the dropdown menu of the update button, or manually do the update yourself
by jtclipper
Sun Mar 04, 2018 12:18 pm
Forum: Scripting
Topic: Question about some more folders in orga-script
Replies: 21
Views: 33861

Re: Question about some more folders in orga-script

The files actually contain those Unicode 'Asian' characters it is not some kind of error For the restructure part of the question please have a look at the following script : {!%*AR,1,1%+%AR%+%AR% - %L%+%C%} program folder_rules_ex; const _MiscFolder = '0-9 & Misc'; _MiscValue = '1234567890.+-_!@#$%...
by jtclipper
Fri Mar 02, 2018 5:56 pm
Forum: Bugs
Topic: Edit - Row mode - Ctrl A - Right click - skip field removed
Replies: 1
Views: 7726

Re: Edit - Row mode - Ctrl A - Right click - skip field removed

This has to do with the grid component used, will see if I can add a workaround to remove the automatic H-scroll
by jtclipper
Tue Feb 27, 2018 5:00 pm
Forum: Requests - Questions
Topic: select several rows with a shortcut in editing
Replies: 3
Views: 2780

Re: select several rows with a shortcut in editing

First of all you have to select 'row mode' (F6)
Then you can shift/control click to select rows
or
use shift/end, shift/pgdn or pgup , shift/ctrl/pgdn or pgup
by jtclipper
Tue Feb 27, 2018 4:55 pm
Forum: Scripting
Topic: Question about some more folders in orga-script
Replies: 21
Views: 33861

Re: Question about some more folders in orga-script

Got the files will check them out preferably this weekend
by jtclipper
Sun Feb 25, 2018 8:42 pm
Forum: Scripting
Topic: Question about some more folders in orga-script
Replies: 21
Views: 33861

Re: Question about some more folders in orga-script

Use this jtclipper@jtclipper.eu will have a look sometime this week
by jtclipper
Sun Feb 25, 2018 4:28 pm
Forum: Scripting
Topic: Question about some more folders in orga-script
Replies: 21
Views: 33861

Re: Question about some more folders in orga-script

Click my nickname and select 'send email'
by jtclipper
Sun Feb 25, 2018 3:42 pm
Forum: Scripting
Topic: Question about some more folders in orga-script
Replies: 21
Views: 33861

Re: Question about some more folders in orga-script

Send me the files via email, I also want a couple of the files with the Unicode Chinese? characters
by jtclipper
Sun Feb 25, 2018 10:18 am
Forum: Scripting
Topic: Question about some more folders in orga-script
Replies: 21
Views: 33861

Re: Question about some more folders in orga-script

If i understand correctly you would like the following: specific tracks that have the word 'Sampler' in the comment field should be sorted under their own folder and not under the artist name For example S |---Sampler |---- Album 1 |---- Album 2 |---- ... |---- Album n If so I would like a couple of...
by jtclipper
Mon Feb 19, 2018 9:42 am
Forum: Requests - Questions
Topic: Library can't show artist?
Replies: 2
Views: 2031

Re: Library can't show artist?

Just checked the code and it seems that if there is data in the Albumartist field then it is used to populate the artist field. This was done basically to avoid having 1 song albums for various artist compilations. I could add an option to alter this behavior or I could just a 'songArtist' field in ...