Search found 31 matches

by Te Waffles
30 Jul 2016, 14:36
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

Should I try using SetTitleMatchMode?
by Te Waffles
30 Jul 2016, 14:30
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

I put ahk_parent in the parameter, but it still isn't working. I think I have to add more code. I'll see what I can do.
by Te Waffles
30 Jul 2016, 00:16
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

boiler wrote:Not necessarily. Try leaving it blank as Shadowphoenix said. You can also try ahk_parent. See the documentation for ControlSend.
I've tried leaving it blank and it still doesn't work. Could you explain to me how to find the ahk_parent?
by Te Waffles
29 Jul 2016, 22:46
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

I've tried this script on notepad, but it isn't working.

Code: Select all

#UseHook On
#NoEnv
SendMode Input
SetWorkingDir, % A_ScriptDir
#SingleInstance, Force
 
F8::
	toggle:=1
	while (toggle)
	{
		sleep,100
		ControlSend, Edit1, f , notepad.exe
	}
Return
 
F9::  toggle:=!toggle
What am I doing wrong?
by Te Waffles
28 Jul 2016, 22:49
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

With the game I wanna use, it doesn't show anything in the ClassNN section. Does this mean that I can't send the script to the game?
by Te Waffles
28 Jul 2016, 22:40
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

I did some research, and downloaded SciTe4AutoHotkey. It comes with a active windows info (I did research on it and I think it's safe.) I used it with a couple of test programs and it works. Is ClassNN the control?
by Te Waffles
28 Jul 2016, 22:31
Forum: Ask for Help (v1)
Topic: Key spammer Topic is solved
Replies: 13
Views: 9075

Re: Key spammer Topic is solved

I changed the script, but it doesn't spam the key when toggled with F3. It just spams space when holding F3. Also, can you make it like the first script, with a console (F12) and toggled by F3. Just this time the script will hold down the specified key instead of repeatedly pressing it. Thank You :...
by Te Waffles
28 Jul 2016, 22:27
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

Replace your Send whatever_text commands with ControlSend , name_of_control_to_send_to, whatever_text, window_title . If you do not know the name of the control to send to, try leaving that piece blank - sometimes that will work. Could you edit one of the codes so that it will send the script to no...
by Te Waffles
28 Jul 2016, 22:23
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

Can someone tell me how to find the control of a program?
by Te Waffles
28 Jul 2016, 22:19
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

Shadowpheonix wrote:Replace your Send whatever_text commands with ControlSend, name_of_control_to_send_to, whatever_text, window_title. If you do not know the name of the control to send to, try leaving that piece blank - sometimes that will work.
I don't know how to find the control D:
by Te Waffles
28 Jul 2016, 22:15
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

[quote="Te Waffles"][quote="boiler"]What do you mean by "run in a minimized tab"? Do you mean on the task bar? If your script creates no GUI window, there is nothing to minimize. Your script will be running, and its icon will be in the system tray. I mean a window that is minimized to the taskbar. I...
by Te Waffles
28 Jul 2016, 22:08
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Re: Script in Minimized tab 2

boiler wrote:What do you mean by "run in a minimized tab"? Do you mean on the task bar? If your script creates no GUI window, there is nothing to minimize. Your script will be running, and its icon will be in the system tray.
I mean a window that is minimized to the taskbar.
by Te Waffles
28 Jul 2016, 01:12
Forum: Ask for Help (v1)
Topic: Key spammer Topic is solved
Replies: 13
Views: 9075

Re: Key spammer Topic is solved

I changed the script, but it doesn't spam the key when toggled with F3. It just spams space when holding F3. Also, can you make it like the first script, with a console (F12) and toggled by F3. Just this time the script will hold down the specified key instead of repeatedly pressing it.
Thank You :D
by Te Waffles
28 Jul 2016, 01:00
Forum: Ask for Help (v1)
Topic: Script in Minimized tab 2
Replies: 21
Views: 4734

Script in Minimized tab 2

Hey guys. I posted a topic a while ago about this, but I didn't really understand and the topic went silent. People told me to research ControlSend. I did but I am still confused and don't know where to put the wintitles and all of that stuff. Also, I know which program I want to run it in and know ...
by Te Waffles
22 Jul 2016, 18:05
Forum: Ask for Help (v1)
Topic: Key spammer Topic is solved
Replies: 13
Views: 9075

Re: Key spammer Topic is solved

It says HoldDownSpace != HoldDownSpace does not contain a recognized action.
by Te Waffles
22 Jul 2016, 00:00
Forum: Ask for Help (v1)
Topic: Script on minimized game
Replies: 3
Views: 1157

Re: Script on minimized game

I'm new to AHK, but I did some research.
For this code:

Code: Select all

#UseHook On
#NoEnv
SendMode Input
SetWorkingDir, % A_ScriptDir
#SingleInstance, Force
 
F8::
	toggle:=1
	while (toggle)
	{
		sleep,100
		send, x
	}
Return
 
F9::  toggle:=!toggle
Where would I put the "wintitle" and all that stuff?
by Te Waffles
21 Jul 2016, 22:56
Forum: Ask for Help (v1)
Topic: Key spammer Topic is solved
Replies: 13
Views: 9075

Re: Key spammer Topic is solved

I hope I'm not asking too much, but can you make a version of this that holds down a key. Like you're holding down the key instead of pressing it repeatedly.
Thanks :D
by Te Waffles
21 Jul 2016, 22:50
Forum: Ask for Help (v1)
Topic: Key spammer Topic is solved
Replies: 13
Views: 9075

Re: Key spammer Topic is solved

I've tried running it in games and other software, but the toggle isn't working when I'm in a game. It works perfectly when I minimize the game then enter into the game. Could you fix it so that the toggle will work inside the game. Also, could you change the toggle button to f2 I am not entirely s...
by Te Waffles
21 Jul 2016, 20:05
Forum: Ask for Help (v1)
Topic: Key spammer Topic is solved
Replies: 13
Views: 9075

Re: Key spammer Topic is solved

I've tried running it in games and other software, but the toggle isn't working when I'm in a game. It works perfectly when I minimize the game then enter into the game. Could you fix it so that the toggle will work inside the game. Also, could you change the toggle button to f2
by Te Waffles
21 Jul 2016, 19:55
Forum: Ask for Help (v1)
Topic: Script on minimized game
Replies: 3
Views: 1157

Script on minimized game

Hello, I want to update these scripts so that they can run on a minimized game or tab, while I am in another tab. I don't want the script to be running on the screen I am on; only on the minimized screen that I choose. Could you guys help me update these scripts so that they can do what I asked? Her...

Go to advanced search