Search found 23 matches

by DarkWisk
21 Sep 2022, 22:31
Forum: Ask for Help (v1)
Topic: Help with ini listbox submit/edit!
Replies: 1
Views: 296

Help with ini listbox submit/edit!

Hi all I have a gui that I enter 4 parameters and it save them to a ini file. when I open the gui again I want it to show only the section name in the listbox to the right, but it shows sections on the same line how can I fix this? and I want to be able to click on a preset in the list box and then ...
by DarkWisk
30 Aug 2022, 20:51
Forum: Ask for Help (v1)
Topic: ImageSearch doesn't stop when first image not found
Replies: 2
Views: 282

ImageSearch doesn't stop when first image not found

Hello I have a script where I want to imagesearch screen for image1 then image2 then image3 etc it works great finding the images but when I cover image one with a different window it doesn't stop when image1 isn't found it continues to search for image2 then moves my mouse to it what am I doing wro...
by DarkWisk
30 Aug 2022, 19:30
Forum: Ask for Help (v1)
Topic: gdip positions as variable?
Replies: 2
Views: 501

Re: gdip positions as variable?

Thank you so much it worked!! :dance:
by DarkWisk
30 Aug 2022, 18:52
Forum: Ask for Help (v1)
Topic: gdip positions as variable?
Replies: 2
Views: 501

gdip positions as variable?

Hello in the gdip.ahk there is this line: snap := Gdip_BitmapFromScreen("100|100|400|400") Is it possible to do something like this? snap := Gdip_BitmapFromScreen(%LT%|%RT%|%LB%|%RB%) I want to take a screenshot of specific area of a specific window based on gui position just stuck on this part
by DarkWisk
26 Aug 2022, 11:57
Forum: Ask for Help (v1)
Topic: Backup all files in folder list
Replies: 2
Views: 642

Backup all files in folder list

Hello I've search through many threads and links to find backup script that works for me but most have not worked. In the ahk documentation there is a working example but it only does one file how can I make this script work by reading a backup.txt file and read each line and backup each directory i...
by DarkWisk
26 Aug 2022, 09:54
Forum: SciTE4AutoHotkey
Topic: Is it possible to add a default script in SciTE4AutoHotkey
Replies: 1
Views: 867

Is it possible to add a default script in SciTE4AutoHotkey

Hi, is it possible for scite to always open with default script like in screenshot below? Every time I click the new script button id like it to open with that script every time, copy pasting is annoying.

Image
by DarkWisk
07 Aug 2022, 18:40
Forum: Ask for Help (v1)
Topic: Need some help sticking a gui to a program window
Replies: 4
Views: 691

Re: Need some help sticking a gui to a program window

Ill check it out thank you for your help. And I would rather keep my data encrypted on my system then trust another company with it
by DarkWisk
07 Aug 2022, 18:36
Forum: Ask for Help (v1)
Topic: Need some help sticking a gui to a program window
Replies: 4
Views: 691

Re: Need some help sticking a gui to a program window

I found something similar and changed the code a little for my needs from this post https://www.autohotkey.com/board/topic/95788-set-3rd-party-windows-parent-to-ahk-gui/ Here is my code that i changed from that post but soon as i move the notepad window the gui window inside dissappears i need it to...
by DarkWisk
07 Aug 2022, 18:22
Forum: Ask for Help (v1)
Topic: Need some help sticking a gui to a program window
Replies: 4
Views: 691

Need some help sticking a gui to a program window

Hello I would like to "stick" a gui Like in this post https://www.autohotkey.com/boards/viewtopic.php?t=48236 to a program window of my choosing and then click a button that will log me in to the app/program like xsplit, discord, gmail, etc so that I dont need to have my passwords saved within the a...
by DarkWisk
05 Aug 2022, 19:18
Forum: Ask for Help (v1)
Topic: Sometimes picture in GUI takes 2 clicks
Replies: 3
Views: 567

Re: Sometimes picture in GUI takes 2 clicks

If I click the picture one time and wait more then one second before clicking again it wont work but if I click it twice fast it works

so if I do it once every second doesn't register click but if in less then second I click twice it works so weird
by DarkWisk
05 Aug 2022, 16:00
Forum: Ask for Help (v1)
Topic: Sometimes picture in GUI takes 2 clicks
Replies: 3
Views: 567

Re: Sometimes picture in GUI takes 2 clicks

I still got same result using both of your answers I still need to double click the Button 1 for it to hide button 2 and need to press button 0 twice to hide gui with button 1 on it
by DarkWisk
30 Jul 2022, 21:43
Forum: Ask for Help (v1)
Topic: Sometimes picture in GUI takes 2 clicks
Replies: 3
Views: 567

Sometimes picture in GUI takes 2 clicks

Hello here is my script (Changed for example hopefully the default icons/pictures work) #SingleInstance Force #MaxThreadsPerHotkey 2 SetWorkingDir,%A_ScriptDir% xButton := "C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_1c83a5d7cffd7bff\error.png" bButton80x25 := "C:\Windows\Syste...
by DarkWisk
30 Jul 2022, 12:14
Forum: Ask for Help (v1)
Topic: Cant detect window
Replies: 18
Views: 1907

Re: Cant detect window

Sweet! Thank you so much you answered a lot of my questions! :]
by DarkWisk
30 Jul 2022, 12:11
Forum: Ask for Help (v1)
Topic: Cant detect window
Replies: 18
Views: 1907

Re: Cant detect window

Ok awesome and that won't mess with any of my other scripts?
by DarkWisk
30 Jul 2022, 12:06
Forum: Ask for Help (v1)
Topic: Cant detect window
Replies: 18
Views: 1907

Re: Cant detect window

ok, so I go to the options and set the default encoding to UTF-8 with BOM? Or should I do it only when I need it ?
by DarkWisk
30 Jul 2022, 12:00
Forum: Ask for Help (v1)
Topic: Cant detect window
Replies: 18
Views: 1907

Re: Cant detect window

One more question how can I do something like this

Code: Select all



SetTitleMatchMode, RegEx

if WinExist("^Untitled.*Paint 3D$ ahk_exe ApplicationFrameHost.exe")
	WinActive
	{
		tab::
	MouseMove, (A_SCREENWIDTH/2), (A_SCREENHEIGHT/2)
	return
}

So that that hotkey only works in that window and not others
by DarkWisk
30 Jul 2022, 11:55
Forum: Ask for Help (v1)
Topic: Cant detect window
Replies: 18
Views: 1907

Re: Cant detect window

The code you sent me works perfectly!! I am so grateful for your help you're the best i've been stuck on this for a while! Thank you so much! : ]
by DarkWisk
30 Jul 2022, 11:16
Forum: Ask for Help (v1)
Topic: Cant detect window
Replies: 18
Views: 1907

Re: Cant detect window

It gives me this but how can I make it to detect if the win exists also want to be able to detect any window with those hidden characters U85 0x55n110 0x6et116 0x74i105 0x69t116 0x74l108 0x6ce101 0x65d100 0x64*42 0x2a·​32 0x20U+200E‎ \u200E-45 0x2d·​32 0x20P80 0x50a97 0x61i105 0x69n110 0x6et11...
by DarkWisk
30 Jul 2022, 10:48
Forum: Ask for Help (v1)
Topic: Cant detect window
Replies: 18
Views: 1907

Re: Cant detect window

Sorry I think I explained it wrong I am trying to detect paint window but when I copy the title from the windows spy tool it adds a "?" in the title and won't detect it also if I remove the "?" in the win exist it will also not detect the window I also removed the quotes in the win exist title and i...

Go to advanced search