Search found 20 matches

by newbie007
24 Jun 2022, 14:49
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 121489

Re: UIAutomation with a focus on Chrome

@newbie007, right now its hard to guess what is going wrong here, needs some debugging. :) First of all make sure you are getting the element you want to get with Dump(). Once you know you have the correct element, use CurrentBoundingRectangle (without the parenthesis, because its a property not a ...
by newbie007
24 Jun 2022, 14:46
Forum: AHK Studio
Topic: AHK Studio
Replies: 1179
Views: 625724

Re: AHK Studio

Anyone else stuck at "Downloading ahk.xml ... Please Wait..." Window at the second opening of AHKStudio?
How to fix this?
by newbie007
24 Jun 2022, 05:44
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 121489

Re: UIAutomation with a focus on Chrome

@newbie007, it seems I have missed your PM. :/ One way would be to get element coordinates from CurrentBoundingRectangle, and then link element with ElementFromPoint. You could also just use regular Click to click: element := chrome.FindFirstByName("Link") bounds := element.CurrentBoundingRectangle...
by newbie007
22 Jun 2022, 08:11
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 121489

Re: UIAutomation with a focus on Chrome

Hello Descolada , I don't know if you've received my private message but I wanted to ask it here also: I have a question, for example I have found an Element by Name (for example: Link) and got it's rectangles, but I want to click 30 or 50 pixels to the right from the Link box, because the link text...
by newbie007
13 Jun 2022, 13:51
Forum: Editors
Topic: Scite4AHK and AHKStudio Problems - [AHKStudio | Scite4AHK]
Replies: 1
Views: 2059

Scite4AHK and AHKStudio Problems - [AHKStudio | Scite4AHK]

I have been using AHKStudio for a few weeks now, I have tried scite4ahk today. But I have a problem with both.. Problem with AHKStuido: it stucks always at "Downloading ahk.xml" (even when I run the script as admin) https://prnt.sc/T5y-CGu-_ak6 Problem with Scite4Ahk: doesn't highlight functions/met...
by newbie007
11 Jun 2022, 06:12
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 121489

Re: UIAutomation with a focus on Chrome

Hello, I wanted to test some examples but when I try it I get an error even tho the libraries are in the same folder as my ahk script. C:\Users\feyz\Downloads\AHK-Studio-master\Projects\test.ahk (5) : ==> Function library not found. Specifically: #include <UIA_Interface> What do I do wrong? I refer...
by newbie007
11 Jun 2022, 04:46
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 551
Views: 121489

Re: UIAutomation with a focus on Chrome

Hello, I wanted to test some examples but when I try it I get an error even tho the libraries are in the same folder as my ahk script. C:\Users\feyz\Downloads\AHK-Studio-master\Projects\test.ahk (5) : ==> Function library not found. Specifically: #include <UIA_Interface> I used this code: #NoEnv #Si...
by newbie007
10 Jun 2022, 05:40
Forum: Ask for Help (v1)
Topic: Take screenshot and upload the same screenshot | OpenFileDialog Control
Replies: 7
Views: 898

Re: Take screenshot and upload the same screenshot | OpenFileDialog Control

@newbie007 - You can detect that pages Upload-Button ("Wähle Bilder aus") using UIAViewer.exe or AccViewer.exe (where btw, that button has the acc-path '4.1.1.2.2.2.4.1.1.1.1.1' (Chrome Version 102.0.5005.62 (Official Build - 64-Bit)). Once OpenFileDialog opens you can enter the full path of your s...
by newbie007
09 Jun 2022, 02:05
Forum: Ask for Help (v1)
Topic: Take screenshot and upload the same screenshot | OpenFileDialog Control
Replies: 7
Views: 898

Re: Take screenshot and upload the same screenshot | OpenFileDialog Control

BoBo wrote:
09 Jun 2022, 01:51
What's the web service link you wanna upload the file to?
One with an OpenFileDialog when you press on "Choose Image" like this one
https://prnt.sc/
by newbie007
09 Jun 2022, 01:20
Forum: Ask for Help (v1)
Topic: Take screenshot and upload the same screenshot | OpenFileDialog Control
Replies: 7
Views: 898

Re: Take screenshot and upload the same screenshot | OpenFileDialog Control

I use this modified version of ScreenClipper by Learning One. It saves screenshot on D:/temp and uses Datetime to name it: dd_mm_yyyy__hh_mm_ss It also copy the new filename to the Clipboard, so, if you already have a FileDialog, you can just paste on it (Filename TextBox, or EditBox not sure how y...
by newbie007
09 Jun 2022, 00:24
Forum: Ask for Help (v1)
Topic: Take screenshot and upload the same screenshot | OpenFileDialog Control
Replies: 7
Views: 898

Take screenshot and upload the same screenshot | OpenFileDialog Control

Hello everyone, I want to take screenshot of a specific area of my screen and save it somewhere, then I want to upload it on any website with a FileDialog. 1. Which is the best method to do the first step? Can I take a screenshot of a specific area and directly save it somewhere in autohotkey? Also ...
by newbie007
01 Jun 2022, 04:30
Forum: Gaming Scripts (v1)
Topic: Basic Aimbot
Replies: 14
Views: 35479

Re: Basic Aimbot

This is actually stolen by a Youtuber who wrote this code. Here is the Video link: https://www.youtube.com/watch?v=sTQd-ts5tYk&ab_channel=Ninkjeboi [...] You could atleast give credits since you steal a part of the code! "stolen by" or "from" a Youtuber?? :think: The original forum post is from 201...
by newbie007
01 Jun 2022, 03:19
Forum: Gaming Scripts (v1)
Topic: Basic Aimbot
Replies: 14
Views: 35479

Re: Basic Aimbot

This is actually stolen by a Youtuber who wrote this code. Here is the Video link: https://www.youtube.com/watch?v=sTQd-ts5tYk&ab_channel=Ninkjeboi And here is the Code: init: #NoEnv #SingleInstance, Force #Persistent #InstallKeybdHook #UseHook #KeyHistory, 0 #HotKeyInterval 1 #MaxHotkeysPerInterval...
by newbie007
01 Jun 2022, 01:27
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1088
Views: 581334

Re: FindText - Capture screen image into text and then find it Topic is solved

gregster wrote:
01 Jun 2022, 01:00
newbie007 wrote:
01 Jun 2022, 00:40
Error at line XXX.
Line Text: local
Error: This line does not contain a recognized action.
Probably you are using a wrong (eg AHK v2 beta) or outdated (probably older than v1.1.27) AHK version.
This explains alot, I'm on my job pc.. this is probably why.
I will try at home. Thanks mate!
by newbie007
01 Jun 2022, 00:40
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1088
Views: 581334

Re: FindText - Capture screen image into text and then find it Topic is solved

Does anyone else get the error:

Error at line XXX.
Line Text: local
Error: This line does not contain a recognized action.

The program will exit.

What do I do wrong?

PS: I didn't change anything in the script
by newbie007
31 May 2022, 06:22
Forum: Wish List
Topic: ImageSearch: Click center of found image
Replies: 15
Views: 14909

Re: ImageSearch: Click center of found image

Wow, thanks so much for that, I was looking exactly at this problematic :D ImageSearch, foundX, foundY, 0, 0, %A_ScreenWidth%, %A_ScreenHeight%, YourIMG.png If(ErrorLevel == 0){ foundY:=foundX+300 ; <--- Edit for + or - Y Coor foundX:=foundY+300 ; <--- Edit for + or - X Coor Click, %foundX%, %found...
by newbie007
18 Feb 2022, 01:19
Forum: AutoHotkey Development
Topic: AHK v1 v2 ? Which one for a beginner ?
Replies: 14
Views: 10049

Re: AHK v1 v2 ? Which one for a beginner ?

I mean why ":=" and not just "=" like all other languages? It should not be assumed that all languages will have the same syntax, heritage, design, purpose, or culture surrounding them. Particularly, that they will always be near clones of or so similar to C. It's arguably better to be flexible abo...
by newbie007
17 Feb 2022, 09:00
Forum: AutoHotkey Development
Topic: AHK v1 v2 ? Which one for a beginner ?
Replies: 14
Views: 10049

Re: AHK v1 v2 ? Which one for a beginner ?

I will go with v1 first, because I think also like you guys that v1 scripts and helps are much more right now.
But there are small things that get me annoyed like normal variables. I mean why ":=" and not just "=" like all other languages?
I know thats a small thing but still annoying.
by newbie007
21 Jan 2022, 08:09
Forum: AutoHotkey Development
Topic: AHK v1 v2 ? Which one for a beginner ?
Replies: 14
Views: 10049

Re: AHK v1 v2 ? Which one for a beginner ?

boiler wrote:
21 Jan 2022, 08:00
See a recent discussion on this here.

It’s not really known when v2 will go from beta to official release.

It’s not like C and C++.
Alright, I read the thread.

But the question is now, how different will v1 and v2 be?

So you're saying that beginners should wait for v2 ?
by newbie007
21 Jan 2022, 06:52
Forum: AutoHotkey Development
Topic: AHK v1 v2 ? Which one for a beginner ?
Replies: 14
Views: 10049

AHK v1 v2 ? Which one for a beginner ?

Hello, I registered today and I want to learn some AHK for future projects but now I saw that a new version is being developed (?) Which one should I learn as a beginner? Which is beginner friendly ? Is v2 out yet or still in development? If still in development, when will it be released? What are t...

Go to advanced search