Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: foo_ui_panels (Read 1318355 times) previous topic - next topic
0 Members and 23 Guests are viewing this topic.

foo_ui_panels

Reply #1675
I just updated my panelsui from 0.13.5 to 0.13.8 and now I have some squares before everything in my Library filter (everything but the headers) First i thought it had something to do with my config, but it also happens with the basic.pui. I also tried to remove everything but %criteria% in the layout settings but there were still squares.



another problem that also existed in 0.13.5 is that I have an artists in my library with Ö as first letter, and one with a groupname that starts with a non-capital d, but the rest are capital letters. They are sorted incorrectly (at the bottom of the list instaed of the Ö with the rest of the O's or the d with the rest of the D's).

foo_ui_panels

Reply #1676
Is it possible in the library filter to have subcategories that exist based on tags? For example: if I have some songs that don't have a date specified, I want them grouped in a 'No Date' group that isn't expandable. The songs that do have a date are grouped in 80s,90setc and can be expanded to 1991,1992 etc. With my current config i get Dates>90s>1991, but I also get dates>No Date>? where I would like Dates>No Date.

foo_ui_panels

Reply #1677
Hi,
maybe someone can help me: i work on an information center with statistics. one of the statistic value should have the total playback time like the official one intigrated in fb2k...
my issue is, that sometimes the pvar get more often updated (more often as second per second) i use this code, which stand in the // PerSecond part:

Code: [Select]
// PerSecond
$if(%_isplaying%,
$setpvar(total_playtime,$eval($getpvar(total_playtime)+1))
,)


thanks in advance for any reply...

bye plukin


foo_ui_panels

Reply #1679
Hi,

I cannot get the matroska transparent access to attachment file (ex. matroska://%path%|cover.jpg) to work with uie_panels. Is it possible anyway ?

foo_ui_panels

Reply #1680
Here is idea. If the x,y,width,height info of the main window available to call via a function and it was also possible to set these it would be possible to make popup window from button, and it could appear directly beneath the button if you set it to. This could be used for volume slider or anything. Would be pretty cool.

foo_ui_panels

Reply #1681
Here is idea. If the x,y,width,height info of the main window available to call via a function and it was also possible to set these it would be possible to make popup window from button, and it could appear directly beneath the button if you set it to. This could be used for volume slider or anything. Would be pretty cool.


+1,

having possibility to indicate x,y coords of a panelsUI window would be great and useful ...

foo_ui_panels

Reply #1682
$button2 bug

I am finding that placing a $button2 command inside an $if statement causes changes to $alignabs and hence the positioning of text. This $alignabs is NOT within the $if, but prior to it.

Commenting out the $button2 section removes the error. Taking $button2 outside of the $if and placing ABOVE the $alignabs fixed the problem, when below the problem persisted.

It is irrelevant of the command in the $if statement and commenting out other things within the $if gave no fix.

EDIT: The bug only occurs if the $button2 is in the vicinity of the $alignabs command.

Seems to be some conflict between $alignabs and $button2

foo_ui_panels

Reply #1683
$settitle() BUG

Sometimes...
If 'Hide Taskbar Entry' is unchecked,
and $settitle() is used,
and the user has their taskbar set to auto-hide,
the taskbar refuses to auto-hide.

(this has happened a couple of times for me, but I can't seem to make it reproduceable)
elevatorladylevitateme

 

foo_ui_panels

Reply #1684
I just updated my panelsui from 0.13.5 to 0.13.8 and now I have some squares before everything in my Library filter (everything but the headers) First i thought it had something to do with my config, but it also happens with the basic.pui. I also tried to remove everything but %criteria% in the layout settings but there were still squares.



another problem that also existed in 0.13.5 is that I have an artists in my library with Ö as first letter, and one with a groupname that starts with a non-capital d, but the rest are capital letters. They are sorted incorrectly (at the bottom of the list instaed of the Ö with the rest of the O's or the d with the rest of the D's).

* The square character is usially displayed whenever a character comes up that is not defned in the currently used font, so try changing to a font that has more characters, like Arial Unicode MS.  Also, only the style settings accessed through the context menu change with changing config.  The layout settings that define the tree structure do not.

* Foreign characters are often sorted unintuitively and incosistently.  It's a bit of a hack, but try something like "$replace($replace([criteria],D,d),Ö,o)".  You can nest like this as needed for all the strange sorting characters

Is it possible in the library filter to have subcategories that exist based on tags? For example: if I have some songs that don't have a date specified, I want them grouped in a 'No Date' group that isn't expandable. The songs that do have a date are grouped in 80s,90setc and can be expanded to 1991,1992 etc. With my current config i get Dates>90s>1991, but I also get dates>No Date>? where I would like Dates>No Date.

* Currently, each path through the tree structure must (and will, one way or another) be expandable to the esame number of levels.  If you try to have the tree structure dead-end when there aren't files in a particular catagory, you will tend to get empty children until you've reached the number of levels you've defined for everything else.

Hi,
maybe someone can help me: i work on an information center with statistics. one of the statistic value should have the total playback time like the official one intigrated in fb2k...
my issue is, that sometimes the pvar get more often updated (more often as second per second) i use this code, which stand in the // PerSecond part:

Code: [Select]
// PerSecond
$if(%_isplaying%,
$setpvar(total_playtime,$eval($getpvar(total_playtime)+1))
,)


thanks in advance for any reply...

bye plukin

* Try "%playback_time_seconds%".  If that's what you were looking for, you really should check out:
http://wiki.hydrogenaudio.org/index.php?ti...ormat_Reference

foo_ui_panels

Reply #1685
Hi,
maybe someone can help me: i work on an information center with statistics. one of the statistic value should have the total playback time like the official one integrated in fb2k...

Since you seem to not to want to use the official one, try something like this:

Code: [Select]
$ifequal(%playback_time_seconds%,$getpvar(total_playtime),,
        $setpvar(total_playtime,$eval($getpvar(total_playtime)+1))
        )
elevatorladylevitateme

foo_ui_panels

Reply #1686
Feature Request :

Hi, would there be a possibility to implement a custom ROTATE in the $imageabs2 function ?
Like rotating a specific amount of degrees ?

Thanks a lot

foo_ui_panels

Reply #1687
are there plans to make the up/down and enter keys active in single columns playlist? the page up, down, home and end work nicely

foo_ui_panels

Reply #1688
gob
Works fine...
Maybe check your keybord shortcuts ?
--------------------
--------------------

foo_ui_panels

Reply #1689
Resizing popups with button and WINDOWSIZE.

Is this possible? All I notice is that the parent window sizes change (what I don't want) and the popup stays the same. Is this a bug? Can this be changed in a future update of PanelsUI?

foo_ui_panels

Reply #1690
Feature request:

Allow users to set the order in which panels are drawn!

foo_ui_panels

Reply #1691
* The square character is usially displayed whenever a character comes up that is not defned in the currently used font, so try changing to a font that has more characters, like Arial Unicode MS.  Also, only the style settings accessed through the context menu change with changing config.  The layout settings that define the tree structure do not.

Thanks for the info. I worked around the squares by using the tags in my library layout, instead of %criteria%. I still don't understand how an undefined character got there (there aren't any in my tags).
* Foreign characters are often sorted unintuitively and incosistently.  It's a bit of a hack, but try something like "$replace($replace([criteria],D,d),Ö,o)".  You can nest like this as needed for all the strange sorting characters

And I worked around the d,D by using $caps(), I'll use the replace for the other characters.
* Currently, each path through the tree structure must (and will, one way or another) be expandable to the esame number of levels.  If you try to have the tree structure dead-end when there aren't files in a particular catagory, you will tend to get empty children until you've reached the number of levels you've defined for everything else.

I think this should be a feature, it would also make it possible to use my directory structure as tree structure.

foo_ui_panels

Reply #1692
Request

In ColumnsUI, there's an 'Activate now playing' menu option which selects the current track, which I've been binding to the F5 key.  Handy when you've scrolled away in a long playlist and want to get back quickly.  If this menu item was available in PanelsUI, I could finally get rid of ColumnsUI.

foo_ui_panels

Reply #1693
Request

In ColumnsUI, there's an 'Activate now playing' menu option which selects the current track, which I've been binding to the F5 key.  Handy when you've scrolled away in a long playlist and want to get back quickly.  If this menu item was available in PanelsUI, I could finally get rid of ColumnsUI.


It's there, I use it all the time within PanelsUI.  You might have to remap your F5 key to point to it, but it's there!

foo_ui_panels

Reply #1694
Sorry if it has been asked for before but will there be a depressed button image added to the $button() function?

foo_ui_panels

Reply #1695

* Foreign characters are often sorted unintuitively and incosistently.  It's a bit of a hack, but try something like "$replace($replace([criteria],D,d),Ö,o)".  You can nest like this as needed for all the strange sorting characters

And I worked around the d,D by using $caps(), I'll use the replace for the other characters.


$replace takes multiple pairs of arguments so you can put e.g. $replace(string,D,d,Ö,o,)  - much easier to read!

foo_ui_panels

Reply #1696

Hi,
maybe someone can help me: i work on an information center with statistics. one of the statistic value should have the total playback time like the official one intigrated in fb2k...
my issue is, that sometimes the pvar get more often updated (more often as second per second) i use this code, which stand in the // PerSecond part:

Code: [Select]
// PerSecond
$if(%_isplaying%,
$setpvar(total_playtime,$eval($getpvar(total_playtime)+1))
,)


thanks in advance for any reply...

bye plukin

* Try "%playback_time_seconds%".  If that's what you were looking for, you really should check out:
http://wiki.hydrogenaudio.org/index.php?ti...ormat_Reference


Oh, thats not what i search for  and i've checkt the reference often enough
i search a function to "save" the value of the already played seconds of every song you have played, just like the information in the fb2k config ("File"->"Preferences"->the "Playback" panel-> there under "Total Time Played". Or is there any function to get exactly this value? i dont have found something, so i want to write this function...

greetz

EDIT: @shakey_snake: this will only update the pvar "total_playtime" if the value is the same with %playback_time_seconds%. thats not what i want, too.
there is the option to make a function to add the song playtime to the pvar if the song is ending. but i want a per second update

foo_ui_panels

Reply #1697
It's there, I use it all the time within PanelsUI.  You might have to remap your F5 key to point to it, but it's there!
Are you sure, Maranatha?  If I remove ColumnsUI, I can't find any menu options to select the currently playing track.  Just in case I'm looking in the wrong place, can you tell me where you find yours?  Thanks.

foo_ui_panels

Reply #1698
Code: [Select]
$if($strcmp($get(coverPath),'Black\images\nocover.jpg'),,

$imageabs2($get(covers),$get(covers),,,,,$get(coverx),$get(covery),$get(coverPath),NOKEEPASPECT)
$drawrect($get(coverx),$get(covery),$get(covers),$get(covers),brushcolor-null pencolor-200-200-200 alpha-0)
$imageabs2($get(covers),$get(covers),,,,,$get(coverx),$eval($get(covery)+$get(covers)+5),$get(coverPath),NOKEEPASPECTROTATEFLIP-6 alpha-230)
$imageabs2($get(covers),200,0,5,0,0,$get(coverx),$eval($get(covery)+$get(covers)+5),/images\over.png,NOKEEPASPECT)
$drawrect(0,$eval($get(covery)+$get(covers)+200),%_width%,$eval(%_height%-$get(covery)+$get(covers)+200),brushcolor-0-0-0 pencolor-null)
)

What the hell is wrong with my code, I don't want to display album art if the coverPath is the nocoverpath is this not possible? $puts(coverPath,blabla) is written in my global variables...

foo_ui_panels

Reply #1699
How can I get a button in a track Display to give a key press (down) or (up) when clicked?