Search found 47 matches

by Vaklev
09 Nov 2019, 01:44
Forum: Ask for Help (v1)
Topic: Mouseclick Randomly in a variable time of 10-20min
Replies: 1
Views: 411

Mouseclick Randomly in a variable time of 10-20min

Hi guys, I'm trying to loop a script to automatically click the mouse anytime between 10 min and 20 min once started, and then repeat the timer to click between another 10 and 20 min and so on, any ideas how I can do that?
by Vaklev
21 Oct 2019, 12:23
Forum: Ask for Help (v1)
Topic: How do you auto highlight text based on space between words? Topic is solved
Replies: 5
Views: 1326

Re: How do you auto highlight text based on space between words? Topic is solved

Hi, have a look at this example: MyCopiedText := "George Mathew Coman" NameArray := StrSplit(MyCopiedText, A_Space) Loop, % NameArray.Length() { MsgBox % NameArray[A_Index] } return StrSplit will return an array that is structured like this: ReturnedArray := Array("George", "Mathew", "Coman") Each ...
by Vaklev
21 Oct 2019, 10:57
Forum: Ask for Help (v1)
Topic: How do you auto highlight text based on space between words? Topic is solved
Replies: 5
Views: 1326

Re: How do you auto highlight text based on space between words? Topic is solved

Wow that is the solution I was looking for! But I've never used String Split, can you please write out the code in how it would fit into mine im not sure where to place it but I will use the send left key to move to the next word which skips the space thank you so much!
by Vaklev
21 Oct 2019, 10:34
Forum: Ask for Help (v1)
Topic: How do you auto highlight text based on space between words? Topic is solved
Replies: 5
Views: 1326

How do you auto highlight text based on space between words? Topic is solved

Hi guys, I am trying to make a macro to autohighlight words, copy and paste them in different fields, example data: "George Mathew Coman <---- Mouse position starts here" The data structure is based on 3 words, I have to input the 3 names of the person in different fields so I have a mousemove comma...
by Vaklev
29 Aug 2019, 14:38
Forum: Ask for Help (v1)
Topic: IE Visible Without Active With COM
Replies: 2
Views: 781

Re: IE Visible Without Active With COM

AHK does not have an unactivate window command, your best bet if you don't want it popping up is to throw in a winactivate command for a diff window you want active, or:

https://www.autohotkey.com/docs/commands/WinMinimize.htm
by Vaklev
29 Aug 2019, 12:36
Forum: Ask for Help (v1)
Topic: How to Copy Word, Move Mouse to Previous word?
Replies: 2
Views: 794

How to Copy Word, Move Mouse to Previous word?

Hi guys, I am double clicking to highlight words and copy them, lets say I am copying the following: Ivan Yordanovitch Petrov I will start from right to left, move my mouse over the word Petrov, send a copy script, then I want to move the mouse to the word prior "Yordanovitch", and then copy that an...
by Vaklev
16 Aug 2019, 12:00
Forum: Ask for Help (v1)
Topic: Internet Explorer Window Manipulation
Replies: 1
Views: 523

Internet Explorer Window Manipulation

Hi guys, I was reading somewhere you can take a window and manipulate it's size, does anyone know what the command for that is? I have a window on internet explorer that im using through a custom application at work that has taken out the full screen option, I wanted to use AHK to make the window fu...
by Vaklev
14 Aug 2019, 12:15
Forum: Tutorials (v1)
Topic: How to Check if Webpage is Loaded (Google Chrome, Firefox, Internet Explorer)
Replies: 13
Views: 23382

Re: How to Check if Webpage is Loaded (Google Chrome, Firefox, Internet Explorer)

I've been using image recognition and doing a search for a small portion of the screen, works perfectly fine for me and the pixel get color never worked as good, I guess everyone's application methods are different, we have to use whatever works!
by Vaklev
14 Aug 2019, 11:57
Forum: Tutorials (v1)
Topic: Intro to AutoHotkey Udemy course
Replies: 20
Views: 21003

Re: Intro to AutoHotkey Udemy course

I am no longer a noob when it comes to ahk, I managed to create my own rpa script for work around (3000 lines of code), however I am always looking to learn more about RPA, I started out with simple commands, then I expanded to ocr and image search, combined with if then statements and finally I was...
by Vaklev
13 Aug 2019, 11:13
Forum: Ask for Help (v1)
Topic: COM Error Msg When Relauncing Internet Explorer
Replies: 3
Views: 884

COM Error Msg When Relauncing Internet Explorer

I get the following messege after I close my active internet explorer window and run my COM command to relaunch it: "Error: 0x800704A6 - A system shutdown has already been scheduled. ---> Line# 078: wb:=ComOjbCreate("InternetExplorer.Application") Continue Running script? Yes No" Here is my code: ^+...
by Vaklev
13 Aug 2019, 10:17
Forum: Ask for Help (v1)
Topic: Script Won't Run with Monitors Off Topic is solved
Replies: 2
Views: 1047

Re: Script Won't Run with Monitors Off Topic is solved

The five minute wait starts after you dismiss the message box. Could it be that you only do that when you see it with a monitor that's on? You are 100% correct sir! Thank you! No wonder it was working before I added the msgbox and then it wasn't, I will just add a command to close the msgbox within...
by Vaklev
13 Aug 2019, 09:21
Forum: Ask for Help (v1)
Topic: Script Won't Run with Monitors Off Topic is solved
Replies: 2
Views: 1047

Script Won't Run with Monitors Off Topic is solved

Hi guys, I made a script to lock windows within 5 mins, what I like to do is turn off my monitors and walk away from my desk, and then running the following script with a 5 minute wait time before the lock windows is executed. However it doesn't seem to work when the monitors are off, it only starts...
by Vaklev
11 Jun 2019, 13:21
Forum: Ask for Help (v1)
Topic: GUI New Tab Not Working
Replies: 1
Views: 535

GUI New Tab Not Working

Hi guys, I have a GUI that adds a +1 to my count every time it picks up an image, but my code is glitching out please help, I want tab 1 to show just the total reports completed, tab 2 to show reports completed during each hour, but I do not know how to link a label according to the time, also my te...
by Vaklev
04 Jun 2019, 09:04
Forum: Off-topic Discussion
Topic: Learn how to protect your Intellectual Property in this free AHK webinar
Replies: 38
Views: 441082

Re: Learn how to protect your Intellectual Property in this free AHK webinar

I missed it! Is there a posting of the session anywhere that I can watch?
by Vaklev
31 May 2019, 15:55
Forum: Ask for Help (v1)
Topic: Identifying Space Between Data to Copy
Replies: 7
Views: 1331

Re: Identifying Space Between Data to Copy

Hey man I just downed 5 pints on lunch with my buddy at work, but when I sober up I will definitely try and give my feed back lol thanks!
by Vaklev
31 May 2019, 13:12
Forum: Ask for Help (v1)
Topic: Identifying Space Between Data to Copy
Replies: 7
Views: 1331

Re: Identifying Space Between Data to Copy

Are you sure you need to copy the names one at a time? Can't you copy them all at once and then sort them once they are copied? Let's say we copy all 3 names to clipboard, is there a way to paste the content separately? In that case, we paste each one in seperate coordinates and bam problem solved!...
by Vaklev
31 May 2019, 13:04
Forum: Ask for Help (v1)
Topic: Identifying Space Between Data to Copy
Replies: 7
Views: 1331

Re: Identifying Space Between Data to Copy

I'm having a hard time understanding the above, don't worry about the code for copying and pasting into corresponding field I got that covered, what im trying to solve is this: Ivan Georgiev Petrov <------ (let's send the mouse here and start dragging it from right to left until it hits the first le...
by Vaklev
31 May 2019, 12:26
Forum: Ask for Help (v1)
Topic: Please Help woth Simple Copy and Paste Script
Replies: 19
Views: 13221

Re: Please Help woth Simple Copy and Paste Script

Try this: ^z:: Send {lcontrol down}c{lcontrol up} Send {lalt down}{tab}{lalt up} Send {lcontrol down}v{lcontrol up} Send {lalt down}{tab}{lalt up} Return *Numpad3:: Send {lcontrol down}c{lcontrol up} ClipWait run C:\Users\Default\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\Window Switch...
by Vaklev
31 May 2019, 12:20
Forum: Ask for Help (v1)
Topic: Identifying Space Between Data to Copy
Replies: 7
Views: 1331

Identifying Space Between Data to Copy

Hi guys, I am trying to automate a function at my job, basically I have to populate people's names and addresses, copy and paste into corresponding fields in a form, but some clients have 3 names, some have 6, I was thinking I could create a script that would copy the entire content into clipboard, ...
by Vaklev
31 May 2019, 09:51
Forum: Ask for Help (v1)
Topic: Copy Stored Variable to Clipboard Topic is solved
Replies: 4
Views: 1121

Re: Copy Stored Variable to Clipboard Topic is solved

Hellbent wrote:
31 May 2019, 09:49
Put the msgbox after you put it into your clipboard

Edit, I'm happy to hear it man.
Wow I feel dumb lol such a simple fix.... thanks man haha

Go to advanced search