Hi Greg,It may just be the way you have posted, but there are two
things:"Var" should be "var" and".rawvalue" should be ".rawValue"If the
variables are global variables then you need to use the .value to access
and set the value of the variable. However if they are script variables,
then you don't need the .value (or .rawValue)var fav_colour; // declared
but not setvar fav_food; ...some script...fav_colour = "Red"; fav_food =
"Apples"; You can also set the value of the variable, when you declare...