Search found 64 matches

by Gweek
25 Nov 2016, 13:56
Forum: Scripts and Functions (v1)
Topic: EitherMouse 0.8 - Multiple mice, individual settings...
Replies: 392
Views: 226167

Re: EitherMouse 0.64 - Multiple mice, individual settings...

Hey gwarble thanx for creating this tool but will you be able to add a Grab and drag feature in your tool this feature will let the user use touch like features with mouse for example plz watch this video https://streamable.com/mvhv (don't worry it's only a 35 second video) if you want more example ...
by Gweek
03 Sep 2016, 16:46
Forum: Ask for Help (v1)
Topic: I want to Initiate a Registry file when the user closes word 2016
Replies: 3
Views: 1157

Re: I want to Initiate a Registry file when the user closes word 2016

Try using a timer and RegWrite to add the keys or values to the registry every time the user closes Microsoft word 2016. https://autohotkey.com/docs/commands/SetTimer.htm https://autohotkey.com/docs/commands/RegWrite.htm https://autohotkey.com/docs/commands/Process.htm https://autohotkey.com/board/...
by Gweek
03 Sep 2016, 15:30
Forum: Ask for Help (v1)
Topic: I want to Initiate a Registry file when the user closes word 2016
Replies: 3
Views: 1157

I want to Initiate a Registry file when the user closes word 2016

Good morning guys, I want some help from you guys as you can tell from the title I need a simple ahk or any type of script that activate my Registry file when the user closes Microsoft word 2016 and this should happen without any dialogues boxes simply means I don't want any interruptions from any d...
by Gweek
24 Jun 2016, 22:16
Forum: Scripts and Functions (v1)
Topic: ToggleNic, and DuMeter
Replies: 37
Views: 16007

Re: Turn Network device on/off by application

Hey megnatar Now it's working fine but can't we disable two network connection or multiple network connections at the same time &
and can't we just enable and disable via a keyboard shortcut forexample press start+shift+e to toggle enable/disable the network connections
by Gweek
21 Apr 2016, 09:50
Forum: Ask for Help (v1)
Topic: 1
Replies: 8
Views: 2741

q

q
by Gweek
20 Apr 2016, 16:22
Forum: Ask for Help (v1)
Topic: 1
Replies: 8
Views: 2741

Re: Script not working On Windows 10 UWP APPS (Metro Apps) & Sticky Notes but fine one everywhere else

just me wrote:Google might shed light on it, search for
UWP site:AutoHotkey.com
It didn't
by Gweek
19 Apr 2016, 05:29
Forum: Ask for Help (v1)
Topic: 1
Replies: 8
Views: 2741

w

w
by Gweek
18 Apr 2016, 20:17
Forum: Ask for Help (v1)
Topic: 1
Replies: 8
Views: 2741

1

q
by Gweek
06 Apr 2016, 16:27
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

The FileToHEX won't pop up any message box, it only copy the result to clipboard (with additional a "SoundBeep" that maybe your PC can't produce or you didn't noticed). Well I thought of that possibility after sawing the code but on my case there is no sound and it doesn't copy anything on my clipb...
by Gweek
06 Apr 2016, 16:16
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

What I have tried and worked was: Convert your png file to icon file Convert icon file to hex data using FileToHEX.ahk Replace the IconDraggingHex variable Or below is a way to use the base64 data of png file: (I've resized your png file to a 32x32 size canvas.) ; DRAGGING png data ; http://tu.etan...
by Gweek
06 Apr 2016, 14:05
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

The original script does change the systemtray icon and the mousecursor while scrolling. https://autohotkey.com/board/topic/55289-dragtoscroll-universal-drag-flingflick-scrolling/ I managed to change it to the PNG-image you linked by converting it to .CUR and then using SKAN's FileToHEX on it. Just...
by Gweek
06 Apr 2016, 12:27
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

but first tell me does it work on .png like this http://blog.vjeux.com/wp-content/uploads/2012/07/closed-mac.png Do I have to first convert this png file to .cur You have to convert it to a .cur file first. There are some web services that convert image files (such as .png) to cursor files (.cur) f...
by Gweek
06 Apr 2016, 12:18
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

but first tell me does it work on .png like this http://blog.vjeux.com/wp-content/uploads/2012/07/closed-mac.png Do I have to first convert this png file to .cur You have to convert it to a .cur file first. There are some web services that convert image files (such as .png) to cursor files (.cur) f...
by Gweek
06 Apr 2016, 11:48
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

Hello Droyk. Changing the cursor in any AutoHotkey scripts GUI windows is quite simple and all you have to do is to follow these steps: 1 - Load the cursor using DllCall (standard windows cursors can be loaded without a file, other cursors must have a .cur file somewhere) 2 - Acquire a handle to th...
by Gweek
06 Apr 2016, 10:31
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

You could use FileToHEX from Skan by dropping the PNG-image onto this script and then pasting the HEX data: ;https://autohotkey.com/board/topic/58853-crazy-scripting-stringslice-for-filetohex/ ; StringSlice() for FiletoHex - www.autohotkey.com/forum/viewtopic.php?t=8728 ; by SKAN Suresh Kumar A N, ...
by Gweek
06 Apr 2016, 09:11
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Re: Change the cursor of the script

Masonjar13 wrote:I can tell you that it needs to be at line 1512, IconDraggingHex. But that's about all I can do.
I already know that but the problem is I don't know how to get the hex of http://blog.vjeux.com/wp-content/upload ... ed-mac.png can you tell me that
by Gweek
06 Apr 2016, 07:51
Forum: Ask for Help (v1)
Topic: Change the cursor of the script
Replies: 16
Views: 4852

Change the cursor of the script

Hey guys Good evening I want some help I want to change the cursor of this script /* DragToScroll.ahk http://www.autohotkey.com/forum/viewtopic.php?t=59726 Scroll any active window by clicking and dragging with the right mouse button. Should not interfere with normal right clicking. See the discussi...
by Gweek
21 Jan 2016, 12:49
Forum: Scripts and Functions (v1)
Topic: RunAsTask() - Auto-elevates script without UAC prompt
Replies: 121
Views: 76035

Re: RunAsTask() - Auto-elevates script without UAC prompt

joedf wrote:Oh metroapps? nooooo nooo.... that's not going to work... They launch by app-references not by file path...
you didn't understand i am not bypassing uac for metroapps i am bypassing uac for some other networking work.........but sadly uac just a nuisance right now ...it makes my work tooo hard

Go to advanced search