Jump to content

Help Please!


Scooter22
 Share

Recommended Posts

Can someone tell me what i need to add in this script down below to make it where when i let go of the >>  If _IsPressed("70", $dll) Then  <<     the script pauses and when i press if_isPressed(70) again it picks back up were it stopped instead of just pressing the 70 and it going through automatically. thanks!

 

 

#include <Misc.au3>

$dll = DllOpen("user32.dll")

While 1
    Sleep (40)
    If _IsPressed("70", $dll) Then
  
  
  
  Mouseclick("left", 988, 672)  
  Sleep(500)
  Send("{CTRLDOWN}")
  Sleep(500)
  Send("{v}")
  Sleep(500)
  Send("{CTRLUP}")
  Sleep(500)
  Mouseclick("left", 940, 601, 3)  
  Sleep(500)
  Send("{a}")
  Sleep(500)
  Mouseclick("left", 919, 643)  
  Sleep(500)
  Mouseclick("left", 1048, 583) 
    
    
    EndIf
WEnd

DllClose($dll)

Link to comment
Share on other sites

Welcome to Autoit and the forum!
Which program do you try to automate? Mouseclicks and Send isn't very reliable as it depends on screen resolution and window position and might interfere with user actions.
Most of the time there are more reliable ways to do what you are looking for.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

BTW: Could you please give more meaningful titles to your threads? Everyone here is looking for help ;)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Well thanks for commenting and not helping!

Water asked you a fair question and gave reasons as to why your approach might not be the best depending on what you are trying to accomplish.  Sounds like he was trying to help to me. 

Link to comment
Share on other sites

Welcome to Autoit and the forum!
Which program do you try to automate? Mouseclicks and Send isn't very reliable as it depends on screen resolution and window position and might interfere with user actions.
Most of the time there are more reliable ways to do what you are looking for.

It is a script i made for a game i play. I am not the most advanced with AutoIT. MouseClicks and send is mostly all i know currently. And it seems to do the trick. I just need alittle help adjusting it. All help appreciated!

Link to comment
Share on other sites

Looks like you missed to read the forum rules on your way in. Please do so now!
Game automation of any kind is not allowed on this forum.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

  • Moderators

Scooter22,

water is quite right - please read the Forum rules - particularly the bit about not discussing game automation - before you post again.  Thread locked.

But welcome to the AutoIt forum - and see you soon with a legitimate question I hope.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...