AIMP Forum

AIMP for Windows => Skin Editor, Skin Engine => Вопросы / Questions => Topic started by: baram on April 26, 2013, 05:06:32

Title: Where I can find template flag?
Post by: baram on April 26, 2013, 05:06:32
I want to modify playlist duration, track count field.

But there is no mention about that.

%A - Album, %B - Bitrate ...

What does stands for playlist duration and track count?
Title: Re: Where I can find template flag?
Post by: Hayo Tee on April 26, 2013, 05:38:34
Connection text label with provider Playlist.
Title: Re: Where I can find template flag?
Post by: baram on April 26, 2013, 07:02:48
Connection text label with provider Playlist.

Thanks for your replay.

I just did as your comment.

But how to add custom text to playlist duration.

For example

I want to display "Time :" text before playlist duration.

Time : 00:00:53:20

instead of

00:00:53:20

There is no English manual about this. So please help me.
Title: Re: Where I can find template flag?
Post by: Hayo Tee on April 26, 2013, 07:34:12
Just make text like "Time" as single template.
Title: Re: Where I can find template flag?
Post by: baram on April 26, 2013, 08:00:33
Just make text like "Time" as single template.

Sorry, But I don't know what you mean.

There is no button to create template.

When I fill in "Time: " to templete field, It didn't work.

ps. I attached screenshot.
Title: Re: Where I can find template flag?
Post by: Tarik on April 26, 2013, 09:49:10
Add after "Time: " %v in template:

Code: [Select]
Time: %v
Title: Re: Where I can find template flag?
Post by: baram on April 26, 2013, 10:02:33
Add after "Time: " %v in template:

Code: [Select]
Time: %v

Thank you very much.

But I have one more question for you.

Where I can find all template flag?

I want to know other flag except a playlist time.

For example, track count, playlist size and so on.

Title: Re: Where I can find template flag?
Post by: Soolo on April 26, 2013, 10:09:21
Where I can find all template flag?
(http://i47.fastpic.ru/big/2013/0426/da/5f0b5a815d34513529a2665c7aa3ecda.png)
Title: Re: Where I can find template flag?
Post by: baram on April 26, 2013, 10:22:01
(http://i47.fastpic.ru/big/2013/0426/da/5f0b5a815d34513529a2665c7aa3ecda.png)

Thanks your replay.

But I already know that.

What I mean is that the flags I want to know are not there.

Playlist size, Playlist time, Playlist count...

There are some flags which is not explained in right click menu.
Title: Re: Where I can find template flag?
Post by: Soolo on April 26, 2013, 10:29:00
What I mean is that the flags I want to know are not there.

Playlist size, Playlist time, Playlist count...

There are some flags which is not explained in right click menu.
provider Playlist
(https://www.aimp.ru/forum/index.php?action=dlattach;topic=40031.0;attach=36665)
Title: Re: Where I can find template flag?
Post by: Tarik on April 26, 2013, 10:35:07
All providers, which provide "Data: text", using macro %v for their labels (Playlist size, time, count; volume, balance, progress etc).

prvPlayingFileInfo, prvQFI, which provide "Data: text (formatting support)" (service FileInfo), using templates flags from player (such as %B, %C, %A).
Title: Re: Where I can find template flag?
Post by: baram on April 26, 2013, 10:38:06
All providers, which provide "Data: text", using macro %v for their labels (Playlist size, time, count; volume, balance, progress etc).

prvPlayingFileInfo, prvQFI, which provide "Data: text (formatting support)" (service FileInfo), using templates flags from player (such as %B, %C, %A).

OK, I understand. Thank you very much.