Search found 2738 matches

by Xtra
04 Dec 2023, 14:02
Forum: Ask for Help (v1)
Topic: Macros don't work in VM Window in a work environment
Replies: 1
Views: 176

Re: Macros don't work in VM Window in a work environment

Have you tried?:
Send, {text}text
by Xtra
04 Dec 2023, 13:56
Forum: Ask for Help (v2)
Topic: I come from Autoit
Replies: 3
Views: 330

Re: I come from Autoit

Rufaydium is another option:
viewtopic.php?t=102616

Edit: this would be for V1 not sure if V2 version is available.
by Xtra
21 Nov 2023, 12:52
Forum: Ask for Help (v1)
Topic: YouTube Ad blocker ban
Replies: 13
Views: 1220

Re: YouTube Ad blocker ban

You will want to use a non chromium based browser. (IMO) FireFox + UBlock Origin has been working for me. I would suggest not logging in with your google account. (it may or may not work) After a week of using youtube it has figured out what I want to watch based on what it's showing for suggestions...
by Xtra
20 Nov 2023, 12:26
Forum: Ask for Help (v1)
Topic: move mouse cursor without point movement?
Replies: 2
Views: 323

Re: move mouse cursor without point movement?

Try:

Code: Select all

$1::SetCursorPos(1500,1000)

SetCursorPos(xPos,yPos) {
    DllCall("SetCursorPos", int, xPos, int, yPos)
}
by Xtra
20 Nov 2023, 12:11
Forum: Gaming Help (v1)
Topic: SendInput not working in game app
Replies: 1
Views: 308

Re: SendInput not working in game app

Read: SetKeyDelay Remarks Remarks If SetKeyDelay is not used, the default delay is 10 for the traditional SendEvent mode and -1 for SendPlay mode. The default press duration is -1 for both modes. SetKeyDelay is not obeyed by SendInput; there is no delay between keystrokes in that mode. This same is ...
by Xtra
14 Nov 2023, 12:06
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 614
Views: 133441

Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)

If you can get a reference to the element you are trying to click and then Rufaydium clicks do not work, there is nothing you can do. Just try to click without using any javascript. I dont have an example that you would have access to. Your options: https://developer.mozilla.org/en-US/docs/Web/Secur...
by Xtra
14 Nov 2023, 01:25
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 614
Views: 133441

Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)

cristalgrip wrote:
13 Nov 2023, 15:17
Is possible to select a canvas inside an Iframe? I need to perform a click using javascript but I'm not sure if is possible. Changing frame level and the function Evaluate to send javascript code doesn't seem to work together.
Sure can you just need to be in the correct iFrame.
by Xtra
14 Nov 2023, 01:21
Forum: Gaming Help (v1)
Topic: Issue with Gdip_ImageSearch Not Finding All Images Detected by ImageSearch
Replies: 5
Views: 734

Re: Issue with Gdip_ImageSearch Not Finding All Images Detected by ImageSearch

If the vars: index_col and index_riga are not set to global the function will not be able to see their values and will read as empty. This is due to functions having local scope by default.
by Xtra
11 Nov 2023, 20:49
Forum: Forum Issues
Topic: Slow forum
Replies: 111
Views: 12607

Re: Slow forum

It's been slow since yesterday.
by Xtra
07 Nov 2023, 14:01
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 614
Views: 133441

Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)

Reporting a possible issue: When getting innerText and the text is 0 (zero) the returned value is blank. I have tried every method to get it to work. CDP, ExecuteSync, querySelector etc. In Chrome dev tools console it works like expected. It may be caused by AHK treating 0 as false aka blank. Exampl...
by Xtra
07 Nov 2023, 10:51
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 614
Views: 133441

Re: Rufaydium WebDriver 1.7.2 (no selenium/websocket)

Good morning everyone, I wonder if this is the correct section of the form, but I’ll try writing my question here. I’ve been using this library for some time now, and I find it truly excellent. However, I’d like to know if there’s a limit to the number of connections that the Chromedriver can make ...
by Xtra
06 Nov 2023, 17:14
Forum: Gaming Help (v1)
Topic: Issue with Gdip_ImageSearch Not Finding All Images Detected by ImageSearch
Replies: 5
Views: 734

Re: Issue with Gdip_ImageSearch Not Finding All Images Detected by ImageSearch

Your function parameters num_riga, num_col are never used?
The vars: index_col and index_riga are never assigned a value?

Conclusion: you have naming missmatches.
by Xtra
05 Nov 2023, 15:11
Forum: Ask for Help (v1)
Topic: Literal string of dot and character is not sent Topic is solved
Replies: 2
Views: 187

Re: Literal string of dot and character is not sent Topic is solved

Parameters
Keys
The sequence of keys to send. As with other commands, the comma in front of the first parameter is optional.

I guess this is one of those rare cases where its not optional?

This works, but shouldn't be needed according to the documentation.
c::Send, .3
by Xtra
19 Oct 2023, 14:35
Forum: Ask for Help (v1)
Topic: Play a sound when typing capital letters
Replies: 6
Views: 521

Re: Play a sound when typing capital letters

Script works fine here.
by Xtra
14 Oct 2023, 18:44
Forum: Ask for Help (v1)
Topic: Using matched subpattern in expression Topic is solved
Replies: 9
Views: 731

Re: Using matched subpattern in expression Topic is solved

Notepad++ > View > Show Symbol > Show All Characters
by Xtra
14 Oct 2023, 18:03
Forum: Ask for Help (v1)
Topic: Using matched subpattern in expression Topic is solved
Replies: 9
Views: 731

Re: Using matched subpattern in expression Topic is solved

I copy pasted your original post code and it showed a ?
;str:="a`t?78.9" ;strig instance A
That tells me now that you have a hidden char.

There is your problem.
LRE LEFT-TO-RIGHT EMBEDDING U+202A
by Xtra
14 Oct 2023, 17:29
Forum: Ask for Help (v1)
Topic: Using matched subpattern in expression Topic is solved
Replies: 9
Views: 731

Re: Using matched subpattern in expression Topic is solved

Code: Select all

RegExMatch(str, "^[^`t]*`t\??([^`t]*)",match)
by Xtra
10 Oct 2023, 11:55
Forum: Ask for Help (v1)
Topic: how do i stop a macro from interacting with control/shift?
Replies: 1
Views: 226

Re: how do i stop a macro from interacting with control/shift?

Use blind

Code: Select all

*WheelDown::
   Send , 1
   Sleep 1
   Send, {Blind}{WheelUp} 
   Sleep 1
   Send, {Blind}{WheelUp} 
   Sleep 1
   Send , 1
   Sleep 1
   Send , 1  
return
by Xtra
03 Oct 2023, 19:52
Forum: Ask for Help (v1)
Topic: [HELP] Its adding an extra.. Topic is solved
Replies: 14
Views: 1177

Re: [HELP] Its adding an extra.. Topic is solved

If you have inconsistent sends try:

Code: Select all

SetKeyDelay, 50, 50

Send, % c
or:

Code: Select all

SetKeyDelay, 50, 50

Send, % "{text}" . c
by Xtra
01 Oct 2023, 21:12
Forum: Ask for Help (v1)
Topic: Help with pixel color script
Replies: 3
Views: 276

Re: Help with pixel color script

f1:: mousemove 1870, 1000, 0 Stop:= 0 Loop, 25 { PixelSearch,ax,ay,1870,1000,1870,1000,0x333333,25,Fast RGB If (ErrorLevel = 0) { SendInput ^{F4} SendInput !{F4} Stop := 1 } } until (Stop) return or f1:: mousemove 1870, 1000, 0 Loop, 25 { PixelSearch,ax,ay,1870,1000,1870,1000,0x333333,25,Fast RGB I...

Go to advanced search