Search found 93 matches

by jigga
24 Jun 2016, 19:22
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567996

Re: FindText - Catch screen image into text and then find it Topic is solved

This is super cool! Am I missing something, or is there no way to make the capture area bigger?
by jigga
12 Apr 2016, 17:15
Forum: Off-topic Discussion
Topic: A Trello organisation for ahkscript
Replies: 15
Views: 13447

Re: A Trello organisation for ahkscript

@joelfazio1 :)
by jigga
16 Mar 2015, 17:48
Forum: Ask for Help (v1)
Topic: Error .: visible window modal
Replies: 3
Views: 1931

Re: Error .: visible window modal

Is there something else done to the control or it's parent between the controlsettexts? Can we see the code?
by jigga
16 Mar 2015, 17:34
Forum: Ask for Help (v1)
Topic: Winclip - crashes on Cliptext := WinClip.GetText()
Replies: 2
Views: 1388

Re: Winclip - crashes on Cliptext := WinClip.GetText()

Do you get an error when it crashes?
by jigga
17 Feb 2015, 18:35
Forum: Ask for Help (v1)
Topic: Menu refresh?
Replies: 4
Views: 2370

Re: Menu refresh?

by jigga
17 Feb 2015, 13:09
Forum: Ask for Help (v1)
Topic: Ie issue in IEGET
Replies: 10
Views: 3853

Re: Ie issue in IEGET

From user tmplinshi: ClearCookies() { static CmdLine := 0x0002 | 0x0100 ; CLEAR_COOKIES | CLEAR_SHOW_NO_GUI static INTERNET_OPTION_END_BROWSER_SESSION := 42 DllCall("inetcpl.cpl\ClearMyTracksByProcessW", "UInt", 0, "UInt", 0, "Str", CmdLine, "Int", 0) DllCall("wininet\InternetSetOption", "Int", 0, "...
by jigga
17 Feb 2015, 12:23
Forum: Ask for Help (v1)
Topic: Ie issue in IEGET
Replies: 10
Views: 3853

Re: Ie issue in IEGET

You might want to create each IE instead of just running it: pwb[i] := ComObjCreate("InternetExplorer.Application") Or try this method of getting an open IE: WBGet(WinTitle="ahk_class IEFrame", Svr#=1) { static msg := DllCall("RegisterWindowMessage", "str", "WM_HTML_GETOBJECT") , IID := "{0002DF05-0...
by jigga
17 Feb 2015, 12:08
Forum: Ask for Help (v1)
Topic: Ie issue in IEGET
Replies: 10
Views: 3853

Re: Ie issue in IEGET

Does this only happen with pwb4, or is it every ie object?
by jigga
09 Feb 2015, 12:50
Forum: Ask for Help (v1)
Topic: Speeding up com control of Excel
Replies: 6
Views: 3007

Re: Speeding up com control of Excel

It seems to run much faster if the document is not visible. Not sure if you need the spreadsheet open or not, but I do lots of excel stuff via ahk without the actual spreadsheet open on my desktop.
by jigga
19 Jan 2015, 12:55
Forum: Ask for Help (v1)
Topic: macro
Replies: 4
Views: 2075

Re: macro

Numpad1::
Numpad2::

etc
by jigga
13 Jan 2015, 19:22
Forum: Ask for Help (v1)
Topic: [solved] 7-zip dll in AHK
Replies: 23
Views: 10806

Re: [solved] 7-zip dll in AHK

You could always buy a beastly mac pro and run windows on it. The programmer at my work bought the stock version and runs windows in VM. It out performs my new high end gaming PC by a large margin :\ Never. I have not and will not purchase an Apple product, under any circumstance. I'm running an i7...
by jigga
13 Jan 2015, 17:18
Forum: Ask for Help (v1)
Topic: [solved] 7-zip dll in AHK
Replies: 23
Views: 10806

Re: [solved] 7-zip dll in AHK

You could always buy a beastly mac pro and run windows on it. The programmer at my work bought the stock version and runs windows in VM. It out performs my new high end gaming PC by a large margin :\
by jigga
13 Jan 2015, 17:13
Forum: Ask for Help (v1)
Topic: Different behavior between .ahk and compiled .exe???
Replies: 3
Views: 1964

Re: Different behavior between .ahk and compiled .exe???

The current version is 1.1.19.01 i think, you might want to update. Also if (x == "stuff") is case sensitive. I prefer to use if (x = "stuff") to avoid stupid mistakes on my end dealing with strings :)
by jigga
13 Jan 2015, 16:24
Forum: Ask for Help (v1)
Topic: Need Help about Script im getting Error Topic is solved
Replies: 26
Views: 7800

Re: Need Help about Script im getting Error Topic is solved

You have LButton::return in there twice. You cant have the same hotkey twice. Just remove one of them

Code: Select all

#If, disable
LButton::return
#If

space::
disable = 1
send {Lshift down}{Mbutton down}
KeyWait, space
send {Lshift up}{Mbutton up}
disable = 0
return

#If, disable
LButton::return
#If
by jigga
13 Jan 2015, 15:42
Forum: Ask for Help (v1)
Topic: Ribbon menus
Replies: 4
Views: 3466

Re: Ribbon menus

What program is it? You might want to just customize the ribbon, or possibly access it via COM
by jigga
13 Jan 2015, 12:45
Forum: Ask for Help (v1)
Topic: Help with IE DOM GetElementsByName Topic is solved
Replies: 10
Views: 7844

Re: Help with IE DOM GetElementsByName Topic is solved

Are you trying to access a web form? Try this:

Code: Select all

wb.document.forms[0].getElementsByTagName("input")[10].value = "SomeText"
by jigga
13 Jan 2015, 11:39
Forum: Ask for Help (v1)
Topic: Help with IE DOM GetElementsByName Topic is solved
Replies: 10
Views: 7844

Re: Help with IE DOM GetElementsByName Topic is solved

It looks like this line might be causing the issue:

Code: Select all

wb := ComObj(9,pwb,1)
Its in the IEReady() function. Try commenting out every call to that function and see if you get the same error.
by jigga
13 Jan 2015, 11:23
Forum: Ask for Help (v1)
Topic: Different behavior between .ahk and compiled .exe???
Replies: 3
Views: 1964

Re: Different behavior between .ahk and compiled .exe???

Does the rest of your code work when compiled? Is your AHK updated to the most recent version (including compiler)? Also += does work there i think :)

Go to advanced search