TodayPlus Boards v2

TodayPlus for the Pocket PC Forums => Help and Support => Topic started by: rebecker on December 17, 2003, 01:58:23 PM

Title: System Info Region In Slider Skin Question
Post by: rebecker on December 17, 2003, 01:58:23 PM
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-
Title: System Info Region In Slider Skin Question
Post by: Blazingwolf on December 17, 2003, 03:15:21 PM
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.
Title: System Info Region In Slider Skin Question
Post by: rebecker on December 17, 2003, 05:56:01 PM
Thanks. Looks like that's the answer. I'll experiment a bit more.

-Bob-
Title: System Info Region In Slider Skin Question
Post by: rebecker on December 18, 2003, 01:18:03 PM
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-
Title: System Info Region In Slider Skin Question
Post by: fishboy on December 18, 2003, 03:35:17 PM
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