Object
In VidyaVitamin, the parts name specified by the form designer is treated as an object name with the class of a corresponding parts. For example, when you would like to change the background color of Parts1 into red, you carry out such as
Parts1.bgcolor = "red";
. The parts name and the object are always a pair and these declarations are unnecessary. If it is the other object, you newly create by new or a static method.
var [Object name] = [Object name].[Static method]([Initialize variable]);
ver [Object name] = new [Object name]([Initialize variable]);