Jump to content

DarkDragon

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by DarkDragon

  1. no i'm using the alphanumeric keypad
  2. Yes I'm sure. Whe I type the dots the program doesn't work because show 0 ont he msgbox
  3. I send the "." character to Notepad and it has the focus.
  4. You want to send only the first number, soo you should use the StringLeft() function. Func EnterICD($code="92929", $returnVN=1) MCL(1706,758) ;Click level or service window $code=StringLeft($code, 1) ;This function catch only the first number of the variable from the left side of the string Send( "{" & $code & "}" ) EndFunc Try this script it must work fine.
  5. Func EnterICD($code="92929", $returnVN=1) MCL(1706,758) ;Click level or service window Send( "{" & $code & "}" ) EndFunc Why it doesn't work?
  6. I run the script and It doesn't work. It return 0 on the msgbox.
  7. I know how to send strings to a program with ControlSend(), but in my opinion there isn't a function to send mouse movements to a windows in background. I'm sorry but I can't help you.
  8. Hello Cryofus! So if I understand you want to create a script that send mouse movements to a specified task that can be minimized. Have I understand?
  9. Thank you for the answer but the code that you send doesn't function.
  10. RichardL can you please post the script. Have you checked that the screens have the same resolution?
  11. $Cont=0 While 1 HotKeySet("E", End) HotKeySet( ".", point_character) WEnd Func point_character() $Cont=$Cont+1 HotKeySet(".") Send(".") EndFunc Func End() Msgbox(0, "How many points have you put?", "You have put: " & $Cont, 1000) Exit EndFunc This is the script.
  12. When I use Hotkeyset(".") in a script, it doesn't recognize the point, soo doesn't do nothing. I test to use _IsPressed but in a while cycle it doesn't function corectly. Can who help me?
×
×
  • Create New...