- This topic has 4 replies, 3 voices, and was last updated 18 years ago by AhFox.
-
AuthorPosts
-
February 17, 2006 at 6:26 pm #189037AdminAdministrator
🙂 have anyone made programs for inspeak can they share the code 🙂 I interested in knowing how to send text for starters 🙂
February 18, 2006 at 3:56 am #189041AhFoxMemberi’ve tried but with no sucess .. inSpeak is weird …
but can be done though … if I put more time on it … then i’ll figure it out!
February 18, 2006 at 4:00 pm #189040AdminAdministratorI was trying to, wtf is this tmemo lol I cant send no text to that shit but I keep on trying when I have time
February 18, 2006 at 4:16 pm #189039AhFoxMemberTrying to figure it out …
1. Use different method instead of finding the class like Paltalk.
2. Think of another way ……
3. See if you can solves the problem ….
I’ll post my method next time ….. share with me what have you come up.
February 19, 2006 at 3:39 pm #189038NewbieMemberThe Send Text Does Work , But For Some Reasons API Can’t Find The Right Child ClassName Look At This:
Dim tchatroom As Long, tspanel As Long, tmemo As Long
tchatroom = FindWindow(“tchatroom”, vbNullString)
tspanel = FindWindowEx(tchatroom, 0&, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, 0&, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, tspanel, “tspanel”, vbNullString)
MsgBox (tspanel) ‘ lost Focus Here
tspanel = FindWindowEx(tspanel, tspanel, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, 0&, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, 0&, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, 0&, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, tspanel, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, tspanel, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, 0&, “tspanel”, vbNullString)
tspanel = FindWindowEx(tspanel, 0&, “tspanel”, vbNullString)
tmemo = FindWindowEx(tspanel, 0&, “tmemo”, vbNullString)
Call SendMessageByString(tmemo, WM_SETTEXT, 0&, “This Is Only A Test”)Try This :
tmemo = FindWindowEx(tspanel, 0&, “tmemo”, vbNullString)
Call SendMessageByString(tmemo, WM_SETTEXT, 0&, “This Is Only A Test”)
replace the tspanel = temporary handle that you see in API Spy . Ex: 856574 -
AuthorPosts
- You must be logged in to reply to this topic.