--- In [email protected], "ciber_slash" <[EMAIL PROTECTED]> wrote: > > Help please, how to make the menu in some columns, That menus it was > split into columns depending on the screen resolution? > At me now: > now_menu > <http://smages.com/32/f8/32f8d77e1c681af69f24fa08e722c262.png.htm> > I want to make: > want_menu > <http://smages.com/17/03/17033516b6f30a7dff036e8ea0aa1ff0.png.htm> > My config: > test.pcf <http://rapidshare.com/files/149595209/test.zip.html> > > > > [Non-text portions of this message have been removed] >
If you insert the following three lines into the menu, then the column separate will only happen if the vertical resolution is less than or equal to 600 pixels: Command: format Action: contextif Parameters: (yscreen<=600) Command: format Action: newcolumnline Command: format Action: endcontext You can also do a range of resolutions with something like Parameters: (yscreen>=600 && yscreen<=1200) So one approach would be to create a set of the above three commands for each resolution depending on where you wanted the new columns for that resolution.
