Hi there folks, I've googled a bit for this but not had much luck. I was wondering if it's possible to assign numeric variables to have a minimum / maximum value, or else to increment them similarly in AS3.
e.g. i += j 'to a maximum of' x
It seems a bit clunky and bulky to correct this using if statements afterwards. (i.e. if i > x then i = x ).