Search found 203 matches

by Vh_
19 Aug 2017, 16:42
Forum: Announcements
Topic: [closed][POLL] Commissions sub-forum
Replies: 107
Views: 65136

Re: [POLL] Commissions sub-forum

+1!

I think it'd be great to have a section for that. Then those willing to pay may get the request done faster, as those wanting to earn will check that sub forum more often.
by Vh_
19 Aug 2017, 16:30
Forum: Ask for Help (v1)
Topic: I need help modifying a clipboard script
Replies: 3
Views: 779

Re: I need help modifying a clipboard script

Read up on ControlGetText. :D
by Vh_
19 Aug 2017, 16:19
Forum: Ask for Help (v1)
Topic: Import data from Excel into another program.
Replies: 17
Views: 5368

Re: Import data from Excel into another program.

If I understand correctly, you are wanting to go down the list. Try this! :thumbup: #SingleInstance,Force XL := ComObjActive("Excel.Application") F2:: ;or just add a loop, until (var = "") :) var := XL.ActiveCell.Value ;capture the current cell's data. XL.ActiveCell.Offset(1,0).Select ;Select the ne...
by Vh_
19 Aug 2017, 15:51
Forum: Ask for Help (v1)
Topic: Opening folders
Replies: 36
Views: 5539

Re: Opening folders

post your code that is failing. :)
by Vh_
19 Aug 2017, 01:11
Forum: Ask for Help (v1)
Topic: Executions Per Hour
Replies: 0
Views: 444

Executions Per Hour

Hello, I'm looking to make something that gives an active status on executions per hour, and minute. I would add this to scripts that do repeated actions, such as a script that is modifying accounts in a program I use. The purpose would be to track productivity, and instant satisfaction with out man...
by Vh_
10 Aug 2017, 18:18
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6176

Re: Check if a box is checked in an other program

This particular checkbox is called "Button1", but a lot are called "Checkbox1" or something. [img] https://gyazo.com/56d9dfcff426c92860883b99fa30e6d5[/img] ControlGet, IsChecked, Checked,, Button1, Snipping Tool Options ;IsChecked = OutputVar, Checked = CMD value,, Checkbox8=Class, WinTitle the prog...
by Vh_
10 Aug 2017, 07:33
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6176

Re: Check if a box is checked in an other program

ControlGet, IsChecked, Checked,, CheckBox8, WinTitle ;IsChecked = OutputVar, Checked = CMD value,, Checkbox8=Class, WinTitle Msgbox, % IsChecked ;Checked: Sets OutputVar to be 1 if the checkbox or radio button is checked or 0 if not. Edit: removed original code. ControlGet, Checked,, Checkbox1, Win...
by Vh_
09 Aug 2017, 20:47
Forum: Ask for Help (v1)
Topic: Windows 10? AutoHotkey Window Title, etc.
Replies: 10
Views: 2957

Re: Windows 10? AutoHotkey Window Title, etc.

It may be possible to use the following:

Code: Select all

WinGetClass, class, A
MsgBox, The active window's class is "%class%".
See more detail here: https://autohotkey.com/docs/commands/WinGetClass.htm
by Vh_
09 Aug 2017, 20:45
Forum: Gaming Help (v1)
Topic: send text VS clipboard = text, then send ^v
Replies: 4
Views: 1211

Re: send text VS clipboard = text, then send ^v

Is it for a specific window, and only one field? If so..

Code: Select all

F1:: ;or any key you want
ControlSetText, ClassNN/ContolName, %clipboard%, WinTitle
goodluck!
by Vh_
09 Aug 2017, 20:42
Forum: Ask for Help (v1)
Topic: excel - external data connection Topic is solved
Replies: 3
Views: 1280

Re: excel - external data connection Topic is solved

Maybe I misunderstand.. but when you say:

"How can I prevent these message, since its just a convertet text (csv) file."

Why can't you just save the file as xlsx? Unless you are doing a mass amount of files, :)
by Vh_
09 Aug 2017, 20:32
Forum: Ask for Help (v1)
Topic: Windows 10? AutoHotkey Window Title, etc.
Replies: 10
Views: 2957

Re: Windows 10? AutoHotkey Window Title, etc.

No problem. Is the use of WinTitle not usable in your needs?
by Vh_
09 Aug 2017, 20:29
Forum: Ask for Help (v1)
Topic: identifying a MSWord font to allot specific symbols to usual keys
Replies: 4
Views: 1181

Re: identifying a MSWord font to allot specific symbols to usual keys

Set word as an object. Give this a short try. (dont know why short was there..) Font context hotkeys, I'd reccomend it cross referencing to another script to run. Give this a try. Word := ComObjActive("Word.Application") ;Word.Visible := true ;Msgbox, % IsObject(Word) ;to test if Word is an object, ...
by Vh_
09 Aug 2017, 20:07
Forum: Ask for Help (v1)
Topic: Windows 10? AutoHotkey Window Title, etc.
Replies: 10
Views: 2957

Re: Windows 10? AutoHotkey Window Title, etc.

I don't know what you're doing exactly, however if you are using the Run command, maybe you can just use the application path found in properties from right click on app.

Example below.

Code: Select all

Run, C:\Program Files\Internet Explorer\iexplore.exe
Vh
by Vh_
09 Aug 2017, 20:01
Forum: Ask for Help (v1)
Topic: script not working if ran at windows start Topic is solved
Replies: 6
Views: 1271

Re: script not working if ran at windows start Topic is solved

I don't know the reason, but I wrote a simple script for paperwork processors to the effect of: #IfWinActive, WinB ~WheelUp:: ControlSend, WheelUp, WinB ~WheelDown:: ControlSend, WheelUp, WinB Now, it worked sometimes. But what I found to for it to work for that specific program was to spam the hotk...
by Vh_
09 Aug 2017, 19:56
Forum: Gaming Help (v1)
Topic: Help making right mouse button function
Replies: 6
Views: 1426

Re: Help making right mouse button function

Yep. I might be thinking of a shortcut here based on your description, so let me know if this doesn't work for you. Override the native function by making RButton (see KeyList ) a Hotkey . Then, you can just have it do a Click right . By default it'll click and release. I'm a little worried it won'...
by Vh_
08 Aug 2017, 21:24
Forum: Ask for Help (v1)
Topic: Name Entity Recognition (InString)
Replies: 0
Views: 464

Name Entity Recognition (InString)

Today I thought of using NER to detect a name in a string. The purpose would be to automate retrieval of human names from a string. In short detail this would be adding client names from the account registration line. This would be for old client records when system data integrity was not at its str...
by Vh_
08 Aug 2017, 21:13
Forum: Off-topic Discussion
Topic: Flat Earth vs. Globe Earth
Replies: 115
Views: 62437

Re: Flat Earth vs. Globe Earth

My comment is how come the rivers flow a different direction in other states that your own. Yeah, the gravity or magnetism what ever. But in my thoughts, a round earth will cause flow at different directions.. no science behind it..
by Vh_
08 Aug 2017, 20:59
Forum: Ask for Help (v1)
Topic: ControlClick Tip
Replies: 2
Views: 1269

ControlClick Tip

Hello All! This is not a request for help but a share for reliability. I don't know where else to put this, so I thought here would be appropriate. In the past year, for my use of Control click it has been about 60-70 percent reliable in the scripts I have built. Perhaps, maybe the program I am usin...
by Vh_
07 Aug 2017, 15:07
Forum: Ask for Help (v1)
Topic: OCR with OneNote through COM
Replies: 1
Views: 810

OCR with OneNote through COM

Hello, I'm trying to implement OCR into a script in order to read content from a FlexGrid window that Active Window Info (Window Spy) cannot pick up. I would like this to be specifically used with OneNote as I am at work and that's what is available with out requesting permissions for additional sof...

Go to advanced search