rugby148
Sep 28 2005, 08:07 PM
What errors have you discovered in the VIPP Reference Manual?
Where in the manual is the error?
What version of the manual?
What is incorrect about it?
rugby148
Sep 29 2005, 11:20 PM
VIPP Reference Manual - VIPP Worlkflow 3.3 (3/2005)
Page 240
Examples using SETVAR.
In the manual:
/VAR.COUNT 0 /INI SETVAR
IF VAR.COUNT 2 eq
{ (slipsheet) SETMEDIAT
0 NL PAGEBRK
/VAR.COUNT 0 /SETVAR
}ENDIF
/VAR.COUNT ++
Correction:
/VAR.COUNT 0 /INI SETVAR
IF VAR.COUNT 2 eq
{ (slipsheet) SETMEDIAT
0 NL PAGEBRK
%Within the following line the "/" needs to be ommited.
/VAR.COUNT 0 SETVAR
}ENDIF
/VAR.COUNT ++
Not a major error, but if your learning or tired, this can hang you up for quite some time.
VIPP Reference Manual - VIPP Worlkflow 3.3 (3/2005)
Page 231
Examples using SETTXB.
In the manual:
This example illustrates how to activate underlining and light gray.
UNDL SETTXB
PB_LT SETTXB
Correction:
Actually Requires the "/"
/UNDL SETTXB
/PB_LT SETTXB
The example should also not that these settings are not sequential (one on top of the other). The grey replaces the underlining.
Another non major ommision, but nontheless a time waster if you are learning.