If you need to disable CAV display for a viewport (instead of per object), you
can do so via the display options.
(Display >) Display Options > Vertex Color > Never show (use material)
An alternate method for removing the current vertex color for an object in
scripting:
// JScript
var oObject = Selection(0);
oObject.ActivePrimitive.Geometry.CurrentVertexColor = null;
Matt
>> Ah great,a punch in the crown jewels just when I needed it. I could've =20
>> sworn I tried both None and "None"
>> Thx Vladimir.