Jump to content

Recommended Posts

Posted

hey guys can u help me to recode ahk to au3 script

^!LButton::send {WheelDown}

means when ctrl+lalt+lmousrbutton pressed ... send mouse wheel down once

btw script is selfexplanatory

thx in advance

Posted (edited)

Several possibilities. I suggest a setting hotkey ^! to run a function which checks if the left mouse is clicked. The function should probably time out. In the help file, look at the functions: MouseWheel, HotKeySet and IsPressed.

Edited by czardas
Posted (edited)

thx for fast reply ... it don't take me forward cuz i messed up with those function before ...

_ispressed ... hotkeyset not the new strings for me ... i can't add mouseclick on a hotkeyset

and second way if _ispressed (01) nothing happens on mousewheel -.-"

btw trying hard since hours -.-"

Edited by shimushi
  • Moderators
Posted

shimushi,

trying hard since hours

So what code have you tried that has not worked? :huh:

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

 

Posted (edited)

nah it's just a line wich i mentioned above

^!LButton::send {WheelDown} <- thats ahk script ... just simple hotkey to mousedown

it's ok i tried first to eleminate wrong strings so cutted whole script to 0 lol

#include <Misc.au3>

HotKeySet("{!}{^}")

Do

until _IsPressed (1)

MouseWheel("down")

how to set 2 buttons at hotkeyset?

Edited by shimushi
Posted (edited)

I can see why my idea doesn't work. Modifier keys can not be used on their own for a hotkey without another key press, such as a letter key. Here's a working solution anyway.

#Include <Misc.au3>

$dll = DllOpen("user32.dll")

While 1
    Sleep(10)
    If _IsPressed("11") And _IsPressed("12") And _IsPressed("01") Then MouseWheel("down", 1)
WEnd

DllClose($dll)

I think it's a bad idea to combine mouse wheel with Ctrl because many apps behave differently. You could perhaps wait for keys to be released. It's all rather clumsy IMO.

Edited by czardas
  • Moderators
Posted (edited)

shimushi,

After the first 24hrs and 3 posts that limit is lifted - you can post as much as you like now. :)

M23

Edited by Melba23
Typo

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

 

  • Moderators
Posted

nullschritt,

How kind of you to point out my typo. :thumbsup:

I will try very hard not to make any more, but I am sure you will point out any that I miss. :)

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

 

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
×
×
  • Create New...