On May 27, 2006, at 12:36 PM, Brian Heibert wrote:
Due to the question where is the space bar?
I am working on a update that will have a space bar
But I got a few questions
Here's a example of how the on screen keyboard adds a letter to the
edit field
spt.text = spt.text+"O"
Here's what I got to add a space but it doesn't work right yet
dim save as string
save = spt.text
spt.text = " "+save
It puts the space before the word how do I get it to go at the end
of the edit field add a space so the user can press a key or type
another word
Also if your wandering what spt is it is the edit field or text
field (whatever you want to call the place you type in the words
you want the computer to speak)
I just had a thought
spt.text = save+" "
I just tried spt.text = save+" "
and it appeared to do nothing
So how would I give the edit field focus and tell it to put the
space after the word the user types not before?
Without seeing your code I can only tell you what I see.
When one types into the text area, the insertion point moves
correctly. When one uses your 'keyboard', the insertion point stays
at the beginning of the text. You are using some string manipulations
without understanding the reaction in your editfield.
Terry
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>