Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public sub InsertText(iInsPoint as Integer, sInsString as String)
rtBox.text = rtBox.text.substring(0,iInsPoint) & sInsString & rtBox.text.substring(iInsPoint+1,rtBox.text.lenght-(iInsPoint+1))
end sub