I've been slowly tweaking the Slider skin. I've accomplished the layout I want except when using the System Information module. When the Information module is in use, the Agenda module contains a lot of blank space.
Any suggestions on what to tweak to eliminate the blank area will be appreciated.
Below are samples of both a well functioning screen and the Information screen with the empty area (red box).
Thanks.
-Bob-
You need to change the following line in the region 8 section:
if,region,8,0
calcspace,225,var15
else
calcspace,265,var15
endif
Change the number until you get what you want. For what you did you might be able to remove the first calcspace all together. It would look like this:
calcspace,265,var15
I have not tried this so play around.
Thanks. Looks like that's the answer. I'll experiment a bit more.
-Bob-
Blazingwolf,
Just an update; I made the changes you suggested.
if,region,8,0
calcspace,265,var15
else
calcspace,265,var15
endif
Interestingly, I could not remove the first parameter and the 'else' line, even though the numbers are the same. If I did, the screen failed to refresh properly.
Thanks again for your help.
-Bob-
The "if" statement must always have a matching "else" so you can have:
if
statements...
else
statements...
end if
or
if
statements...
else
end if
or
if
else
statements...
end if