I would like to know whether the App Inventor have any "proper" way to convert the integer to string?
e.g.: toString() in C++
Currently i am using an indirect way,using "trim" function in the string to convert the integer to string.
There is no conversion from integer to string necessary, just use the variable as it is.
Same for string to integer. In this case you might want to test first, if it is a number using the is a number
block, see also http://appinventor.mit.edu/explore/ai2/support/blocks/math.html#isnumber.
A very good way to learn App Inventor is to read the free Inventor's Manual here in the AI2 free online eBook http://www.appinventor.org/book2 ... the links are at the bottom of the Web page. The book 'teaches' users how to program with AI2 blocks.
There is a free programming course here http://www.appinventor.org/content/CourseInABox/Intro and the aia files for the projects in the book are here: http://www.appinventor.org/bookFiles
How to do a lot of basic things with App Inventor are described here: http://www.appinventor.org/content/howDoYou/eventHandling .
Also do the tutorials http://appinventor.mit.edu/explore/ai2/tutorials.html to learn the basics of App Inventor, then try something and follow the Top 5 Tips: How to learn App Inventor