| Author |
Message |
Topic: Can I silently get a pages URL? |
theMightyjD
Replies: 9
Views: 310
|
Forum: Ask for Help Posted: Thu Jul 24, 2008 2:55 pm Subject: Can I silently get a pages URL? |
tank -
I did, thanks. It looks a bit over my head.
It sounds like it will look at all IE tabs, and close only those not containing 'company.com'?
Does it address the possibility of them having a ... |
Topic: Can I silently get a pages URL? |
theMightyjD
Replies: 9
Views: 310
|
Forum: Ask for Help Posted: Wed Jul 23, 2008 9:42 pm Subject: Can I silently get a pages URL? |
Internet Explorer doesn't erase the title of the window but rather the text. WinGetText includes text from the address bar.
However, thanks for leading me to ControlGetText. This will be very hel ... |
Topic: Can I silently get a pages URL? |
theMightyjD
Replies: 9
Views: 310
|
Forum: Ask for Help Posted: Wed Jul 23, 2008 7:09 pm Subject: Can I silently get a pages URL? |
Thanks for the help!
I still have two issues:
(1) If the user is at http://www.company.com, and then erases the URL from the address bar, the page gets killed as the page text no longer contains ' ... |
Topic: Can I silently get a pages URL? |
theMightyjD
Replies: 9
Views: 310
|
Forum: Ask for Help Posted: Wed Jul 23, 2008 3:36 pm Subject: Can I silently get a pages URL? |
I'm trying to create a script that closes a browser window, unless the page is part of the "company.com" website.
What I have so far works okay, but I'm using WinGetText to determine the ... |
Topic: Can't figure out TransColor |
theMightyjD
Replies: 4
Views: 302
|
Forum: Ask for Help Posted: Fri Jan 26, 2007 2:53 pm Subject: Can't figure out TransColor |
Thank you again for your reply.
How exactly do I add the new function to my library?
- JD
[EDIT] Well now it appears it won't work if I remove the +alwaysontop. Why is that? |
Topic: Can't figure out TransColor |
theMightyjD
Replies: 4
Views: 302
|
Forum: Ask for Help Posted: Fri Jan 26, 2007 2:27 am Subject: Can't figure out TransColor |
thanks for the reply.
anyway to make it work w/ the
;Gui -Caption +Owner
uncommented?
Essentially I want a floating edit, nothing else, and perhaps even have the edit be translucent. |
Topic: Can't figure out TransColor |
theMightyjD
Replies: 4
Views: 302
|
Forum: Ask for Help Posted: Wed Jan 24, 2007 10:56 pm Subject: Can't figure out TransColor |
My transparency won't work. What'm I doin' wrong?
; Partial code
#SingleInstance force ; irrelevant to TransColor, yes?
CustomColor = AAEE99
;Gui -Caption +Owner
Gui, Color, %CustomColor%
G ... |
Topic: Retrieving IP Address [HIDDEN] |
theMightyjD
Replies: 9
Views: 592
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 2:20 am Subject: Retrieving IP Address [HIDDEN] |
Does this help?
http://www.autohotkey.com/docs/Variables.htm#IPAddress |
Topic: Help w/ BPM script |
theMightyjD
Replies: 3
Views: 243
|
Forum: Ask for Help Posted: Tue Jan 23, 2007 2:03 am Subject: Help w/ BPM script |
Thanks for your post. I tweaked mine as follows. Very similar to yours.
count = 0
Gui, Font, s18
Gui, Add, Text, x25 vBPM, 000.0
Gui, Show, w100, BPM
Return
b::
count += 1
if c ... |
Topic: Finding "N" occurences of character in a string |
theMightyjD
Replies: 9
Views: 275
|
Forum: Ask for Help Posted: Sat Jan 20, 2007 6:36 pm Subject: Finding "N" occurences of character in a string |
Here's my version:
InputBox, string, , enter your string
InputBox, character, , enter character to count
occurences = 0
Loop, parse, string
{
if A_LoopField = %character%
occurence ... |
Topic: Help w/ BPM script |
theMightyjD
Replies: 3
Views: 243
|
Forum: Ask for Help Posted: Sat Jan 20, 2007 5:35 pm Subject: Help w/ BPM script |
I wrote the following ahk to use as a tap-BPM analyzer. Tap the 'b' key in beat with the music and the gui displays the number of beats per minute.
Two things:
I couldn't get SetFormat to forma ... |
Topic: IntelliSense III |
theMightyjD
Replies: 72
Views: 48675
|
Forum: Scripts & Functions Posted: Thu Sep 14, 2006 4:12 pm Subject: Re: hide tooltip on changing windows during intellisense |
Hi Rajat!
I just tried your script and like the functionality very much - especially that this intellisense-feature works independently from the editor in use.
There is only one issue I noticed: ... |
Topic: Notepad ++ code support |
theMightyjD
Replies: 17
Views: 1886
|
Forum: Bug Reports Posted: Thu Sep 14, 2006 3:55 pm Subject: Notepad ++ code support |
With the following code, only the first variable appears orange:
FileAppend, %A_Now%|%A_UserName%|%myVar1%|%myVar2%`n, out.txt
Notepad++ v3.6
AHK v10.0.44.12 |
Topic: BF2: Prone Spam and/or Dolphin Dive |
theMightyjD
Replies: 11
Views: 794
|
Forum: Ask for Help Posted: Thu Sep 14, 2006 1:53 am Subject: BF2: Prone Spam and/or Dolphin Dive |
| edit: nevermind |
Topic: Running in Stealth Mode |
theMightyjD
Replies: 3
Views: 474
|
Forum: Ask for Help Posted: Thu Aug 31, 2006 6:11 pm Subject: Running in Stealth Mode |
Add the following line somewhere in the .ahk file.
#NoTrayIcon
http://www.autohotkey.com/docs/commands/_NoTrayIcon.htm
Hope this helps - JD |
| |