Search found 124 matches

by BriHecato
14 Jan 2019, 12:00
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 110889

Re: AutoGUI 2.5

This "no preview" thing is a big disadvantage. When I reopen my project on the next day ( I created - saved - closed app - reopen app with already loaded yesterdays' scripts in tabs) I cannot use preview of current GUI anymore - AutoGUI is unable to "re-build" preview from script, despite the script...
by BriHecato
19 Aug 2018, 16:00
Forum: Ask for Help (v1)
Topic: ControlClick on Toolstrip / Toolbar with multiple buttons (same ClassNN)
Replies: 8
Views: 2172

Re: ControlClick on Toolstrip / Toolbar with multiple buttons (same ClassNN)

If this is any of WinAPI - each button will have different ClassNN.
by BriHecato
19 Aug 2018, 15:57
Forum: Ask for Help (v1)
Topic: How to click the mouse without moving the pointer
Replies: 6
Views: 8543

Re: How to click the mouse without moving the pointer

You can click without moving - just controlclik. I've set that way one "Realm Grinder" game on Kongregate - in browser on my second monitor - each click in any windows apart of browser made 3 clicks in browser in given coordinates (inside game area). With virtual machine there could be a little prob...
by BriHecato
19 Aug 2018, 15:50
Forum: Ask for Help (v1)
Topic: Enable hotkey if specific Browser-URL is accessed
Replies: 6
Views: 1654

Re: Enable hotkey if specific Browser-URL is accessed

Shouldn't the GetWinText function be before GroupAdd ?
by BriHecato
19 Aug 2018, 15:45
Forum: Ask for Help (v1)
Topic: Help me with my script
Replies: 2
Views: 703

Re: Help me with my script

And what have you already write ?
by BriHecato
19 Aug 2018, 15:44
Forum: Ask for Help (v1)
Topic: How do I do a function using WheelUp {ScrollAmount}?
Replies: 1
Views: 664

Re: How do I do a function using WheelUp {ScrollAmount}?

Each "wheelup" is one event (no matter how you set scrolling speed in browser, mouse settings or system settings). You could try use my topic for multiclicks here - https://autohotkey.com/boards/viewtopic.php?f=5&t=36919
With condition of numbers of "clicks", negative timer and labeled subroutine
by BriHecato
19 Aug 2018, 15:32
Forum: Ask for Help (v1)
Topic: help in creating script
Replies: 6
Views: 1348

Re: help in creating script

Probably you will not be able to send to text box in chrome without activating it. You can controlclick and controlsend in inactive windows and apps (but not minimized) if you have named controls (textbox or button) - if it is on the webpage it wouldn't work since whole chrome window is a single con...
by BriHecato
27 Jun 2018, 23:30
Forum: Ask for Help (v1)
Topic: Disable multiscreen hotkeys
Replies: 7
Views: 1590

Re: Disable multiscreen hotkeys

@divanebaba
This user is just using setup of two or more monitor screens for his work.

@E9B6
Disable screen identifying hotkeys in your graphic settings (graphic card drivers - geforce/ati/intel) start with rightclicking on the desktop and look for it.
It has nothing to do with AHK.
by BriHecato
24 May 2018, 05:39
Forum: Ask for Help (v1)
Topic: Is it possible to clone control into my gui?
Replies: 1
Views: 582

Is it possible to clone control into my gui?

Just like in topic - is it possible to clone (duplicate via steal) existing control (button, icon, combobox) form third party app into my gui?

What would i need for that ?
by BriHecato
23 May 2018, 23:26
Forum: Ask for Help (v1)
Topic: Will AutoHotKey Work for Me?
Replies: 4
Views: 1507

Re: Will AutoHotKey Work for Me?

What Cad? I'm using Autocad, zwcad, draftsight, gstarcad and quasi cad in Trutops suite. I was able to bind some commands onto mouse.
As long as your cad has some kind of command line it's a piece of cake (mostly).
by BriHecato
23 May 2018, 23:20
Forum: Ask for Help (v1)
Topic: Help with Toggle Rebinding Scripts
Replies: 3
Views: 987

Re: Help with Toggle Rebinding Scripts

scruffygamer wrote:
Xtra wrote:

Code: Select all

F2::Suspend
`::q
Thank you so much!
Please always mark as solved
by BriHecato
23 May 2018, 23:17
Forum: Ask for Help (v1)
Topic: Triggering an Action for Multiple ahk_class
Replies: 3
Views: 850

Re: Triggering an Action for Multiple ahk_class

Or you can create group of those two classes with
GroupAdd
by BriHecato
19 May 2018, 15:48
Forum: Ask for Help (v1)
Topic: Needing differentiate "same class - different app" Topic is solved
Replies: 9
Views: 2566

Re: Needing differentiate "same class - different app" Topic is solved

Guill wrote:Thanks to all!
The solution is:

Code: Select all

F11 ::
SetTitleMatchMode 2
IfWinExist, Writer
WinActivate

F12 ::
SetTitleMatchMode 2
IfWinExist, Impress
WinActivate

And what about if you have "Writer.txt" file opened in Notepad ?
by BriHecato
13 May 2018, 04:53
Forum: Ask for Help (v1)
Topic: Include vs tray icon little bug
Replies: 8
Views: 1891

Re: Include vs tray icon little bug

Hmm so if i write ... GlobalVar: #Include globavar.ahk Return, where globalvar.ahk will be just "plain text" like: numebrpi = 3.14 spaceandminus := " -" commandone := "_trim" It's gonna be alright ? "A script behaves as though the included file's contents are physically present at the exact position...
by BriHecato
13 May 2018, 01:27
Forum: Ask for Help (v1)
Topic: ClassNN in multiple GUIs vs tooltip Topic is solved
Replies: 2
Views: 806

Re: ClassNN in multiple GUIs vs tooltip Topic is solved

Thanks for assistance but I'm not creating gui nor pictures in loop. And freshly removed all hVar from gui elemenst (with previously used routine If (CurrControl <> PrevControl and not InStr(CurrControl, " ")) ) Was thinking how to differ guis and found that ahk_class and ahk_exe are unfortunately c...
by BriHecato
12 May 2018, 15:24
Forum: Ask for Help (v1)
Topic: ClassNN in multiple GUIs vs tooltip Topic is solved
Replies: 2
Views: 806

ClassNN in multiple GUIs vs tooltip Topic is solved

How to set or change ClassNN of a control (Picture) in my custom Gui? I've build 3 guis based on pictures (when clicked - gosub gPicLabel), simple kind of radial menu. 8x picuters in each GUI like that Gui, GUI1:Add, Picture, x y w Icon13 gGUI1Pic1Click, icons.dll I'm displaying tooltips for them wi...
by BriHecato
12 May 2018, 15:00
Forum: Ask for Help (v1)
Topic: Include vs tray icon little bug
Replies: 8
Views: 1891

Re: Include vs tray icon little bug

So how can i have "external" included ahk without label and returns ?
by BriHecato
12 May 2018, 14:57
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 110889

Re: AutoGUI 2.0

@BriHecato: see the comment of StefOnSteroids above, which is essentially the FAQ of AutoGUI. In regard to the resizing of controls, it can be accomplished in three ways: 1. by dragging the small rectangles around the control; 2. holding Shift while dragging the control (this way the snap to grid a...
by BriHecato
07 May 2018, 04:29
Forum: Ask for Help (v1)
Topic: Needing differentiate "same class - different app" Topic is solved
Replies: 9
Views: 2566

Re: Needing differentiate "same class - different app" Topic is solved

Exe is also the same - soffice.bin - so it wont work
Use proper wintitle - https://autohotkey.com/docs/misc/WinTitle.htm (Writer, Impress, Calc in the actual title bar of windowed application), and SetTitleMatch ,2

Go to advanced search