Search found 83 matches

by SuperFoobar
24 Mar 2020, 19:21
Forum: Ask for Help (v1)
Topic: Hey guys I need some help..
Replies: 2
Views: 411

Re: Hey guys I need some help..

I still don't understand what you are asking for. Please provide:

-What does the user input in the app
-What's the expected behaviour after the user performs said input
by SuperFoobar
23 Mar 2020, 16:43
Forum: Ask for Help (v1)
Topic: Help with a script
Replies: 3
Views: 973

Re: Help with a script

Code: Select all

Loop
{
	Tick := A_TickCount

	Loop
	{
		Send q
		Sleep 200
	}Until (A_TickCount - Tick >= (35 * 1000))

	For _, Key in ["Left", "Right"]
	{
		For _, Direction in ["up", "down"]
		{
			Send % "{" Key A_Space direction "}"
			Sleep 250
		}
	}
}
by SuperFoobar
20 Mar 2020, 16:54
Forum: Ask for Help (v1)
Topic: Gui Picture and loops
Replies: 6
Views: 1101

Re: Gui Picture and loops

Why not resize your cards in photoshop first? Would cut down your code and issues
by SuperFoobar
20 Mar 2020, 16:12
Forum: Ask for Help (v1)
Topic: How can I remotely close my script?
Replies: 6
Views: 1052

Re: How can I remotely close my script?

it occurs to you how I can make it not work outside the dropbox folder or rather with a specific dropbox account, because they can use it with another account in the dropbox directory but I will not be able to update and put the stop.txt if they use with another account. sorry my english is google ...
by SuperFoobar
19 Mar 2020, 13:41
Forum: Ask for Help (v1)
Topic: Help Please Topic is solved
Replies: 1
Views: 433

Re: Help Please Topic is solved

This is what you probably are referring to:

Code: Select all

AutoBreak:
Gui, Submit, NoHide
if (AutoBreakV == 1)
{
	*Numpad2::
	Send {LButton Down}
}
return
Hotkeys can't be nested like this.

Replace with this

Code: Select all

AutoBreak:
Gui, Submit, NoHide
return

#IF AutoBreakV

*Numpad2::Send {LButton Down}

#IF
by SuperFoobar
19 Mar 2020, 11:02
Forum: Ask for Help (v1)
Topic: Simultaneous WinWait and wait for Input?
Replies: 3
Views: 719

Re: Simultaneous WinWait and wait for Input?

Code: Select all

SetTitleMatchMode 2
WindowTitle := "Title of the window"

#IF WinActive(WindowTitle)

Enter::
	ControlClick, OK, % WindowTitle
Return

#IF
by SuperFoobar
19 Mar 2020, 10:21
Forum: Ask for Help (v1)
Topic: Controlling the ListBox width dynamically
Replies: 1
Views: 340

Re: Controlling the ListBox width dynamically

Hallo there, take a look at my code snippet: Gui Add, ListBox, x10 y10 w60 vListBox1, 01 Bill|02 Bob|03 Ben Gui Add, Slider, x10 y60 Range1-10 vSlider1 gSliderLabel, 0 Gui,show, x10 y10 w150 h120 return SliderLabel: GuiControlGet Slider1 ; ??? Changing the list box width (w60) dynamically return Es...
by SuperFoobar
19 Mar 2020, 10:15
Forum: Ask for Help (v1)
Topic: Mouse Auto Click help with some variables
Replies: 2
Views: 403

Re: Mouse Auto Click help with some variables

If (A_TimeSinceThisHotkey > 100) doesn't work because it's not inside a hotkey, this is a timer.

You would want to change the timer interval from 0 to 100 instead.

Code: Select all

SetTimer, RF, % (toggle1 := !toggle1) ? "100" : "OFF"
by SuperFoobar
19 Mar 2020, 09:52
Forum: Ask for Help (v1)
Topic: How to allow 0-9, A-Ö and a-ö Topic is solved
Replies: 7
Views: 1804

Re: How to allow 0-9, A-Ö and a-ö Topic is solved

Odlanir wrote:
19 Mar 2020, 04:22
Your Result assignment will NEVER be "NOT OK!".
Try this:

Code: Select all

Result := RegExMatch(aInput[A_Index], "i)^[0-9A-ZÅÄÖåäö\s]+$") ? "OK!" : "NOT OK!"
Ah yes I accidentally removed the ^ character from the pattern
by SuperFoobar
19 Mar 2020, 09:50
Forum: Ask for Help (v1)
Topic: script to change keyboard layout using Fn
Replies: 2
Views: 472

Re: script to change keyboard layout using Fn

FN is a hardware level key and cannot be remapped
by SuperFoobar
19 Mar 2020, 09:42
Forum: Ask for Help (v1)
Topic: How can I remotely close my script?
Replies: 6
Views: 1052

Re: How can I remotely close my script?

But if this isn't a network folder, you could have the script look in your dropbox for the file. Exactly, I'm looking for something like this, but from some cloud like dropbox, how would it be with dropbox? Use the code example I showed but make it look in your dropbox instead On your phone for exa...
by SuperFoobar
18 Mar 2020, 17:25
Forum: Ask for Help (v1)
Topic: Script to press a specific key with a duration. Topic is solved
Replies: 8
Views: 1595

Re: Script to press a specific key with a duration. Topic is solved

Ok, but what i mean is i need it to press specifically the left shift key. I plan on using this script in minecraft so i should see something. but when i tried it nothing happened other then the tooltip. So it does actually press shift when the tooltip happens.... and as expected, pressing shift on...
by SuperFoobar
18 Mar 2020, 16:13
Forum: Ask for Help (v1)
Topic: AHK and Multiplicity KVM Mode
Replies: 4
Views: 861

Re: AHK and Multiplicity KVM Mode

If i add the window to another monitor and use a hotkey to jump my cursor and activate the window of the remote KVM. I can use my mouse and leave the window and go to the main PC and click and now i am back in the main computer. I can fumble my way through using MouseMove and the ability to click t...
by SuperFoobar
18 Mar 2020, 16:02
Forum: Ask for Help (v1)
Topic: Script to press a specific key with a duration. Topic is solved
Replies: 8
Views: 1595

Re: Script to press a specific key with a duration. Topic is solved

So it does actually press shift when the tooltip happens.... and as expected, pressing shift once doesn't have a real noticeable effect Fantastic. this can be ran/activated by pressing like a trigger key? Also, as is this doesn't do anything except show a little tooltip that says Pressed Shift. #Per...
by SuperFoobar
18 Mar 2020, 14:32
Forum: Ask for Help (v1)
Topic: How to allow 0-9, A-Ö and a-ö Topic is solved
Replies: 7
Views: 1804

Re: How to allow 0-9, A-Ö and a-ö Topic is solved

Thanks! If the string is OK! (0-9 A-Ö a-ö) I only want one output (the string is OK! / Correct!) If the string have other characters, the string is not valid (and must be handled iin some way) Some teststrings Input := "THIS IS Å VÅLID STRING ÖÖÖÖÖ" ; OK! ; Input = Coffee Shop ; OK! ; Input = Coffé...
by SuperFoobar
18 Mar 2020, 14:01
Forum: Ask for Help (v1)
Topic: Script to press a specific key with a duration. Topic is solved
Replies: 8
Views: 1595

Re: Script to press a specific key with a duration. Topic is solved

Code: Select all

#Persistent
#SingleInstance Force

SetTimer, PressShift, % 1000 * 60 * 14

PressShift:
	Send {Shift}
	ToolTip Pressed Shift!
	SetTimer, RemoveToolTip, -2000
Return

RemoveToolTip:
	ToolTip
return
by SuperFoobar
18 Mar 2020, 13:59
Forum: Ask for Help (v1)
Topic: Toggleable "while pressed" loop/timer
Replies: 1
Views: 377

Re: Toggleable "while pressed" loop/timer

#SingleInstance Force /:: ToolTip % (Toggle := !Toggle) ? "ON" : "OFF" SetTimer, RemoveTooltip, -1000 Return RemoveTooltip: ToolTip Return #IF Toggle *Lbutton:: While GetKeyState("Lbutton", "P"){ MouseClick Sleep Rand(157, 165) } Return #IF Rand(Min, Max){ Random, Rand, % Min, % Max Return Rand }

Go to advanced search