Jump to content

KiLLer001

Members
  • Posts

    12
  • Joined

  • Last visited

KiLLer001's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. love this though what would make it even better if it detected a Boolean value ( True or False ) is opened a combobox with True or false or a popup or something like that
  2. just found the .net indentify thing see if that works for me gives alot of error's while used as the udf states gues nosolution there ... is there really no way of a one time identification of the instance ?? maybe i could include the window info tool let it get the instance store it then close it well time to use the window info tool on the window info tool i guess just seems kinda ridiculous is theyre really no other easier way ??
  3. controll tab show's no extra info atleast no usefull one ID changes every reload of the program, Position as said changes cause if scrolling, Size changes cause of window size, Controll click coords change cause of Window size and scrolling, Handle changes after every load really the only thing i can use is the instance ( the only that doesnt change on every load but is just diffrent from user to user )
  4. ill show you some screenshot from diffrent users targetting the same controll this is why im presented with this problem it's a program that aquire's it's subscription list online so it's diffrent from user to user but always the same for a specified user. I know the position seems the same but once to scroll down it wont be .... rather challenging ( working fine if i give everybody a personal version but just want to automate this ) before you start saying use the name of teh control here is the list of all the controll names toolStrip3 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 toolStrip1 guess what it is one of the toolStrip1
  5. Name is shared over many controls and the location changes if scrolled down so im relying on the instance id since that is trully the only relyable way
  6. Only once since it diffrent from user to user but always the same for that specifik user
  7. Dear Members.. Does anybody have a solution for my challenge since im working on something and it's presenting a challenge i cant handle The program im making the automation for has the following problem, once i change it's subscription the instance ID of the button i need to press changes. Does there exits a way for me to like at first run of my tool it asks to press the correct button then it record's/ stored the instance in a variable for me to work with at a later time I know hat this will present the problem since recording / Keylogging is not allowed albeit that im not constantly using it it's just for initial identification purposes ( much like the window Info "Finder tool" works for me but not for the other users). Pleas help i cause i know theyre should be a solution out there
  8. Dear users At one time back in the day i used autoit to read teamspeak 2 info like when somebody log's in to the server etc and relayeed that to a game chat channel like i did for World of warcraft But with teamspeak 3 until this point i'm unable to do so what i would really like is the folowing that it would read the tekst in the bottom window of teamspeak 3 this is the window with all the chat and login and logout info and that autoit would be able to send this to a certain program for every new line that is added was wondering if this is still possible and if so pleas show how and yes i tried ControlGetText though that only gets me qt_scrollarea_viewport and i want the actuel tekst P.s: Here is the code i used for TS2 $text = ControlGetText("TeamSpeak 2","","TRichEditWithLinks2") $avarray = StringSplit($text, @CR) $LastRowText = _ArrayMax($avarray) $linefeed = $LastRowText -1 MsgBox(0, "", $avarray[$linefeed])
  9. I have the following problem im developing a tool to turn off screensaver set startpage of inet connect to a set wifi network but i lost my source could any developr pleas PLEASE decompile it for me i know you guys probaly think i stole it i can tell you some functions it does but i dont wanna rebuild it you see ( i know im an idiot to lose it A BIG FAT ONE ). i can say it imports a wifi profile by doing a cmd call to import the profile ,it deactivates uac also it makes a energie schedule so the pc wont go ito sleep mode the schedule has the name MyCom but i ask of you guiys and yes i know decompiling aint possible anymore but maybe i thought that somebody could cause i really need it pleas PM me or mail me at l.c.zalm@gmail.com and ill send you the file Please help im desperate
  10. its oke just fixed it ,myself set the @LF to @CR and that does work atleast for the txt file but not for teamspeak works now it seems like it has an empty line at end now i made it $text = ControlGetText("TeamSpeak 2","","TRichEditWithLinks2") $avarray = StringSplit($text, @CR) $LastRowText = _ArrayMax($avarray) $linefeed = $LastRowText -1 MsgBox(0, "", $avarray[$linefeed]) and that does work
  11. until now i have this #include <Array.au3> While 1 $var1 = ControlGetText("TeamSpeak 2","","TRichEditWithLinks2") sleep(2000) $var2 = ControlGetText("TeamSpeak 2","","TRichEditWithLinks2") If $var1 = $var2 Then ;; Else $avarray = StringSplit($var2, @LF) $LastRowText = _ArrayMax($avarray) MsgBox(0, "", $avarray[$LastRowText]) Endif Wend and that doesnt seem to work only gives an empty msgbox with really nothig in it i also tested your script on a notepad window with same text as example but also gives empty msgbox
  12. Well eeerhem the problem i have is this i want it to read from the "TRichEditWithLinks2" controll in teamspeak wel thats easy also i made it compare one and a new one so it only shows when somethinng new is added but i have one more question how do i let it only return the last line ??? in short if a controll has like 20 lines how do i let it only return the last line ??
×
×
  • Create New...