Jump to content

Recommended Posts

Posted

Hey, im new to autoit and im having trouble to remap some keys; what im trying to do exactly is to trigger the right mouse button, when "F" is pressed and the left mouse button when "R" is pressed, however i just cant get it to work.

#include <Misc.au3>

$dll = DllOpen("user32.dll")
While 1
    If _IsPressed("f", $dll) Then
        MouseClick("right")
    EndIf
WEnd
DllClose($dll)
i've already tried replacing MouseClick with Send("{02}"), however neither works, when i run the script and press F,

i only get that "dung" sound wich happens when you click on an application you cant interact with and the context menu(for example) wont open aswell

Posted (edited)

A new problem has come to light!

although it works now and is exactly doing what i want it to do, there is a HUGE problem with cpu usage.

this is the current code

#include <Misc.au3>

Opt ("MouseClickDelay", 50)
Opt ("MouseClickDownDelay", 50)
$dll = DllOpen("user32.dll")
While 1
    If _IsPressed("46", $dll) Then
        MouseClick("left")
    EndIf
WEnd
DllClose($dll)
when im holding/pressing the key(F), cpu usuage is normal, however when idling

and not pressing F cpu usage rises to up to 25%, whats up with that?

edit: in case anybody wants to suggest to add some kind of keybind to pause the script, thats

not what im looking for at the moment, i want to let the script run indefinitely in the background

so that im able to press F and trigger the mousebutton as i need it

Edited by fabel02
Posted

Put a sleep in the While loop, either after the EndIf or before the If lines.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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