i was trying with the api createTextCursor() without lucky. All that i can achieve is to change the whole control text color..
maybe is not possible ?
Code: Select all
		Content = form.getByName( "textcontrol" )
		Curs = content.createTextCursor()
		Curs.goRight(11, True)
		Curs.CharColor = RGB(256, 128, 64)
		Curs.gotoEnd(true)
		Curs.charcolor = RGB(255, 0, 0)