identifying variables

hi guys sorry for the disturbance,

I’ve copied a free Java script regarding how to paint in unity. without #pragma strict it runs fine, but at the time i added #pragma strict, a bundles of error appear telling Unknown identifier.

now i know that i have to identify each of this variable but the problem is what type of data type this variable handles.
example:

r = GUILayoutUtility.GetAspectRect (1);

hsb = new HSBColor (c);

cp = Vector2 (r.x+r.width/2,r.y+r.height/2);

hope someone could help me about this stuff… :frowning:

thanks guys

usually the type of the variable should be what is returned by the expression on the right side.
let me guess:
r Rect
hsb HSBColor
cp Vector2
i would suggest getting a decent ide as it should tell you the type of an expression by mouse over.