Jump to content

Recommended Posts

Posted

Hello friends.

What I want to do. I want it to detect numbers in the x y coordinate in a certain part of the screen. The numbers are constantly changing, and I want them to keep them in memory. How can I make it perceive these numbers? For example, where the autoit forum logo is, there are numbers and it is constantly changing.,,

 

This number will appear constantly on the panel. Example https://www.autoitscript.com/forum/topic/112865-solved-create-panel-control/ such a panel.

  • Moderators
Posted

serkan,

Welcome to the AutoIt forums.

From what kind of application are you trying to read these numbers? Does the AutoIt Window Info tool offer any indications of the type of control which holds them? Perhaps a screenshot of the app would help.

Please help us to help you.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted
  On 1/21/2021 at 7:20 PM, Danp2 said:

Here's one way to do it without using a browser --

#include <InetConstants.au3>
#include <StringConstants.au3>
#include <Array.au3>

Local $sHTML = BinaryToString(InetRead("https://covid19asi.saglik.gov.tr/", $INET_FORCERELOAD))
Local $aMatch = StringRegExp($sHTML, "(?:var asiyapilankisisayisi = )(.*);", $STR_REGEXPARRAYMATCH)
_ArrayDisplay($aMatch)

 

Expand  

I'm asking to find out how did you get this value?image.thumb.png.c2358576433e7eb235fc37882e37ae5e.png

  • Moderators
Posted (edited)

serkan,

  Quote

But my goal is to learn

Expand  

What a pleasure to hear you say that!

M23

30k

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted
  On 1/21/2021 at 8:04 PM, Danp2 said:

If you want to learn how to grab this data from the browser, then suggest that you check out the Webdriver UDF (see my signature)

Congrats! ๐Ÿš€๐ŸŽ‰๐Ÿฅณ๐ŸŽ†

Expand  

I'm sorry but I didn't understand much. ๐Ÿ˜ฎ

Posted

@serkan, Simple explaination of Danp2's script:

#include <InetConstants.au3>
#include <StringConstants.au3>
#include <Array.au3>

Local $sHTML = BinaryToString(InetRead("https://covid19asi.saglik.gov.tr/", $INET_FORCERELOAD)) ;Grab the websites HTML and put it all inside of a string variable
Local $aMatch = StringRegExp($sHTML, "(?:var asiyapilankisisayisi = )(.*);", $STR_REGEXPARRAYMATCH) ;Using RegEx patterns, search through the string and grab the number you need
_ArrayDisplay($aMatch)

Now if you don't want to learn RegEx (I can't even comprehend how insane some of them are), Danp2 suggest you use his Webdriver UDF (User Defined Function) in his signature. It is a super useful and simple tool to navigate and/or grab information from Chrome or Edge browser.

If you want to learn and not just get, click the links in @Danp2's signature and read up. ๐Ÿ˜ƒ ๐Ÿ‘

Posted (edited)

As one of the best beginner here ๐Ÿ˜›

I think I could provide some help here.

to understand what does a function, or some lines. You could always try to figure out the result in most of the cases that is called the ยซ return ยป.

for exemple you could use here consolewrite to check. That will help you a lot to understand what you do. When. Where.

All that are related to debuging. Try.

Edited by caramen

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
ร—
ร—
  • Create New...