Search found 189 matches

by Johana
16 May 2017, 13:39
Forum: Ask for Help (v1)
Topic: The code GUI is breaking my autohotkey
Replies: 3
Views: 716

Re: The code GUI is breaking my autohotkey

I've now tried different things for hours. Still breaking it :( Any ideas guys?
by Johana
16 May 2017, 10:10
Forum: Ask for Help (v1)
Topic: The code GUI is breaking my autohotkey
Replies: 3
Views: 716

The code GUI is breaking my autohotkey

Today I tried to make a dropdownlist but for somereason my other msgbox command opened up and basically ruins Everything. Something tells me the code is very old. Could someone please suggest what I can do? Gui, add, Text,, Question1: Gui, add, edit, vx1 Gui, add, Text,, Question2: Gui, add, edit, v...
by Johana
10 May 2017, 02:44
Forum: Ask for Help (v1)
Topic: Mouseclick - Sending to wrong X Y
Replies: 3
Views: 770

Re: Mouseclick - Sending to wrong X Y

Rohwedder wrote:Hallo,
just a try.
Replace

Code: Select all

WinActivate, ahk_id %title%
MouseClick, left,  638,  35
with

Code: Select all

WinActivate, ahk_id %title%
WinWaitActive, ahk_id %title%
CoordMode, Mouse, Window
MouseClick, left,  638,  35
Didn't work, sending me to the same cords as Before :/
by Johana
10 May 2017, 02:41
Forum: Ask for Help (v1)
Topic: Creating a variable for several commands?
Replies: 3
Views: 740

Re: Creating a variable for several commands?

You could shorten it like this: number := 118 Send,{HOME}%number%{SPACE}{CTRL DOWN}v{CTRL UP}{LEFT 13}{DEL 2}{RIGHT 11}{ENTER} And then change the variable that contains the number as needed. I would suggest using a function: ::118-:: MyFunc(118) Return MyFunc(number) { WinWait, Skitar- Internet Ex...
by Johana
10 May 2017, 02:11
Forum: Ask for Help (v1)
Topic: Creating a variable for several commands?
Replies: 3
Views: 740

Creating a variable for several commands?

Hey again guys and Girls. I have several commands I use, they basically do the same thing except for the suffix.. Can I do a variable so I don't need loads of text on each command? Here is an example: ::118-:: WinWait, Skitar- Internet Explorer, IfWinNotActive, Skitar - Internet Explorer, , WinActiv...
by Johana
10 May 2017, 02:01
Forum: Ask for Help (v1)
Topic: Mouseclick - Sending to wrong X Y
Replies: 3
Views: 770

Mouseclick - Sending to wrong X Y

This is my code: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. TitleSet := 0 #':: if !TitleSet { title := WinExist("Interaction Desktop") TitleSet := 1 Sleep, 500 return ...
by Johana
08 May 2017, 03:21
Forum: Ask for Help (v1)
Topic: Ifwinexist - It's opening a new window all the time
Replies: 7
Views: 1874

Re: Ifwinexist - It's opening a new window all the time

AFAICS it's an IE issue and not especially related to AHK ... There are plenty of request like yours on the web like [here] :wtf: It might make sense to have a request with Microsoft directly! Thanks but not sure if it is related to IE to be honest. Because it's not about opening in a new tab or wi...
by Johana
03 May 2017, 09:03
Forum: Ask for Help (v1)
Topic: Ifwinexist - It's opening a new window all the time
Replies: 7
Views: 1874

Re: Ifwinexist - It's opening a new window all the time

Thanks guys but none of these worked. It opens window after window and not finding the existing window. How would I go about to put the url in a variable? What can I do? :(
by Johana
02 May 2017, 02:41
Forum: Ask for Help (v1)
Topic: Ifwinexist - It's opening a new window all the time
Replies: 7
Views: 1874

Ifwinexist - It's opening a new window all the time

Hello everyone! I am trying a simple code after my co worker introduced me to this awesome software! Here's the code: (I have change the urls for security reasons) ^':: IfWinExist http://bla.blfa.com/Something/Somedocuments/processes/One Note for them/some-file-for-me.pdf - Internet explorer WinActi...

Go to advanced search