Search found 144 matches

by lifeweaver
01 Apr 2016, 14:44
Forum: Gaming Help (v1)
Topic: Chrome Window Grid
Replies: 1
Views: 1588

Re: Chrome Window Grid

Hi Josh Moore, Looks like the chrome pid changes or something, apparently chrome has a 'host' process that handles rendering and has 'worker' processes for each tab. I noticed that the WinPID didn't exist for the WinWait to find. Try something like the below, note that CellW at 30 didn't work well, ...
by lifeweaver
01 Apr 2016, 10:35
Forum: Ask for Help (v1)
Topic: Winamp struggle.
Replies: 3
Views: 865

Re: Winamp struggle.

I want to add a Stop command right before I Run an .mp3 file to reduce delay between switching up sounds but I'm quite struggling. Any tips? I would create a function that sends the stop code and call it before you call the run or maybe something like(untested): ^numpad0:: PlayWithWinAmp("F:\sounds...
by lifeweaver
01 Apr 2016, 10:24
Forum: Ask for Help (v1)
Topic: midicontroller with knobs reacting to mouse
Replies: 4
Views: 1190

Re: midicontroller with knobs reacting to mouse

I'm sorry if it seemed I was implying that you were lazy with the search line, some people just don't think it do a search amazingly!
by lifeweaver
31 Mar 2016, 13:39
Forum: Ask for Help (v1)
Topic: Source directory
Replies: 1
Views: 671

Re: Source directory

Hi Asura,

From inside the script: A_ScriptDir
From outside the script, something like:

Code: Select all

for objItem in ComObjGet("winmgmts:").ExecQuery("Select * from Win32_Process where Name = 'AutoHotkey.exe'")
{
  msgbox % objItem.CommandLine
}
msgbox done
by lifeweaver
31 Mar 2016, 13:11
Forum: Ask for Help (v1)
Topic: Multiple IE sessions managed within a single script
Replies: 2
Views: 908

Re: Multiple IE sessions managed within a single script

Hi TDWanders, Sounds doable to me, there was a post in the past about being logged in to multiple accounts at the same time, and one solution was to start internet explorer in private mode for each new connection. i.e. ; Use Run to start internet explorer with the '-private' flag Run, "%A_ProgramFil...
by lifeweaver
31 Mar 2016, 12:58
Forum: Ask for Help (v1)
Topic: midicontroller with knobs reacting to mouse
Replies: 4
Views: 1190

Re: midicontroller with knobs reacting to mouse

Hi Tony_hulten, How difficult do you think it would be to accomplish something like this? I think it's very possible, doing a quick search like 'autohotkey midi controller' returns several results. I don't have a autohotkey midi controller so I can't test anything but this looks promising, and here ...
by lifeweaver
31 Mar 2016, 12:43
Forum: Ask for Help (v1)
Topic: Screen Processing
Replies: 1
Views: 576

Re: Screen Processing

Hi John_Latta, I recommend breaking down your actions into the steps you would take, and then searching on them, i.e. 'autohotkey click', 'autohotkey select files'. The bundled help file, also online, is really great too. It is not clear how the scripts can recognize and then act on text input block...
by lifeweaver
31 Mar 2016, 12:27
Forum: Ask for Help (v1)
Topic: Winamp struggle.
Replies: 3
Views: 865

Re: Winamp struggle.

Hi Seiko,

Check the help article for Automating Winamp.
I also recommend doing a search on 'autohotkey winamp' to get more info, as other people have been interested in winamp.
by lifeweaver
18 Mar 2016, 15:01
Forum: Ask for Help (v1)
Topic: PostMessage - How to move two windows?
Replies: 11
Views: 3688

Re: PostMessage - How to move two windows?

Here is an interesting note on windows 7: If you have the 'Show window contents while dragging' checked wolf_II's script makes the second window follow the first real time, if you have it unchecked the second window only moves once you have let the mouse button up. System Properties -> Advanced -> P...
by lifeweaver
18 Mar 2016, 09:49
Forum: Ask for Help (v1)
Topic: transform imacro or javascript into AHK script
Replies: 1
Views: 12407

Re: transform imacro or javascript into AHK script

Hi FabNT, Here is one way: copyText() { oldClip := clipboard newClip := clipboard := Send, {ctrl down} Sleep, 10 Send, {c down} Sleep, 10 Send, {c up} Sleep, 10 Send, {ctrl up} clipWait, .01 if ErrorLevel ; If the first copy failed do it again { Send, {ctrl down} Sleep, 10 Send, {c down} Sleep, 10 S...
by lifeweaver
18 Mar 2016, 09:25
Forum: Ask for Help (v1)
Topic: Help with a secure Iframe
Replies: 2
Views: 694

Re: Help with a secure Iframe

Hi ArcticNose,

I'm sure you've done some searching but have you noticed this javascript question?
Also I recommend using your favorite browser's F12 console to test out possible solutions in Javascript as the syntax for accessing the dom is pretty similar to AutoHotkey.
by lifeweaver
18 Mar 2016, 09:13
Forum: Ask for Help (v1)
Topic: PostMessage - How to move two windows?
Replies: 11
Views: 3688

Re: PostMessage - How to move two windows?

Here is an interesting post by SKAN where he explains that the 0xA1, WM_NCLBUTTONDOWN, merely simulates the message sent when you click on a titlebar. The message allows a window to be dragged, it doesn't actually do any dragging. You might consider using ControlClick or maybe PostMessage to copy w...
by lifeweaver
18 Mar 2016, 08:41
Forum: Ask for Help (v1)
Topic: cannot install AHK Topic is solved
Replies: 3
Views: 1410

Re: cannot install AHK Topic is solved

I'm having a similar problem, however I've downloaded AutoHotkey as of v1.1.22.07 so I know I could.
It's not like I can turn off my AV as I'm at work, does anyone know if something has change about the exe since v1.1.22.07?
by lifeweaver
04 Mar 2016, 10:06
Forum: Off-topic Discussion
Topic: Anime
Replies: 48
Views: 25509

Re: Anime

nnnik wrote:Well I have watched or know most of the Anime mentioned so far. I have full list at http://myanimelist.net/animelist/nnnik
I would suggest Shinsekai Yori for you.
Just finished it -> wow, I have to say I really like the Traditional song from it.
by lifeweaver
03 Mar 2016, 19:08
Forum: Ask for Help (v1)
Topic: Search a CSV File
Replies: 10
Views: 2985

Re: Search a CSV File

You might consider reading the file all at once, with FileRead , and the running it through Loop, Parse . This will eliminate the StringSplit as you can tell the Loop, parse that the delimiter is the pipe symbol. The script works ok on lower OS but crashes on windows 7 and above. That seems odd.
by lifeweaver
16 Feb 2016, 07:44
Forum: Off-topic Discussion
Topic: Anime
Replies: 48
Views: 25509

Re: Anime

nnnik wrote:I can really recommend Monster.
Sounds interesting, I'll add it to my list!
I can recommend Dennou Coil for people who like scifi/computers.
by lifeweaver
07 Feb 2016, 07:41
Forum: Ask for Help (v1)
Topic: [solved]Who can send me a unicode qhtm.dll?
Replies: 4
Views: 1840

Re: Who can send me a unicode qhtm.dll?

Hi hughman,

Have you tried this link on CodeGuru?
by lifeweaver
07 Feb 2016, 07:36
Forum: Ask for Help (v1)
Topic: File renaming script
Replies: 2
Views: 753

Re: File renaming script

Hi SatoriKomeiji,

What does the ErrorLevel and A_LastError say after FileMove?
by lifeweaver
06 Feb 2016, 12:53
Forum: Ask for Help (v1)
Topic: Identify Vertical Font
Replies: 4
Views: 982

Re: Identify Vertical Font

Hi jballi,

Where are you trying to detect this, microsoft word?

Go to advanced search