Search found 397 matches

by fischgeek
06 Jun 2017, 10:32
Forum: Ask for Help (v1)
Topic: SCRIPTS WERE FINE BUT NOW MOUSE CLICK HAS STOPPED WORKING?
Replies: 1
Views: 503

Re: SCRIPTS WERE FINE BUT NOW MOUSE CLICK HAS STOPPED WORKING?

Does a separate and simple mouse click script work on a different program? Does ControlClick work? For example: Run, inetcpl.cpl WinWaitActive, Internet Properties ControlClick, Button10 Another thing, some applications require elevated permissions to allow ahk to interact with them. Be sure you're ...
by fischgeek
06 Jun 2017, 10:22
Forum: Ask for Help (v1)
Topic: How to Include Files in a Program ? Topic is solved
Replies: 7
Views: 847

Re: How to Include Files in a Program ? Topic is solved

Hello! And welcome! Start by having a look at the Run command! And, for adding buttons, you can dive right into GUIs!
by fischgeek
05 Jun 2017, 23:06
Forum: Ask for Help (v1)
Topic: multiple E command
Replies: 1
Views: 426

Re: multiple E command

Hi. Check out the docs, try some stuff, post here if you get stuck and we'll help you out! Happy coding!

https://autohotkey.com/docs/Hotkeys.htm
https://autohotkey.com/docs/commands/Send.htm
by fischgeek
05 Jun 2017, 22:58
Forum: Ask for Help (v1)
Topic: difficult web scrapping Topic is solved
Replies: 7
Views: 1453

Re: difficult web scrapping Topic is solved

document.getElementsByClassName returns an array of elements found matching the class. You could put that into a loop and evaluate the matches until you have one, or quit if you don't.
by fischgeek
05 Jun 2017, 17:06
Forum: Forum Issues
Topic: Titles set to display: none;
Replies: 7
Views: 2475

Re: Titles set to display: none;

Perhaps to limit the hiding to only post titles:

Code: Select all

$('[id*=post_content] h3').each(function() {
	var t = $(this);
	if (t.hasClass('first') || t.text().substr(0, 4) == 'Re: ') {
		t.fadeOut();
	}
});
by fischgeek
05 Jun 2017, 16:55
Forum: Forum Issues
Topic: Titles set to display: none;
Replies: 7
Views: 2475

Re: Titles set to display: none;

which theme are you using Simplicity. Why is it possible to write something in topic field for later posts? It's been this way for over two years. The effect on the search results was unintended. Ah. Okay. I looked for a post on this topic, but didn't have the keywords right obviously. I'm I the on...
by fischgeek
05 Jun 2017, 16:20
Forum: Ask for Help (v1)
Topic: difficult web scrapping Topic is solved
Replies: 7
Views: 1453

Re: difficult web scrapping Topic is solved

Yeah, it can be confusing. You're basically doing the same thing as pure javascript, but just with an ahk object (wb). Have a look at how to get the elements again from w3. https://www.w3schools.com/jsref/met_document_getelementbyid.asp https://www.w3schools.com/jsref/met_document_getelementsbyclass...
by fischgeek
05 Jun 2017, 14:33
Forum: Forum Issues
Topic: Titles set to display: none;
Replies: 7
Views: 2475

Titles set to display: none;

I've noticed that when I open a topic, all the posts briefly show the title of the topic, then fade out (css/jquery animation). Upon inspection, it looks like the h3's are set to display: none; This also affects search results. Was this by design and I missed a communication about it?
by fischgeek
05 Jun 2017, 14:26
Forum: Ask for Help (v1)
Topic: difficult web scrapping Topic is solved
Replies: 7
Views: 1453

Re: difficult web scrapping Topic is solved

I find it easier to use Chrome Dev Tools to identify elements. Then go from there.
Spoiler
by fischgeek
05 Jun 2017, 14:19
Forum: Ask for Help (v1)
Topic: IE ComObj and Script Reload
Replies: 2
Views: 666

Re: IE ComObj and Script Reload

Have a look at ComObjGet and ComObjConnect.
by fischgeek
05 Jun 2017, 14:07
Forum: Ask for Help (v1)
Topic: F3 to copy when text or item is selected
Replies: 1
Views: 412

Re: F3 to copy when text or item is selected

Have a look here: Hotkeys (Tilde). Though, AHK cannot detect when a selection is highlighted, you could try to carry out the copy command and evaluate the clipboard and determine if it grabbed something or not, then carry on either direction based on that.
by fischgeek
05 Jun 2017, 14:04
Forum: Ask for Help (v1)
Topic: Is there a way to prevent pausing?
Replies: 3
Views: 532

Re: Is there a way to prevent pausing?

My advice would be to make sure the window title matches exactly, or have a look at SetTitleMatchMode. Also, you could drop the sleep in your exit routine; it's not needed.
by fischgeek
01 Jun 2017, 13:57
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1395493

Re: « What's on your mind? » Topic is solved

Pretty sure this shirt was made for me.

Image
by fischgeek
09 Feb 2017, 12:24
Forum: About This Community
Topic: New Homepage suggestions
Replies: 114
Views: 77903

Re: New Homepage suggestions

It also looks like my links are still active for the stock photos if we're still interested in that. https://autohotkey.com/boards/viewtopic.php?p=64611#p64611 The photo is already/currently in use. ;) Ha! Awesome. I didn't look before I posted :oops: -- My bookmark takes me straight to the forums.
by fischgeek
07 Feb 2017, 11:38
Forum: About This Community
Topic: New Homepage suggestions
Replies: 114
Views: 77903

Re: New Homepage suggestions

It also looks like my links are still active for the stock photos if we're still interested in that.

https://autohotkey.com/boards/viewtopic ... 611#p64611
by fischgeek
01 Jan 2017, 00:08
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1395493

Re: « What's on your mind? » Topic is solved

Curious to see what Joe comes up with for the new flair on the logo!
by fischgeek
31 Dec 2016, 23:27
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1395493

Re: « What's on your mind? » Topic is solved

Happy new year from freezing Fargo!
by fischgeek
09 Dec 2016, 15:20
Forum: Ask for Help (v1)
Topic: press button twice
Replies: 1
Views: 556

Re: press button twice

You would have to use the built in variables A_PriorHotkey along with A_TimeSincePriorHotkey.

See if you can figure it out from that. Post your code and we'll help you out if you get stuck.
by fischgeek
09 Dec 2016, 12:05
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1395493

Re: « What's on your mind? » Topic is solved

budRich, your "sharing is caring" link is broken. :s
by fischgeek
09 Dec 2016, 12:02
Forum: Off-topic Discussion
Topic: Building a house
Replies: 13
Views: 4850

Re: Building a house

You're building a house and don't have $5k? What are you building exactly? A matchstick house? Ha! I didn't see this until now. At that time, no we didn't have 5K because we hadn't sold our house yet and they wanted money up front. The sale of our home was going to (and did) leave us with PLENTY of...

Go to advanced search