> Is is possible to say something like: > width = screenwidth-86 Yes, indeed. Just get necessary values from screen[s].workarea table which have x, y, width and height properties. Use this peace of code for example:
width = screen[s].workarea.width - TRAYER_HEIGHT * MAX_NUMBER_OF_ICONS Don't forget replace TRAYER_HEIGHT and MAX_NUMBER_OF_ICONS with actual values or vaiables. With multi-monitor configuration you will be experiment a little to recognize right way of calculations. -- To unsubscribe, send mail to [email protected].
