Skip to content

Windows 8 with Paltalk

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #186717
    Winter
    Member

    Today i found something. With Windows 8 the handle will be same for some section.

    Pal

    The Handle of # 1 and # 2 are same. So the way fast Bounce of Loco or the bn.exe will be not working any more? Maybe need to run paltalk crack to do this job 😆 😆

    #186730
    Chike
    Member

    Huh? #1 and #2? Are you talking in code?

    #186729
    String
    Member

    @winter wrote:

    the handle will be same for some section.

    But, don’t they have a different index?

    #186728
    Winter
    Member

    But, don’t they have a different index?

    Using PAT or JK’s API SPY to know the Windows handle of the place i want to work.
    Use API SendMessage to send a text to this Windows Handle, the text Complaint will be change.

    If my Index is wrong, the Window handle not same with PAT or JK’s API SPY or maybe the PAT or JK’s API SPY is not compatible with Win8.

    #186727
    dj-psycho
    Member

    Hello, Yes the same remark and I’ve the same problem with Win7, I had try to find a solution but until now nothing, the iResult = SendMessageByString(iHnd, WM_SETTEXT, 0, sReason) not working. I thing the paltalk had changed the method for we can’t do the quick bounce. 🙁

    #186726
    Chike
    Member

    Please post the code. It may be you find the wrong window.

    #186725
    Admin
    Administrator

    Umm if i recalled the bn.exe looks for the “Ready to bounce:” window 🙄

    here the code anyways 🙂

    #186724
    Chike
    Member

    That’s one big mess of a code. Why use the EnumWindows when simple FindWindow will do? And when you enumerating windows and found what you want you should return false to stop enumeration.
    Also you call GetClass twice.

    #186723
    Admin
    Administrator

    lol man that’s old I think round 2008 when i first made it but i should update it 🙂 with enum

    #186722
    Chike
    Member

    It does use WnumWindows which in this case is over kill.

    #186721
    Admin
    Administrator

    But I mean using the index instead of title, that prob will fix the windows incompatible issue 🙄

    #186720
    Chike
    Member

    We’re talking about the “Ready To Bounce” window, what index?

    #186719
    Admin
    Administrator

    man the textbox where u put that reason for bounce 🙂 I mean if it can be done by using index 🙄

    #186718
    Chike
    Member

    Can? Yes, Should? No.
    You only do one FindWindowEx why replace it with EnumChildWindows.
    You can also get rid of the EnumWindows and use FindWindow, and replace the four WM_KEYDOWN/KEYUP with a single WM_COMMAND.
    And finalyy, clean up the mess, to count use integer not text, instead of just counting search for the window, if it’s there bounce, if not you can still count to decide if to stop waiting wich shouldn’t normaly happen.

    on load:
    enable timer
    reset counter

    on timer:
    find window,
    if not found increase timer, if timer = x quit
    else
    bounce and quit

    no need for doevents and find the window again once its found

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