Interation step within a range ???

Hi!

How can I tell my script the interation steps within a range. I have a script like this …

tell application "Adobe InDesign CC 2014"
	tell selection of active document
		repeat with j from 1 to 2000
			set baseline shift of character j to ((random number from -2 to 3 by 0.1) as integer)
		end repeat
	end tell
end tell

… but I’m not sure where to put the 0.1-steps

Thanks for your help!

You can multiply by and divide by 10 to get the right results:

(random number from -20 to 30) / 10