- This topic has 3 replies, 3 voices, and was last updated 17 years ago by Departure.
-
AuthorPosts
-
July 25, 2007 at 3:21 am #187831AdminAdministrator
Well this is weird, when I try to send text to paltalk 9.2 with the old code which is this
Dim parent, child, alt, rich20 As Long
parent = FindWindow("DlgGroupChat Window Class", Form1.Text1.Text)
child = FindWindowEx(parent, 0, "WTL_SplitterWindow", vbNullString)
child = FindWindowEx(child, 0, "WTL_SplitterWindow", vbNullString)
child = FindWindowEx(child, 0, "WTL_SplitterWindow", vbNullString)
child = FindWindowEx(child, 0, "WTL_SplitterWindow", vbNullString)
alt = GetWindow(child, GW_Child)
alt = FindWindowEx(alt, 0, "atlaxwin71", vbNullString)
alt = FindWindowEx(alt, 0, "#32770", vbNullString)
rich20 = FindWindowEx(alt, 0, "RichEdit20A", vbNullString)
rich20 = FindWindowEx(alt, rich20, "RichEdit20A", vbNullString)
Call SendMessageSTRING(rich20, WM_SETTEXT, 0&, Text$)
Call SendMessageLong(rich20, WM_KEYDOWN, 13, 0&)Does not work, but is I use this
Dim parent, child, alt, rich20 As Long
parent = FindWindow("DlgGroupChat Window Class", Form1.Text1.Text)
child = FindWindowEx(parent, 0, "WTL_SplitterWindow", vbNullString)
child = FindWindowEx(child, 0, "WTL_SplitterWindow", vbNullString)
child = FindWindowEx(child, 0, "WTL_SplitterWindow", vbNullString)
child = FindWindowEx(child, 0, "WTL_SplitterWindow", vbNullString)
alt = GetWindow(child, GW_Child)
alt = GetWindow(alt, GW_HWNDNEXT)
alt = FindWindowEx(alt, 0, "atlaxwin71", vbNullString)
alt = FindWindowEx(alt, 0, "#32770", vbNullString)
rich20 = FindWindowEx(alt, 0, "RichEdit20A", vbNullString)
rich20 = FindWindowEx(alt, rich20, "RichEdit20A", vbNullString)
Call SendMessageSTRING(rich20, WM_SETTEXT, 0&, Text$)
Call SendMessageLong(rich20, WM_KEYDOWN, 13, 0&)Works fine, just by adding
alt = GetWindow(alt, GW_HWNDNEXT)
Thas nano codes, 🙂 but that works is just weird how it use to wrok fine before 🙂
Anyways I am working on my programs to upgrade them 🙂
July 25, 2007 at 12:16 pm #187834DepartureMemberwell it looks to be another level to subclass down to, I have yet to check out the class order of the paltalk 9.2 scene edition, But I did some small coding on an old project called “Multi TriggerBot and added a fading option that I have been meaning to add for a long time.
This project did’nt get many downloads on the old starbase.se site, But I my self find it the most usful out of the programs I have made for paltalk, And had spent many hours coding it from scratch.
July 25, 2007 at 1:08 pm #187833AdminAdministratorBut what i found weird, is that when I use api spy is the same I mean same structure as 9.1 but it don’t work 🙄
Then I remember tha nano gave me a code for getting the room list with the next thingy code, so I use it to check and it work lol 8)
September 16, 2007 at 4:50 pm #187832Snoopy1968Memberyeh thanks for the tip simpe quesiton what is the code for adding the special charater paltalk uses for Yes theres a special charater under the Y isntthere?
-
AuthorPosts
Related
- You must be logged in to reply to this topic.