Search found 108 matches

by donovv
27 Apr 2018, 14:58
Forum: Ask for Help (v1)
Topic: Why i am unable to remap Ctrl+Win keys?
Replies: 5
Views: 1424

Re: Why i am unable to remap Ctrl+Win keys?

i tested on my work computer its windows 7 x86 with what ever the newest version of ahk is out
by donovv
27 Apr 2018, 13:31
Forum: Ask for Help (v1)
Topic: Why i am unable to remap Ctrl+Win keys?
Replies: 5
Views: 1424

Re: Why i am unable to remap Ctrl+Win keys?

it works for me
by donovv
20 Apr 2018, 14:28
Forum: Ask for Help (v1)
Topic: Local/Global variable warning...
Replies: 2
Views: 639

Re: Local/Global variable warning...

Code: Select all

global count
count = 1
by donovv
10 Apr 2018, 23:17
Forum: Ask for Help (v1)
Topic: DDL not setting proper text to clipboard Topic is solved
Replies: 6
Views: 1451

Re: DDL not setting proper text to clipboard Topic is solved

you never declared a variable for you ddl

Code: Select all

Gui, Add, DropDownList, x12 y29 w760 h20 vDDL gDynoCommandHelp R20
by donovv
10 Apr 2018, 23:09
Forum: Ask for Help (v1)
Topic: hotstrings/clipboard question (SOLVED)
Replies: 8
Views: 2071

Re: hotstrings/clipboard question

New code up save working let me know if you find any bugs
by donovv
10 Apr 2018, 21:43
Forum: Ask for Help (v1)
Topic: hotstrings/clipboard question (SOLVED)
Replies: 8
Views: 2071

Re: hotstrings/clipboard question

donnov, I tried using that code some more and ran into issues after editing the output text. After editing the output text for the hotstings, saving and exiting, the hotstring does not work at all. For example: if you assign "lol" to "laugh out loud" then save and exit it works perfect. After click...
by donovv
10 Apr 2018, 18:50
Forum: Scripts and Functions (v1)
Topic: Instant HotString
Replies: 17
Views: 4564

Re: Instant HotString

burque505 wrote:Nice script, donovv!
Regards,
burque505
Thank you! Took a lot of inspiration from your script planning on adding a saving feature and working on a few small bugs I noticed today
by donovv
10 Apr 2018, 15:05
Forum: Ask for Help (v1)
Topic: Help with Menu+Script Topic is solved
Replies: 20
Views: 4041

Re: Help with Menu+Script Topic is solved

I’ll give it a shot when I get off tonight but that’s about 4 hours from now
by donovv
10 Apr 2018, 12:44
Forum: Scripts and Functions (v1)
Topic: Instant HotString
Replies: 17
Views: 4564

Re: Instant HotString

Yours doesn't improve one of the first issues with burque505's. After saving a hotkey, you can't add another one--the window disappears. EDIT: Actually, his does have a "Show GUI" button in the tray menu, but it doesn't reset the edit fields My script does allow for adding multiple if you right cli...
by donovv
10 Apr 2018, 00:11
Forum: Ask for Help (v1)
Topic: hotstrings/clipboard question (SOLVED)
Replies: 8
Views: 2071

Re: hotstrings/clipboard question

Your post got me thinking give this a try still working on saving and reloading the hotstrings should have that added by tomorrow

https://autohotkey.com/boards/viewtopic.php?f=6&t=47024
by donovv
10 Apr 2018, 00:06
Forum: Scripts and Functions (v1)
Topic: Instant HotString
Replies: 17
Views: 4564

Instant HotString

hey guys so I was browsing though the ask for help forum and ran into this https://autohotkey.com/boards/viewtopic.php?f=5&t=46988 where the OP was asking for help creating an improved version of https://autohotkey.com/boards/viewtopic.php?f=6&t=46514&hilit=burque505 . I decided to take a crack at i...
by donovv
09 Apr 2018, 19:55
Forum: Ask for Help (v1)
Topic: MsgBox with forced expression and custom title Topic is solved
Replies: 3
Views: 1193

Re: MsgBox with forced expression and custom title Topic is solved

msgbox,,%var2%,% var1
the title for msgbox is before the text
by donovv
09 Apr 2018, 10:04
Forum: Ask for Help (v1)
Topic: variable not recognized in literal string Topic is solved
Replies: 3
Views: 1199

Re: variable not recognized in literal string Topic is solved

becuase they are between quotes

Code: Select all

"<span class='tooltip'>"%fronttext%"<span class='tooltiptext'>"%backtext% "</span></span>"
by donovv
07 Apr 2018, 19:55
Forum: Ask for Help (v1)
Topic: Help with Menu+Script Topic is solved
Replies: 20
Views: 4041

Re: Help with Menu+Script Topic is solved

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starti...
by donovv
07 Apr 2018, 17:38
Forum: Ask for Help (v1)
Topic: Turning off a hotkey while typing text?
Replies: 4
Views: 904

Re: Turning off a hotkey while typing text?

Code: Select all

f1:: ;f1 will make your hotkeys active/inactive 
	toggle := !toggle
return
	
#if toggle
q::msgbox working
by donovv
07 Apr 2018, 14:28
Forum: Ask for Help (v1)
Topic: Retrieve current SSID and write to registry
Replies: 2
Views: 799

Re: Retrieve current SSID and write to registry

so i dont have a laptop or anything to even attempted to help with this right now but i can see 1 possible issue "C:\\Windows\\system32\\cmd.exe /c netsh wlan connect name=%SSID1%" you have the variable within quotes its going to run that as a litteral string you would want to do "C:\\Windows\\syste...
by donovv
06 Apr 2018, 16:23
Forum: Ask for Help (v1)
Topic: I use "portable" .exe and get error..
Replies: 12
Views: 1943

Re: I use "portable" .exe and get error..

so if you open the compiled script in notepad it has the text for the actual script at the bottom of it
by donovv
06 Apr 2018, 16:10
Forum: Ask for Help (v1)
Topic: Toggle rapidly press G
Replies: 2
Views: 660

Re: Toggle rapidly press G

Code: Select all

#maxthreadsperhotkey 2
$g::
	toggle := !toggle
		while toggle
			{
				send g
				sleep 40
			}
return
by donovv
06 Apr 2018, 15:03
Forum: Ask for Help (v1)
Topic: mapping a specific copy command Topic is solved
Replies: 2
Views: 737

Re: mapping a specific copy command Topic is solved

try this

Code: Select all

f1::
	send ^{right}
	send {shift down}
	send {right}{right}{right}
	send {shift up}
	send ^c
return

Go to advanced search