Skip to content

Paltalk 9.2 Apis

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #187831
    Admin
    Administrator

    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 🙂

    #187834
    Departure
    Member

    well 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.

    #187833
    Admin
    Administrator

    But 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)

    #187832
    Snoopy1968
    Member

    yeh 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?

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.