Getting ints out of TextFields
I need to be able to have the user write a number into a text field and then put that number into a int. Unforunately, as you probably know, TextFields only have GetString, no GetInt, so I was wondering if there was some soultion to allow me to take ints from TextFields or an objecct like a TextField. If this is not possible it would be nice to know how to convert Strings to Int (assumeing they hold only numbers of course) or at least how to find the ASCII value of a char so I could write a String to Int method myself.

