Search found 195 matches

by littlegandhi1199
03 Jan 2024, 18:40
Forum: Scripts and Functions (v1)
Topic: (Acoustics/Mirrors) First Reflection Point Calculator !Multiple Seats!
Replies: 0
Views: 342

(Acoustics/Mirrors) First Reflection Point Calculator !Multiple Seats!

This can be used to determine the commonly acoustically treated "First Reflection Point" in home theatre and Audiophile sound damping. As well by using the calculator additionally...a minimum-maximum for each parameter of Y=distance to the speaker X1=distance from speaker to the wall X2=distance fro...
by littlegandhi1199
04 Oct 2022, 11:45
Forum: Ask for Help (v1)
Topic: make window on second screen transparent
Replies: 6
Views: 749

Re: make window on second screen transparent

A simple fix may just having a hotkey that issues the "Reload" command to restart the script if it does infact work everytime on boot.


F9::reload
by littlegandhi1199
26 Jun 2022, 19:22
Forum: Ask for Help (v1)
Topic: make window on second screen transparent
Replies: 6
Views: 749

Re: make window on second screen transparent

WinGetPos, WinX, WinY, , , ahk_id %hwnd%
If (WinX >= 2560)


I figured you would find a better "Z-Order" function but yeah this will work too placed at the msgbox line
by littlegandhi1199
26 Jun 2022, 01:33
Forum: Ask for Help (v1)
Topic: using a key that is activated with another ahk key
Replies: 3
Views: 757

Re: using a key that is activated with another ahk key

And if I understand you correctly this information will be of help to you. There are a couple ways that you can modify hotkeys to make them more or less forgiving. ~LButton:: This will still let the key be used normally while silently triggering the hotkey in your script. This may allow multiple scr...
by littlegandhi1199
26 Jun 2022, 01:18
Forum: Ask for Help (v1)
Topic: make window on second screen transparent
Replies: 6
Views: 749

Re: make window on second screen transparent

So what you are looking for is the window Z Order. hwnd := WinActive("A") DisplayVar = loop { hwnd := DllCall("GetWindow",uint,hwnd,int,2) ; 2 = GW_HWNDNEXT ; GetWindow() returns a decimal value, so we have to convert it to hex SetFormat,integer,hex hwnd += 0 SetFormat,integer,d ; GetWindow() proces...
by littlegandhi1199
12 Apr 2022, 15:50
Forum: Gaming Scripts (v1)
Topic: (Scrabble) Standalone Anagram Solver N/4-15___v1.07 + Function
Replies: 12
Views: 10427

Re: (Scrabble) Standalone Anagram Solver N/4-15___v1.07 + Function

Wow, I am an avid scrabble player and I liked your script so much that I don't have words to describe it. Earlier I used online tools to find these [Mod edit: Link removed.] . Now, I am happy that its a tool on my own pc without using internet. More power to you Alright! Thank you for creating a ne...
by littlegandhi1199
15 Jul 2021, 15:23
Forum: Gaming Scripts (v1)
Topic: (Scrabble) Standalone Anagram Solver N/4-15___v1.07 + Function
Replies: 12
Views: 10427

Re: (Scrabble) Standalone Anagram Solver N/4-15___v1.07 + Function

https://drive.google.com/file/d/1ZGy_pSIBD3jEeoCX4HgYfViaBBPMhTww/view?usp=sharing EDIT 7PM MST....changed to newer dictionary. It's arbitrary though because I wasn't asking for the responses. I was wondering (which I'm not sure is even possible) to see the incremental requests for which the follow...
by littlegandhi1199
14 Jul 2021, 00:23
Forum: Gaming Scripts (v1)
Topic: (Scrabble) Standalone Anagram Solver N/4-15___v1.07 + Function
Replies: 12
Views: 10427

Re: (Scrabble) Standalone Anagram Solver N/4-15___v1.07 + Function

I finde it fascinating how did you achive your goal! However I had to modify your script to work on my OS/Ahk version. I think my version is more universal, however I'm amateur too! Since combination method (despite your awesome cut downs) has hard time for langer inputs I introduced Stop Search vi...
by littlegandhi1199
16 Sep 2020, 21:11
Forum: Ask for Help (v1)
Topic: No BlockInput
Replies: 5
Views: 423

Re: No BlockInput

Are you sure it's admin?

put this at the top of the script

Code: Select all

if not A_IsAdmin
{
   Run *RunAs "%A_ScriptFullPath%" 
   ExitApp
}
by littlegandhi1199
15 Sep 2020, 19:40
Forum: Ask for Help (v1)
Topic: automating encoding on excel Topic is solved
Replies: 10
Views: 765

Re: automating encoding on excel Topic is solved

So hit paste in blank cells then
by littlegandhi1199
15 Sep 2020, 18:41
Forum: Ask for Help (v1)
Topic: automating encoding on excel Topic is solved
Replies: 10
Views: 765

Re: automating encoding on excel Topic is solved

You can usually just paste, which by default overwrites cells that have already been filled, though it would be much faster and consistent IMO. %A_Tab% is the autohotkey variable that contains a tab (or next cell) `n is the next line (or row as excel interprets it) but you can also just do next line...
by littlegandhi1199
14 Sep 2020, 16:26
Forum: Ask for Help (v1)
Topic: Log in a web page then grab information from it
Replies: 1
Views: 238

Re: Log in a web page then grab information from it

What I have done to get more access to websites is to use firefox. Login then install the addon "Export Cookies" I haven't used it in awhile but make sure it says it (or another cookie exporter) support curl. Download curl zip. You only need to extract the files inside the "bin" folder >>> curl.exe ...
by littlegandhi1199
12 Sep 2020, 20:13
Forum: Ask for Help (v1)
Topic: Autohotkey Gui Transparent Picture overlapping other pictures
Replies: 1
Views: 248

Re: Autohotkey Gui Transparent Picture overlapping other pictures

Everything is layered in the order you initialize it in the code. Otherwise you might try GuiControl. Make sure your picture has an identifier to get it for example you can assign an arbitrary Variable Gui, Add, Picture, vName1 Then try hiding it and showing them perhaps it will change their order G...
by littlegandhi1199
10 Sep 2020, 14:56
Forum: Ask for Help (v1)
Topic: Conditional KeyDelay By Key, Set By Counter
Replies: 1
Views: 447

Re: Conditional KeyDelay By Key, Set By Counter

Here's something for ya loop { If ((A_TickCount >= Alarm) && (Alarm > 0)) { SoundPlay, %A_WinDir%\Media\notify.wav Alarm := 0 } } exitapp 1:: 2:: If (Alarm > 0) Alarm := Alarm+1000 Else Alarm := A_TickCount+1000 ;;;;;;;;;;;;;;;;;;;;;;;;Now check if it's gone over 2 seconds and lower it back down If ...
by littlegandhi1199
09 Sep 2020, 21:12
Forum: Ask for Help (v1)
Topic: Split string in csv of each character, then perfom operations on each character seperatly
Replies: 1
Views: 310

Re: Split string in csv of each character, then perfom operations on each character seperatly

Code: Select all

var := "password 123"
msgbox, "%var%"
Array := StrSplit(var)

loop
{
out := Array[A_Index]
msgbox, "%out%" <<< Perform your operations
}
by littlegandhi1199
09 Sep 2020, 20:49
Forum: Ask for Help (v1)
Topic: copy from tradestation table and paste values in excell
Replies: 1
Views: 246

Re: copy from tradestation table and paste values in excell

Copy it into your clipboard and see what this can pull out for you.
First it splits everything up by lines and then by Tabs (which is common for cells)

Code: Select all

var := Clipboard

loop, parse, var, `n
{
msgbox, %A_Loopfield%
var2 := A_Loopfield

Loop, parse, var2, %Tab%
{
msgbox, %A_Loopfield%
}

}
by littlegandhi1199
28 Aug 2020, 14:02
Forum: Ask for Help (v1)
Topic: Delete Folders Topic is solved
Replies: 2
Views: 354

Re: Delete Folders Topic is solved

I have two theories for you first one is bad... did you use "filename" instead of "A_Loopfilename" perhaps? Other one i commented into the script #NoEnv SetWorkingDir T:\UV bs\TESTING\RAW CoordMode, Mouse, Window SendMode Input #SingleInstance Force SetTitleMatchMode 2 #WinActivateForce SetControlDe...
by littlegandhi1199
23 Aug 2020, 16:57
Forum: Ask for Help (v1)
Topic: switching between 2 windows only
Replies: 14
Views: 7103

Re: switching between 2 windows only

Well I've already tried on Windows 10 and my main windows 7 pc. His original script does nothing to change selected windows available via taskbar. If it was going to do anything it would have been on Windows 7 which is much closer to Windows servers then windows 10. You should simplify the script to...

Go to advanced search