Jump to content

Search the Community

Showing results for tags 'mouselclick'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 2 results

  1. How to solve the time-consuming problem of mouseclick on Win10 , which is more serious when I open the taskmanager process test: Opt("MouseClickDelay",0) Opt("MouseClickDownDelay",0) Local $hTimer,$s mousemove(0,0,3) for $i=1 to 10 $hTimer = TimerInit() ;MouseClick("left") ;MouseDown("left") MouseUp("left") _Wait(555) $s&=TimerDiff($hTimer)&@CR next exit msgbox(0,0,$s) Func _Wait($iTime) Local $hTimer=TimerInit() While TimerDiff($hTimer)<$iTime Wend EndFunc it works well on Win7 From Google Translator,Please forgive my poor English.
  2. I'm trying to use mouseclick in a panel above. I want to click on a list item, such as 'Estimated'. (I've given up on trying to use control click for this). I'm using window info coordinates from 'Control' tab. ; click 'Columns' WinActivate("Innovaya Studio with Sage (Archtectural 2017_V1.invx") MouseClick("primary", 292, 88, 1, 1) WinActivate("Select Browsing Properties") Sleep(1000) MouseClick("primary", 27, 70, 0,0) Sleep(2000) Send("{TAB}{TAB}{TAB}{TAB}{TAB}") Sleep(1000) Send("{ENTER}") ControlClick( But when I used the code Autoit doesn't click where the coordinates are. In the scipts it is the second MouseClick that won't work. Any ideas?
×
×
  • Create New...