Search found 26 matches

by cleetz
11 May 2024, 04:02
Forum: Ask for Help (v1)
Topic: Need Advice on Finding My Missing { bracket
Replies: 10
Views: 884

Need Advice on Finding My Missing { bracket

Hello. Ever since I can remember Ive had an issue with Skite4AHK where-in I'm missing a bracket somewhere, and its causing an opening bracket to attach to a closing bracket that it wasnt meant to attach to. I find myself wasting the most time out of any instance trying to find where the bracket is t...
by cleetz
09 Mar 2024, 17:42
Forum: Ask for Help (v1)
Topic: trying to send, % or send %x% or send, { Topic is solved
Replies: 1
Views: 54

trying to send, % or send %x% or send, { Topic is solved

Hello. topic. When trying to send % symbols or brackets as in type them out, it wont send them for me. is there a work around for this? I guess its something with how skite or ahk is coded to where it by default wont type them in a sentence when called to using send, command . Would make it alot mor...
by cleetz
29 Feb 2024, 06:23
Forum: Ask for Help (v1)
Topic: Hiding Cursor While Running Script
Replies: 1
Views: 43

Hiding Cursor While Running Script

Hello. I have this code where it does indeed hide the cursor, but it wont execute the rest of my script afterward after hiding cursor. I wanted to have this in a separate script so I can just toggle it, then turn my other script on. However, when I turn my other script on , it unhides the cursor aga...
by cleetz
29 Feb 2024, 05:37
Forum: Ask for Help (v1)
Topic: Hide / unhide cursor mouse
Replies: 17
Views: 24406

Re: Hide / unhide cursor mouse

SystemCursor(0) ; This will hide the cursor when the script starts SystemCursor(OnOff=1) { if (OnOff == 1) { DllCall("ShowCursor", Int,1) } else { MouseGetPos, , , hwnd Gui Cursor:+Owner%hwnd% DllCall("ShowCursor", Int,0) } } Toggle := 0 ; 0 means cursor is shown, 1 means hidden F1:: ; F1 to pause ...
by cleetz
02 Feb 2024, 04:22
Forum: Ask for Help (v1)
Topic: Finding the center of an Object Using its Border Color
Replies: 2
Views: 193

Finding the center of an Object Using its Border Color

Hello. I'm looking for a code that will find the center of an object using pixelsearches. I am able to fully color the object in so that its a solid mass of the same color pixel if that helps at all to find the center in a different way, or just the border around the object could be the same color w...
by cleetz
10 Jan 2024, 21:28
Forum: SciTE4AutoHotkey
Topic: Questions about Skite4AHK
Replies: 0
Views: 621

Questions about Skite4AHK

Hello. I'm wondering if anyone knows how to disable auto complete. I dont want it constantly trying to assume what I'm trying to type. Then I type something like random, x, 435, 55 random, y, 383, 30 mousemove %x%, %y%, 0, R and every single time I type R it assumes im trying to type RxEdit or somet...
by cleetz
07 Jan 2024, 03:16
Forum: Ask for Help (v1)
Topic: Need Help with adding values to a function
Replies: 2
Views: 215

Need Help with adding values to a function

Hello. Ive never set values to a function before and I'm looking for advice on how I would do the following : Store a value at the start of my script, then when I find an image with imagesearch, it calls that value and does that sequence of events. I need this in my script so I can do a section of c...
by cleetz
07 Jan 2024, 02:25
Forum: Ask for Help (v1)
Topic: Need help with BlockInput Topic is solved
Replies: 1
Views: 182

Need help with BlockInput Topic is solved

Hello. I'm wondering how I would use BlockInput to block my mouse movement outside of the desired script input until after the duration of the code, for example. F1:: BlockInput, Mouse ; Looking to block mouse movement here, clicks also would be ok to block but not required mousemove 80, 200 sleep 1...
by cleetz
05 Jan 2024, 21:28
Forum: Ask for Help (v1)
Topic: Issue with Skite. Says Missing "}" , yet shows its connected .
Replies: 1
Views: 148

Re: Issue with Skite. Says Missing "}" , yet shows its connected .

found the error thanks. I backtracked and surfed through the area I was prior editting and found that I hadnt enclosed a bracket. Kinda twisted that it wouldnt point Me to that bracket and instead bugged out and continued to say that Line 88 was the issue, but thats coding I guess. It never comes ea...
by cleetz
05 Jan 2024, 21:21
Forum: Ask for Help (v1)
Topic: Issue with Skite. Says Missing "}" , yet shows its connected .
Replies: 1
Views: 148

Issue with Skite. Says Missing "}" , yet shows its connected .

Hello. I put alot of hours into this script and including empty lines in between, its like 12k lines now. The opening Loop, { bracket suddenly wasnt connected to anything, so I went through the script, to find out what the ending of the script Loop, } bracket was connected to, so I could close the b...
by cleetz
08 Dec 2023, 19:00
Forum: Ask for Help (v1)
Topic: Using AHK Scripts Without Occupying Mouse/Keyboard
Replies: 1
Views: 185

Using AHK Scripts Without Occupying Mouse/Keyboard

Hello. I tried writing my scripts using ControlSend and those methods which are supposed to not require full occupation of the mouse/keyboard to no avail. I cant seem to get the scripts to ever function like they do when I write them normally when I use ControlSend . Does anyone have any methods of ...
by cleetz
04 Dec 2023, 20:02
Forum: Ask for Help (v1)
Topic: Loading a url
Replies: 1
Views: 132

Loading a url

Hello. Is there any way to load a url I type with a click instead of sending enter using AHK?
by cleetz
27 Nov 2023, 11:20
Forum: Ask for Help (v1)
Topic: Hi. Need help loading multiple new urls in chrome tabs.
Replies: 0
Views: 172

Hi. Need help loading multiple new urls in chrome tabs.

Hey. Wondering if there is some way on ahk to convert the url on a bunch of open chrome tabs simultaneously. I can't open all these urls from scratch, they need to convert from a page that is already open on each tab, and move from that page to the new url at the same time with virtually no delay. T...
by cleetz
03 Jun 2023, 01:58
Forum: SciTE4AutoHotkey
Topic: Need Help with Scite Please
Replies: 1
Views: 1016

Need Help with Scite Please

Hello. I was wondering how I would go about disabling the autofill feature in Scite, so that it doesnt assume what input or command i'm trying to type and fill it in for Me, or even open up a suggestion list. I constantly end up bringing up the wrong command and having to delete it which wastes time...
by cleetz
23 May 2023, 09:43
Forum: Ask for Help (v1)
Topic: Variability when Image Searching
Replies: 3
Views: 282

Re: Variability when Image Searching

Here is an example for anyone skimming forums for this answer

Code: Select all

ImageSearch,ix,iy,0,0,a_screenHeight,a_screenWidth, *165 C:\Users\clayt\Desktop\Jpegs\TestWaterBarrelRightClicked.png
by cleetz
23 May 2023, 09:38
Forum: Ask for Help (v1)
Topic: Variability when Image Searching
Replies: 3
Views: 282

Re: Variability when Image Searching

Thanks for the link. Ok for Me it can be hard to learn without a proper example showing exactly what to do but I got it . Between *1 to *255 and You put it just before the name of the file with a space before . Thanks again
by cleetz
22 May 2023, 19:53
Forum: Ask for Help (v1)
Topic: Variability when Image Searching
Replies: 3
Views: 282

Variability when Image Searching

Hello. What do I add to an image detect code to create a variability for the detected image? I am trying to fix my music stream from stopping playing for whatever reason it is always crashing, and I wrote a script to get it to press play if it detects that it stopped playing. However the image detec...
by cleetz
19 Feb 2023, 13:51
Forum: Ask for Help (v1)
Topic: Client Losing Focus Which Interupts Script Topic is solved
Replies: 6
Views: 514

Re: Client Losing Focus Which Interupts Script Topic is solved

hey bossman. With the stay := "ahk_exe notepad.exe" do I replace the "ahk_exe notepad.exe" with the name of the client Im using? Like insert the name of it inside the quotation marks? or do I just leave it and it auto detects whatever client Ive recently clicked on? Is there something Im supposed to...

Go to advanced search