Posted by member 79626 on 2004-01-23 23:17:55 link
I have not actually played with DeskFolder, but most LS configs follow the same logic. You have 2 different options here.
"IF TopBar" This says "if the bar is at the top of the screen, do the following" The ELSE condition's code is invoked if the bar is not at the top. The important part (in your case) begins; postion(...
The arguments passed to Position and Size are in the format x,y.
position(0,10) size (70, $ResolutionY-100$)
- means -
location-> 0 pixels over, 10 pixels down
size -> 70 pixels wide, by your Y resolution
minus 100
Just adjust the size parameters until all your icons fit.
"IF TopBar" This says "if the bar is at the top of the screen, do the following" The ELSE condition's code is invoked if the bar is not at the top. The important part (in your case) begins; postion(...
The arguments passed to Position and Size are in the format x,y.
position(0,10) size (70, $ResolutionY-100$)
- means -
location-> 0 pixels over, 10 pixels down
size -> 70 pixels wide, by your Y resolution
minus 100
Just adjust the size parameters until all your icons fit.