Search found 124 matches

by BriHecato
13 Apr 2018, 00:08
Forum: Ask for Help (v1)
Topic: How to make the easy-shift function?
Replies: 1
Views: 759

Re: How to make the easy-shift function?

Just write this extremely easy chordings XButton4 & LButton:: XButton4 & MButton:: on the end "release" XButton4::XButton4 This way your XButton4 works like "shift", I use it alot - globally and contextually (#ifwinactive) You can find my topic about this. You can use XMouseButtonControl aswell :)
by BriHecato
12 Apr 2018, 23:54
Forum: Gaming Help (v1)
Topic: send input at program starts
Replies: 37
Views: 6981

Re: send input at program starts

I would write script that run this exe (if possible) then wait for it to finish launching, then send your keys, then close script. ALl this behave like lnk windows shortcut but would be ahk script :)
Have you tried WinMove to resize app window?
by BriHecato
12 Apr 2018, 23:24
Forum: Ask for Help (v1)
Topic: middle click to copy paste like in linux that would work on globally and on chrome?
Replies: 6
Views: 2144

Re: middle click to copy paste like in linux that would work on globally and on chrome?

Use trick "switch"
After pressing button
if (clear clipboard -> set variable=0 -> copy clipwait -> set variable=1)
else if (variable=1 -> paste -> clear clipboard -> set variable=0)
all placed in MButton::
by BriHecato
12 Apr 2018, 23:18
Forum: Ask for Help (v1)
Topic: Convert multiple keys to one key Topic is solved
Replies: 2
Views: 566

Re: Convert multiple keys to one key Topic is solved

You cannot put more than 2 keys for one hotkey using "&".
This will work
Ctrl & Right::x
but this will not work
Ctrl & Right & Shift::x

You can write this to have 3 keys hotkey
^+f::x
What ^ and + means you can read in documentation ;)
by BriHecato
12 Apr 2018, 23:09
Forum: Ask for Help (v1)
Topic: Icons in exe - Compiler workaround Topic is solved
Replies: 10
Views: 1880

Re: Icons in exe - Compiler workaround Topic is solved

I must say that FileInstall does the trick - so I doesn't need to worry for icons (sort of :) ) I've found also this script - http://www.computoredge.com/AutoHotkey/Free_AutoHotkey_Scripts_and_Apps_for_Learning_and_Generating_Ideas.html#ImageList that display contents of my dll icon library. Anyway ...
by BriHecato
12 Apr 2018, 15:23
Forum: Ask for Help (v1)
Topic: Icons in exe - Compiler workaround Topic is solved
Replies: 10
Views: 1880

Re: Compiler Bug Topic is solved

That means, there's nothing wrong with the exe. That's why i titled this topic "Compiler bug" - i expected that icons will be in exe. This made compiler a little useless right now. Unless theres another way to make icons into exe file (other than resource hacking each build ..... :thumbdown: ) Mayb...
by BriHecato
12 Apr 2018, 15:18
Forum: Ask for Help (v1)
Topic: Icons in exe - Compiler workaround Topic is solved
Replies: 10
Views: 1880

Re: Compiler Bug Topic is solved

First - beggining of mycode 1:1 #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir...
by BriHecato
12 Apr 2018, 07:32
Forum: Ask for Help (v1)
Topic: Icons in exe - Compiler workaround Topic is solved
Replies: 10
Views: 1880

Icons in exe - Compiler workaround Topic is solved

My script include Menu, submenu and icons for menu items. When i'm launching *.ahk file - it works When I'm launching *.exe app from the same folder - it works When I'm launching *.exe from other location - it doesn't work : Got two error messages - unable to load icon (but app launch and sit in tra...
by BriHecato
10 Apr 2018, 02:50
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 113350

Re: AutoGUI 2.0

Defiantely need more themes or quick guide how to set it "my way" - white objects on black background are good for CAD not for CODE (such letters burn my eyes :P).
My current syntax.
Image

And second - where's paypal donate button?
by BriHecato
10 Apr 2018, 02:48
Forum: Ask for Help (v1)
Topic: trouble remapping right shift and page up
Replies: 1
Views: 375

Re: trouble remapping right shift and page up

Maybe try to "Send".
by BriHecato
10 Apr 2018, 02:31
Forum: Ask for Help (v1)
Topic: How to handle using Teamviewer launch and dialogues?
Replies: 2
Views: 551

Re: How to handle using Teamviewer launch and dialogues?

I can use AHK scripts in TeamViewer without problem when launch them both on host and quest machine.
Problems can be when remote desktop switch XButton1 wit XButton2. And unfortunately wheel tilt doesn't work.
by BriHecato
06 Apr 2018, 08:00
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 425309

Re: AutoGUI - Script Editor and GUI Designer

Are there any themes?
Why not exe ?
by BriHecato
06 Apr 2018, 02:00
Forum: Bug Reports
Topic: Bug with replication of script when reload
Replies: 6
Views: 2768

Re: Bug with replication of script when reload

About my scripts. 1. global remapping mouse keys + chordings to simple commands (like copy, paste, print..) 2. additional mapping for some keys bound to application - sending more complex command (like double and triple click in autocad invoking move rotate trim extend commands) 3. functions working...
by BriHecato
05 Apr 2018, 23:16
Forum: Ask for Help (v1)
Topic: Help with %A_BACKSPACE% Topic is solved
Replies: 5
Views: 1505

Re: Help with %A_BACKSPACE% Topic is solved

Alright @jeeswg it's obvious :)
... But he was FileAppending :P
by BriHecato
05 Apr 2018, 23:14
Forum: Ask for Help (v1)
Topic: Need help with something that should be "simple" Topic is solved
Replies: 14
Views: 2149

Re: Need help with something that should be "simple" Topic is solved

Harvest_ wrote: I don't really care........ I have zero clue of what I'm doing, I'm here for an answer
That's not the way it works.
by BriHecato
05 Apr 2018, 07:53
Forum: Ask for Help (v1)
Topic: Help with %A_BACKSPACE% Topic is solved
Replies: 5
Views: 1505

Re: Help with %A_BACKSPACE% Topic is solved

- Btw, if I wanted to suggest a way of removing the first character from a text file, via FileAppend, that I knew wouldn't work, it would involve Ctrl+Home and Del, not Backspace. Although admittedly Ctrl+Home, Right, Backspace would be another possibility. Do you think it would work that way? Shor...
by BriHecato
05 Apr 2018, 07:49
Forum: Ask for Help (v1)
Topic: Need help with something that should be "simple" Topic is solved
Replies: 14
Views: 2149

Re: Need help with something that should be "simple" Topic is solved

You really do not read what people link to you - especially my topic i've linked. "~" and while are completely expendable.

Your script works perfectly as you wrote it : right-then-left.
by BriHecato
05 Apr 2018, 02:32
Forum: Ask for Help (v1)
Topic: Sending a Key to an Inactive Window
Replies: 2
Views: 610

Re: Sending a Key to an Inactive Window

Look closer at
ControlSend command and it's parameters
Send key down
Sleep
Send key up
by BriHecato
05 Apr 2018, 02:28
Forum: Ask for Help (v1)
Topic: Need help with something that should be "simple" Topic is solved
Replies: 14
Views: 2149

Re: Need help with something that should be "simple" Topic is solved

To be honest those kind of button chording isn't explained - I also have some problem with it.

@Harvest - chek my topic - https://autohotkey.com/boards/viewtopic.php?f=5&t=35440

Go to advanced search