Jump to content

p00pies

Members
  • Posts

    8
  • Joined

  • Last visited

p00pies's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Dude if you feel the need to be a pompus ass then fine please do so on others. Last I checked this was posted to the "general help and support" forum not the "pompus jack ass" forum. Please forgive me if I read that wrong. If this is the kind of treatment you give people then it's no wonder as to why people leave here after a short time, as far as help is concerned I will gladly find it else where thank you all for your time.
  2. Thank you for the constructive criticism but it is not an array. They are cords for a mouse to move along. If you have any children may god help them.
  3. Ok Im working on what would be considered a simple script but for the life of me I cannot figure out why I keep getting errors. I have tried everyway I can think of to resolve them and now I turn to you all for assistance. This is the errorI get from the 2 below ERROR: syntax error Global $Location[1.1] = ( This is what Im working on so far Global $Clientwidth = 1158 Global $Clientheight = 892 Global $pause = 0 Global $Mousespeed = 0 Global $Location[1.1] = 100, 378 Global $Location[1.2] = 100, 397 Global $Location[2.1] = 100, 416 Global $Location[2.2] = 100, 435 Global $Location[3.1] = 100, 455 Global $Location[3.2] = 100, 473 Global $Location[4.1] = 100, 493 Global $Location[4.2] = 100, 512 Global $Location[5.1] = 100, 531 Global $Location[5.2] = 100, 550 Global $Pixel = 0x050505 I have tried it like this and like below Global $Clientwidth = 1158 Global $Clientheight = 892 Global $pause = 0 Global $Mousespeed = 0 Global $Location[1.1] = (100, 378) Global $Location[1.2] = (100, 397) Global $Location[2.1] = (100, 416) Global $Location[2.2] = (100, 435) Global $Location[3.1] = (100, 455) Global $Location[3.2] = (100, 473) Global $Location[4.1] = (100, 493) Global $Location[4.2] = (100, 512) Global $Location[5.1] = (100, 531) Global $Location[5.2] = (100, 550) Global $Pixel = 0x050505 Also I have been working on a Pause / Terminate function that works just fine on one script that I wrote but will not work on another script even though I copied and pasted it. HotKeySet("{Pause}", "Pause") HotKeySet("{Esc}", "Terminate") I think Im doing it correctly but I keep getting an error ERROR: Terminate(): undefined function. HotKeySet("{Esc}", "Terminate") and ERROR: Pause(): undefined function. HotKeySet("{Pause}", "Pause") Func Pause() TrayTip("PAUSE", "The Script Has Been Paused", 3) If $pause = 1 Then $pause = 0 Else $pause = 1 EndIf EndFunc ;==>Pause Func Terminate() Exit 0 EndFunc ;==>Terminate
  4. Thank you that works great
  5. Would it be possible to use HotKeySet("{HOME}", MouseClick("Left")) HotKeySet("{END}", MouseClick("Right")) for mouse button clicks
  6. My bad it finally worked and thats because I noiced that I had 4 other instances of the sae script running. Thank you Brett
  7. Ive just tried what you said and it still does not work. Below is all that I have in the script and all Im trying to do is get it to click on my start button. #cs ---------------------------------------------------------------------------- AutoIt Version: 3.3.2.0 Author: myName Script Function: Template AutoIt script. #ce ---------------------------------------------------------------------------- ; Script Start - Add your code below here Moving() Func Moving() MouseMove(50, 785, 10) Sleep(2000) MouseClick("Left") Sleep(70000) EndFunc ;==>Moving
  8. this is what I'm attempting and I dont know why it will not work. Func moving() MouseMove(123, 456, 10) Sleep(2000) MouseClick("Left") Endfunc The script will run but the mouse will not move or click on anything. Any assistance or guideance will be helpfu Thank You
×
×
  • Create New...