eNforcer
Jul 25 2007, 17:08
I want to call the playlist dropdown component in a panels_ui configuration but I don't know how, exactally.
$panel(______________ <-- what do I place there?
Here is the component:
http://wiki.hydrogenaudio.org/index.php?ti...lists_dropdown)
Yotsuya
Jul 25 2007, 17:45
Syntax:
$panel(name,component,x,y,width,height,options)
Where:
name - is any arbitrary but unique name for the panel
component - is the Case Sensitive name of the component you wish to load, in this case "Playlists Dropdown"
x - is the horizontal position for the upper left corner of the panel
y - is the vertical position of the upper left corner of the panel
width - is the width of the panel, x + width will give you the horizontal position of the lower right corner of the panel.
height - is the height of the panel, y + height will give you the vertical position of the lower right corner of the panel.
options - afaik there are no options available yet, just leave this part blank.
Example:
$panel(Lists,Playlists Dropdown,0,0,150,20,)