operator64
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By junichironakashima
Im creating a code that will work in this sequence:
1. Copy the text (question) in one atea of the screen
2. Catch the 2 strings (number)
3. Multiply the 2 strings ( $1*$2)
4. Click the next area to put the answer
5. Paste the answer
Â
This is my code
Â
MouseClick($MOUSE_CLICK_LEFT, 479, 802, 3, 1) ;Clicking all of the text
Send("^c")Â
$x = StringRegExpReplace(ClipGet(), 'What is (\d*) x (\d*) \?$', "$1*$2")
MouseClick($MOUSE_CLICK_LEFT, 480, 844, 1, 1)
ClipPut($x)
Send("^v")
Â
However the output is this
$1*$2
Â
How can I make it solve itself? Because I tried this code:
MouseClick($MOUSE_CLICK_LEFT, 479, 802, 3, 1) ;Clicking all of the text
Send("^c")
MouseClick($MOUSE_CLICK_LEFT, 480, 844, 1, 1) $x = Execute(StringRegExpReplace(ClipGet(), 'What is (\d*) x (\d*) \?$', "$1*$2"))
ClipPut($x)
Send("^v")
Output is just blank text
-
By Rhazz
Hello! I have a "syntax error" but I can't understand where is it. Can you help me with this?
There is two text files. I want to write three lines of the first file in each line of the second file. Then, if the first file has 600 lines, the second file should have 200 lines.
I hope I have explained well what I want.
#include <File.au3> Local $sFile1 $sFile1 = "File1.txt" Local $sFile2 $sFile2 = "File2.txt" Local $sThreeLinesIntoOne FileOpen($sFile1,0) FileOpen($sFile2,2) For $i In ( _FileCountLines($sFile1) / 3 ) For $a = ( ( $i - 1 ) * 3 ) + 1 ) To ( $i * 3 ) $sThreeLinesIntoOne = $sThreeLinesIntoOne & FileReadLine($sFile1, $a) Next FileWriteLine($sFile2, $sThreeLinesIntoOne) Next FileClose($sFile2) FileClose($sFile1)AutoIt returns:
Â
-
By guestscripter
I´m getting mixed up!
What´s the difference between:
While NOT Func1() AND Func2() Â and
While NOT Func1() AND NOT Func2() ??
Â
I´m using lots of these and it works find,
but now that I´m rewriting my script I´m mixing things up and getting unsure.
-
By careca
Hi ppl, got a problem with this, It's for a small project i have, it was sugested that i should include an error check, but now im stuck here,
if i only use one string to compare, it works, so im wondering am im missing some operator for this?
I could do multiple checks with each of them, but this way it would be simpler, what am i missing here?
$LastKey1 = ClipGet() $string = StringRegExp($LastKey1, "HKEY_CLASSES_ROOT" Or "HKEY_CURRENT_USER" Or "HKEY_LOCAL_MACHINE" Or "HKEY_USERS" Or "HKEY_CURRENT_CONFIG", 0) If $string = 0 Then MsgBox(4096, "Error", "Clipboard content is not a registry key!") Exit ElseIf $string = 1 Then MsgBox(4096, "ClipGet", "Clipboard content is a registry key!") ;function EndIferror check.au3
-
By Schoening
Hey,
so after searching the Forums, Google, YouTube and Other Forums, I found ImageSearch!
AnyBody Not Shure what ImageSearch is, it is a pixelsearch that looks for a image file in the ImageSearch.au3 directory and then Looks for it on the Screen
Great Stuff !
Here is a Little Example where i Search for a .png
#include <ImageSearch.au3> $x = 0 $y = 0 $res = _imagesearcharea("GreenYellow.png",1,340,150,940,512,$x,$y,100) If $res = 1 Then MouseMove($x,$y,100) Else MsgBox(0,"404","Not Found") EndIfJust a quick explain on what happens in the function _imagesearcharea:
_imagesearcharea("GreenYellow.png",1,340,150,940,512,$x,$y,100)
_imagesearcharea("image_name" , a*,b*,b*,b*,b*,c*,c*,d*)
a* = Chooses the Return Value for C*. 0 = top x,y Pixel 1 = Center of the Found image.
b* = Coordinates for the Search Window(Top,Left,Right,Bottom)
c* = The Return Variables (See a*)
d* = Variaton between Image and Search.
I'm not sure if the explanation was needed, i just like pretty Topics
My actual problem :
I want to make a do_until loop that keeps doing _Imagesearcharea until i drag the desktop icon in the circa Area.
I could do this by just specifying the Search window. But that would be way to Easy
Instead i want the Loop to Run until the icon is dragged "near" a predefined spot on one axis using one of the Variables from _Imagesearcharea.
So lets say i want to ImageSearch until i drag it near the middle of the Screen Seen from the X axis.
Until $x = 640But that is not "Near" ! That is exact ! I want it to Do_Until it is "close" to 640, so it should also stop searching when it is +20 or -20 from 640.
I think i will do this with some advanced Operators ? Math has never been my Strength...
Please Help
-
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now