Search found 35 matches

by inthesky2
06 Jun 2017, 20:48
Forum: Ask for Help (v1)
Topic: Help encrypting ahk file
Replies: 6
Views: 3075

Re: Help encrypting ahk file

Yes I saw. However I did some quick research and saw this in another thread : "AHK does not provide Source Code protection, and actually never has. There are Tools which need 2 Clicks and the Source is visible." I do have some passwords in my AHK scripts that I would like to keep secure. Any ideas h...
by inthesky2
06 Jun 2017, 18:48
Forum: Ask for Help (v1)
Topic: Help encrypting ahk file
Replies: 6
Views: 3075

Re: Help encrypting ahk file

Hello, I stand corrected, I am not using AHK for a long time. But when I compile an AHK file into an .exe, it doesn't seem to let me change it again into an AHK (text) file. So if I am correct, you could send the .exe file to others and keep the .ahk file for you. Again, others can correct me if ne...
by inthesky2
06 Jun 2017, 15:20
Forum: Ask for Help (v1)
Topic: Help encrypting ahk file
Replies: 6
Views: 3075

Help encrypting ahk file

I don't know if this is possible but I want to be able to encrypt my ahk file so that it can still run/work correctly, but nobody should be able to see the code, modify the code or share it. This is basically what I need at the moment but I'm also looking for an improved alternative that it requires...
by inthesky2
02 Jun 2017, 16:37
Forum: Ask for Help (v1)
Topic: Imagesearch without having the image?
Replies: 5
Views: 1552

Re: Imagesearch without having the image?

There can be an infinite amount of different images (randomly generated). The image appears in two location (the same image) simultaneously on your screen. One image is always within the same area (coordinates) and the other can be anywhere else on the screen randomly. I want to click the image of w...
by inthesky2
01 Jun 2017, 20:06
Forum: Ask for Help (v1)
Topic: Imagesearch without having the image?
Replies: 5
Views: 1552

Imagesearch without having the image?

Imagine a scenario where the same image pops up in two different areas on your screen. Is there a way to click on both those images that appear if you don't know what the image is but you have the location of one of them? Basically, one image always appears in the same spot, the other can appear any...
by inthesky2
22 Sep 2016, 03:10
Forum: Ask for Help (v1)
Topic: ControlClick question Topic is solved
Replies: 5
Views: 1638

Re: ControlClick question Topic is solved

Helgef wrote:Your coordinates are not the same in the controlclick and the mousemove.
Yes I know, they aren't real coordinates it was just for example, I forgot to change them when I made the post.
by inthesky2
22 Sep 2016, 00:24
Forum: Ask for Help (v1)
Topic: ControlClick question Topic is solved
Replies: 5
Views: 1638

Re: ControlClick question Topic is solved

eh i dont think that will work. ControlClick simply wraps the WM_LBUTTONDOWN message. you're wanting to click, hold down, drag, release. you may want to look into sending WM_MOUSEWHEEL or WM_VSCROLL but if you're just trying to scroll down, why not just remap? s::WheelDown It's not a web site where...
by inthesky2
21 Sep 2016, 22:59
Forum: Ask for Help (v1)
Topic: ControlClick question Topic is solved
Replies: 5
Views: 1638

ControlClick question Topic is solved

Is it possible to perform this using controlclick? ~s:: { mousemove 200, 200 send {LButton down} sleep 50 mousemove 200, 800 sleep 50 send {Lbutton up} } return I know that it can be done actually because the tutorial says so under "options" you add D or U, but I would like an example if possible, t...
by inthesky2
07 Sep 2016, 18:20
Forum: Ask for Help (v1)
Topic: ControlClick problem
Replies: 2
Views: 1474

Re: ControlClick problem

Thanks for your reply. ahk_exe Nox.exe continously clicks where my physical mouse is instead of the coordinates. Also if my mouse isn't inside the program it won't do anything at all. ahk_class Qt5QWindowIcon doesn't do anything at all as far as I can tell.
by inthesky2
07 Sep 2016, 17:10
Forum: Ask for Help (v1)
Topic: ControlClick problem
Replies: 2
Views: 1474

ControlClick problem

I'm using two different android emulators, first MEmu and the other is Nox. I tried using the exact same code that works in MEmu and it doesn't work in Nox. Is the problem with the title, not too sure. This is the code that works in one emulator but not the other. MEmu (Works): http://i.imgur.com/BR...
by inthesky2
04 Aug 2016, 22:08
Forum: Ask for Help (v1)
Topic: MouseClickDrag not working as intended
Replies: 1
Views: 1353

MouseClickDrag not working as intended

I want to use MouseClickDrag to imitate the actions people do when selecting files/folders using a rectangle or even when scrolling down a web page using the scroll bar which is pretty much the very same actions as making a rectangle to select files. Basically clicking down, moving the mouse then le...
by inthesky2
29 Jul 2016, 15:21
Forum: Gaming Help (v1)
Topic: MouseClickDrag problem (Pokemon Go selling pokemons script)
Replies: 5
Views: 2360

Re: MouseClickDrag problem (Pokemon Go selling pokemons script)

I've tried CoordMode, Mouse, Window / CoordMode, Mouse, Screen / CoordMode, Mouse, Relative -- nothing works :( However I realized that I can't peform a mousedrag on my desktop either using something like ~F2:: MouseClickDrag, left, 2118, 499, 2250, 815 The mouse appears at the first coordinate, the...
by inthesky2
28 Jul 2016, 20:57
Forum: Gaming Help (v1)
Topic: MouseClickDrag problem (Pokemon Go selling pokemons script)
Replies: 5
Views: 2360

Re: MouseClickDrag problem (Pokemon Go selling pokemons script)

Thanks for your reply, no I haven't. Care to elaborate or even better change the code? Ty!
by inthesky2
28 Jul 2016, 20:36
Forum: Gaming Help (v1)
Topic: MouseClickDrag problem (Pokemon Go selling pokemons script)
Replies: 5
Views: 2360

MouseClickDrag problem (Pokemon Go selling pokemons script)

I wrote a small script that clicks at the location of the mouse (selects the pokemon), scrolls down, clicks the "transfer" button using imagesearch, clicks the "yes" button to confirm the sale using imagesearch. The problem with my script is that it isn't scrolling down using "MouseClickDrag". I hav...
by inthesky2
06 Jun 2016, 22:56
Forum: Ask for Help (v1)
Topic: Writing Active Window Info into a text file
Replies: 1
Views: 750

Writing Active Window Info into a text file

I would like to write all the information present in the "Active Window Info" of AHK into a text file every time I press a key, for example F1. The reason for this is to be able to write down many coordinates by just moving the mouse and pressing F1 over and over. Basically write down the following ...
by inthesky2
18 May 2016, 01:42
Forum: Ask for Help (v1)
Topic: Need help with A_TickCount and label
Replies: 1
Views: 614

Need help with A_TickCount and label

I need my loop to check at the end if an hour has passed, if it has go to label and restart the timer from 0, if not restart loop with the timer continuing from where it was. I tried a bunch of things but nothing is working out. The relevant part of my code looks like this (I put 3 mins instead of 1...
by inthesky2
10 May 2016, 03:02
Forum: Ask for Help (v1)
Topic: Changing coordinates of controlclick?
Replies: 2
Views: 1087

Re: Changing coordinates of controlclick?

Thanks for the reply, just wondering about the second one, is there a tutorial or something similar that I can learn that syntax from? The help file has very few examples.
by inthesky2
10 May 2016, 02:09
Forum: Ask for Help (v1)
Topic: Changing coordinates of controlclick?
Replies: 2
Views: 1087

Changing coordinates of controlclick?

My script works well, the problem is I need to click 100 pixels to the right and I'm unable to do it. I've tried this: loop, 32 { ControlClick, x440 y974, MEmu 2.5.0 - MEmu ; donation sleep, 250 ImageSearch, x, y, 390, 150, 420, 880, C:\Users\El\Desktop\R\donation.png If Errorlevel = 0 { ControlClic...
by inthesky2
10 May 2016, 00:25
Forum: Ask for Help (v1)
Topic: Imagesearch inactive or minimized window
Replies: 18
Views: 11412

Re: Imagesearch inactive or minimized window

Still not solved
by inthesky2
06 May 2016, 20:55
Forum: Ask for Help (v1)
Topic: Control Mousedrag possible?
Replies: 3
Views: 3198

Re: Control Mousedrag possible?

Hello Inthesky2. You can send a WM_MOUSEMOVE message to the target window. PostMessage/SendMessage is the command to use. If you whant to simulate a MOUSEDRAG movement, the WM_MOUSEMOVE (0x0200) messages wParam should contain 0x0001 (to indicate that the left mouse button is down) and the lParam sh...

Go to advanced search