QUOTE(sune @ Oct 28 2006, 18:59)

hi. I wanted to ask if there is a way to lock the panel mode.. I mean, keep it always in "now playing mode", not allowing it to change when you double click on it
I ask this cause I have made some playback buttons. The pause button switches to play when it is paused, and viceversa. So I've had to use something like: $if(%isplaying%, , ) but when I double click to turn volume up with another button I have on the panel, the mode switches, and the play/pause button does not display as it should. I hope I made myself clear.
If it's not possible consider it as a feature request
thanks in advance
sune
yeah, I don't like the double-click to change mode either... I will change it to a context menu option in the next version.
QUOTE(Yotsuya @ Oct 29 2006, 17:04)

Would it be possible to add a boolean value to $imageabs2() to reflect if an image exists? The current function appears to return a boolean of TRUE no matter what I throw at it. This would be useful so that we could do things like:
$if2($imageabs2(code for cover image),$imageabs2(code for no-cover image))
instead of the current layering approach which has some limitations and wastes resources.
I'll add a $fileexists or something similar (as well as wildcard support).
QUOTE(wolfsong @ Oct 29 2006, 20:57)

So I played a bit more and noticed a few oddities.
I'm guessing the font you have chosen in the "Font" section isn't tahoma 8.
Try this:
CODE
$calcwidth(Properties)|
$font(tahoma,8,,0-0-0)$calcwidth(Properties)
which should illustrate the problem.
also the command should match exactly with the menu item, so remove the space before properties.
this should work
CODE
$button2(0,0,0,0,$calcwidth($font(tahoma,10,,0-0-0)Properties),$calcheight($font(tahoma,10,,0-0-0)Properties),'$font(tahoma,10,,0-0-0)Properties','$font(tahoma,10,underline,0-0-0)Properties',Properties,)
or
CODE
$font(tahoma,10,,0-0-0)
$button2(0,0,0,0,$calcwidth(Properties),$calcheight(Properties),'$font(tahoma,10,,0-0-0)Properties','$font(tahoma,10,underline,0-0-0)Properties',Properties,)