- This topic has 22 replies, 8 voices, and was last updated 19 years ago by UDG Clan.
-
AuthorPosts
-
April 20, 2005 at 3:23 pm #189764DepartureMember
hmmm i have’nt really thought about it that much, but i guess you could get the text from the about dialog in paltalk and then set a palsend version from there, in mean time using options is’nt going to hurt
April 21, 2005 at 2:50 am #189763xavier01Membernice idea about the .bas.
to have it auto select is pretty simple, just do
if palver = window handle 1 blah blah blah then
send blah blah blah
elseif palver = window handle 2 blah blah blah then
send blah blah blah
elseif palver = window handle 3 blah blah blah then
send blah blah blah
end if
havent looked at your code but you get the idea, just make a palver in .bas file, and make the call to it and it will check to see what pal ver it is and send the appropriate send for it .
April 21, 2005 at 3:04 am #189762HackwoodMemberYou could always check the filesize of Paltalk.exe to determine version, cause im sureit changes everytime they update.
Just a thought
April 21, 2005 at 5:15 am #189761DepartureMemberxavier01 yeap i like that idea about getting the window handel :O)
it would’nt be hard to write code for that
June 11, 2005 at 5:17 am #189760AhFoxMemberwhy not .. check if handle 0
IF handle = 0 then we performace search FindWindow
Otherwise … we do not performace anythingWen can send message at the end …
‘ Examples
handle = getParentWindow(title here);
If (handle=0) //b90
//check for other build
End If
sendMessageToChatroom(handle, message)June 12, 2005 at 11:24 pm #189759AdminAdministrator@NVYE wrote:
why not .. check if handle 0
IF handle = 0 then we performace search FindWindow
Otherwise … we do not performace anythingWen can send message at the end …
‘ Examples
handle = getParentWindow(title here);
If (handle=0) //b90
//check for other build
End If
sendMessageToChatroom(handle, message)because theres only one part of the code that paltalk changes everytime to update there client… the part of the code they change was explained by Admin and you can get the new part they change by using “PAT or JK’s API SPY” which is in Admins download area here on his site.
July 18, 2005 at 2:02 pm #189758DepartureMemberI found some code that automatically subclasses down to a control you have decided on and considering that paltalk always uses richedita for its textbox it very simple to find , also for the button control. So in other words the auto subclassing code does the work for you instead of doing all that coding :O) ahhh and you have to use a API spy because once again the auto subclasser does it for you :O)
July 18, 2005 at 2:03 pm #189757DepartureMemberopps… i meant you DONT have to use a API spy
-
AuthorPosts
Related
- You must be logged in to reply to this topic.