| Author |
Message |
Topic: [Game] Guess It |
d-man
Replies: 7
Views: 741
|
Forum: Scripts & Functions Posted: Tue Oct 27, 2009 6:01 pm Subject: [Game] Guess It |
| ok. .. edited out .. and then i'll be impressed. |
Topic: help with a script: check website for keyword |
d-man
Replies: 13
Views: 493
|
Forum: Ask for Help Posted: Tue Oct 27, 2009 6:07 am Subject: help with a script: check website for keyword |
hey, d-man, you should be appreciative to those who take the time to help you. (for reference)
anyway, if you add
webpage := RegExReplace(webpage,"<.+?>","" ... |
Topic: help with a script: check website for keyword |
d-man
Replies: 13
Views: 493
|
Forum: Ask for Help Posted: Tue Oct 27, 2009 3:07 am Subject: help with a script: check website for keyword |
I wish people would just post direct help and not all this other stupid stuff.
Anyway, this script seems to be working (for reference):
#Persistent
inputbox, url, , Check what website?, ,200, ... |
Topic: help with a script: check website for keyword |
d-man
Replies: 13
Views: 493
|
Forum: Ask for Help Posted: Tue Oct 27, 2009 2:20 am Subject: help with a script: check website for keyword |
| So I download the URL into a file... how do I put that file into one string to use InString? Thanks. |
Topic: Please check |
d-man
Replies: 7
Views: 740
|
Forum: Ask for Help Posted: Mon Oct 26, 2009 10:11 pm Subject: Please check |
| this? http://roidripper.co.cc/ |
Topic: help with a script: check website for keyword |
d-man
Replies: 13
Views: 493
|
Forum: Ask for Help Posted: Mon Oct 26, 2009 6:16 pm Subject: help with a script: check website for keyword |
| I want to check a specific URL and check and see if that URL contains a specific keyword, or lacks a specific keyword. |
Topic: help with a script: check website for keyword |
d-man
Replies: 13
Views: 493
|
Forum: Ask for Help Posted: Mon Oct 26, 2009 1:07 am Subject: help with a script: check website for keyword |
| Can someone help me with a skeleton script for checking a web page for a certain keyword or lack thereof, every so many minutes? Input minutes, keyword, and negative or positive search. Thanks in adva ... |
Topic: Any way to shorten the notification email? |
d-man
Replies: 6
Views: 464
|
Forum: Wish List Posted: Tue Jun 30, 2009 4:58 pm Subject: Any way to shorten the notification email? |
| probably not i would imagine, but you could write a script from your PC that looks for those email and shortens them... |
Topic: Experts... mark gmail messages as read — possible? |
d-man
Replies: 1
Views: 1201
|
Forum: Ask for Help Posted: Fri Jun 19, 2009 10:45 pm Subject: Experts... mark gmail messages as read — possible? |
| So the question is, I guess, can you log in and perform functions without a browser... any one have a tip for that... |
Topic: "ll" is runing my life. |
d-man
Replies: 6
Views: 326
|
Forum: Ask for Help Posted: Fri Jun 19, 2009 10:44 pm Subject: "ll" is runing my life. |
| I think your problem would be solved by using a different hotkey. Try using Ctrl or Alt instead of Win key. |
Topic: manipulate .txt files |
d-man
Replies: 5
Views: 424
|
Forum: Ask for Help Posted: Fri Jun 19, 2009 12:31 am Subject: manipulate .txt files |
what you need is "A_LoopReadLine" so make it:
tempContents := A_LoopReadLine |
Topic: Experts... mark gmail messages as read — possible? |
d-man
Replies: 1
Views: 1201
|
Forum: Ask for Help Posted: Thu Jun 18, 2009 6:59 pm Subject: Experts... mark gmail messages as read — possible? |
| Wondering if it is possible to mark all my gmail unread messages as read without opening a window. I would think not, but throw that out there for the experts. Thanks for any help. |
Topic: hold 1 key = holding multiple keys |
d-man
Replies: 4
Views: 446
|
Forum: Ask for Help Posted: Thu Jun 11, 2009 9:31 am Subject: hold 1 key = holding multiple keys |
| works for me... you could try increasing the sleep time |
Topic: hold 1 key = holding multiple keys |
d-man
Replies: 4
Views: 446
|
Forum: Ask for Help Posted: Wed Jun 10, 2009 7:47 pm Subject: hold 1 key = holding multiple keys |
Maybe something like this could work for you:
right::
loop
{
send, {right}s
sleep 10
if (stop=1)
{
stop=0
break
}
}
return
right up: ... |
Topic: mapping lctrl for double-tap and while held down |
d-man
Replies: 3
Views: 547
|
Forum: Ask for Help Posted: Wed Jun 10, 2009 5:34 pm Subject: mapping lctrl for double-tap and while held down |
| Why not just send a Control Up? Does that not work? |
| |