Jump to content

dudenyc

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by dudenyc

  1. Nice monoceres, trick of the trade . Thank you for your help .
  2. Hello, The TCP protocol has been killing me for that past couple of days. I tried to figure out how to send a keystroke from a client to a server using TCP. For example, I want to send the keystroke "{ENTER}" to the server with this syntax:" TCPSend($ConnectedSocket, "{ENTER}")oÝ÷ Ø¥²kçmè^Æö¥¹êÔÄFG²jÊ®¢Ýªê-jëh×6TCPSend($ConnectedSocket, "0D") What I get on the sever is the text {ENTER} or 0D instead of the keystroke of ENTER key. Please suggest me how to solve this problem . Any input is highly appreciated .
  3. Ah, I've tested your little proggie xcal and it worked beautifully. Thanks for your quick reply Kudos to other guys also, for your opinions ^^
  4. Hello all, here is an example of my problem: HotKeySet ("{F3}", "Send_2") HotKeySet ("{F4}", "Click") HotkeySet ("{END}", "Stop") ;********** Send_1 ********** Func Send_2 () While (1) Send ("2") WEnd EndFunc ;********** Click ********** Func Click () While (1) MouseClick ("Right") WEnd EndFunc ;********** Stop ********** Func Stop () While (1) Sleep (1000) Wend EndFunc ;********** Repeater ********** ; Continuous Loop Of Program. While (1) Sleep (1) WEnd oÝ÷ ØÚ0#§¶Ú+º{a{gîËb¢{nÞ¥ªÚW¥É»­!©pk+!j÷µ~éܶ*'®éçxµ«báh­ìZ^¦·¬²)à|"[ØÛø¿n·©y«^v§£ kzË"xÂ)e²Ú)¶ºw-í¢Ç§v&öþ/Ûjwh¢¸ ×%É" Þ¥æ­yÙrwH¶.Zn­rx§Øh±íºw-ì¶¶«~ÞÅ©©ébæ®¶­s`£²¢¢¢¢¢¢¢¢¢¢6öÖ&ò¢¢¢¢¢¢¢¢¢ ¤gVæ26öÖ&ò vÆR Ö÷W6T6Æ6²gV÷Cµ&vBgV÷C² 6VæBgV÷C²"gV÷C² tVæ@¤VæDgVæ0 But it's very inconvenient since I have more complicated functions to run "parallely" later on. Any input on how to run multiple functions paralelly in one scripting program will be greatly appreciated. Thanks a bunch in advance guys .
  5. Thanks 4 your quick replies guys. Kudos to JdeB and Examiner
  6. Hello all, I've been having troubles with IF... NOT ... ELSE statement. For Example: ********************************** While (1) $pos = MouseGetPos() If $pos[0] NOT 840 Then ; <---------- problem MouseCLick("Left", 840, 540, 1, 1) Sleep(100) EndIf WEnd ******************************** How to write a proper IF ... NOT statement? I've tried: If $pos[0] NOT = 840 Then .... ; <-------- Did not work Aslo tried If NOT $pos[0] = 840 Then .... ; <-------- Did not work Any comment is appreciated Thank 4 your helps.
×
×
  • Create New...