| Author |
Message |
Forum: Support Topic: How to stop a running script using a key press, eg escape |
| BigMan |
|
Posted: May 7th, 2012, 2:46 pm
|
|
Replies: 6 Views: 100
|
| Here is what I have in mine: This code is up towards the top of your script Hotkey, Pause, EarlyTerm ;;;QUICK KILL COMMAND. *HIT Pause KEY ON KEYBOARD AT ANY TIME TO KILL THIS SCRIPT I have this at the bottom EarlyTerm: ;;;STEP TO END THE HOTKEY FROM RUNNING ExitApp ;;;ENDS HOTKEY APPLICATION FROM R... |
|
 |
Forum: Support Topic: Scroll down 14 lines and delete all the text |
| BigMan |
|
Posted: May 1st, 2012, 7:43 pm
|
|
Replies: 4 Views: 70
|
| mine works fine......excel......close to you back....happy hot keying.. |
|
 |
Forum: Support Topic: Scroll down 14 lines and delete all the text |
| BigMan |
|
Posted: May 1st, 2012, 5:22 pm
|
|
Replies: 4 Views: 70
|
Code: Send ^{Home} Sleep 200 Send {Shift}+{Down 13} ;;gets lines 1 through 14 Sleep 200 Send {Shift}+{Right ??} ;;put in how far right where data is Sleep 200 Send {Del} Sleep 200 |
|
 |
Forum: Suggestions Topic: "Custom" section in "Support" |
| BigMan |
|
Posted: April 27th, 2012, 3:48 pm
|
|
Replies: 4 Views: 322
|
Gaming needs to have a "main" section, but it needs to be on the BOARD INDEX screen with the other options. Seems it's hidden and not be posted to by those needing "game" help.
Just a thought.....
if on BOARD INDEX maybe posters will use it the way intended. |
|
 |
Forum: Support Topic: Controlsend and lost focus in connection with browsers |
| BigMan |
|
Posted: April 24th, 2012, 4:54 pm
|
|
Replies: 3 Views: 66
|
|
 |
Forum: Suggestions Topic: Gaming needs to be moved to the 'Board Index' screen... |
| BigMan |
|
Posted: April 13th, 2012, 5:23 pm
|
|
Replies: 0 Views: 209
|
Gaming needs to have a "main" section, but it needs to be on the BOARD INDEX screen with the other options. Seems it's hidden and not be posted to by those needing "game" help.
Just a thought..... |
|
 |
Forum: Gaming Topic: Good job on adding this forum for gamers (just a comment) |
| BigMan |
|
Posted: April 13th, 2012, 5:01 pm
|
|
Replies: 0 Views: 96
|
Great to see a "gaming forum". I suggested this in a past post, not sure if I can take credit for this.......(just send $$$ if so)
Nice job on adding this, however it came about. I'm not a gamer, but this was for sure needed.
Nice..... |
|
 |
Forum: Support Topic: How to Send email using AHK? Blat? |
| BigMan |
|
Posted: April 13th, 2012, 4:56 pm
|
|
Replies: 10 Views: 272
|
| this is what I use at the end of some of my jobs to send me an e-mail that they have completed and give me some information: JobComplete: ;;;END RUNNING WinActivate %AddInfo% ;;;MAKES SURE TXT FILE IS OPEN WinWaitActive %AddInfo% ;;;MAKES SURE TXT FILE IS OPEN WinMove, A,, 325, 69, 395, 435 ;;;MOVES... |
|
 |
Forum: Support Topic: Can you use traytip to display LOOP progress???? |
| BigMan |
|
Posted: April 13th, 2012, 4:34 pm
|
|
Replies: 5 Views: 74
|
That does look like you can get a bunch of info and get really complex. I did appreciate seeing both ideas, for my needs, simple was the way to go.
Thanks again to both of you for the quick reply and great information.
Have a great weekend to all............... |
|
 |
Forum: Support Topic: Can you use traytip to display LOOP progress???? |
| BigMan |
|
Posted: April 13th, 2012, 4:08 pm
|
|
Replies: 5 Views: 74
|
| Thankyou Janopn......that works awesome. I know there had to be an easy way of doing this, and for sure it will help me see the progress of any jobs I have created and will create in the future. It always bugged me to run a job with 500 or 1000 loops and not be able to see it's progress. Thanks agai... |
|
 |
Forum: Support Topic: Can you use traytip to display LOOP progress???? |
| BigMan |
|
Posted: April 13th, 2012, 3:48 pm
|
|
Replies: 5 Views: 74
|
| How do you write a "traytip" to track the progress of your "loop"? I have seen some hint of this on other posts, but cannot figure out how to code this into my script. here is a snipit of my code: #NoEnv ;;;RECOMMENDED FOR PERFORMANCE AND COMPATIBILITY WITH FUTURE AutoHotkey RELE... |
|
 |
Forum: Issues Topic: [color] tags in code? |
| BigMan |
|
Posted: April 9th, 2012, 8:48 pm
|
|
Replies: 10 Views: 483
|
| The code was displayed much better on the old forum. Much easier to read when "comments" are in a different color than the actual code statements. I also agree that the 'expand/collapse' was much better. I don't see that either.... **I have loaded AHK and AHK_L.............and use them....... |
|
 |
Forum: Offtopic Topic: The Official Goodbye (or AFA) Thread. |
| BigMan |
|
Posted: April 9th, 2012, 8:23 pm
|
|
Replies: 46 Views: 2647
|
| WOW what a day....I have only been doing this since around November of 2011, just learning bits and pieces, trying to shake off the newbyism, and move forward with learning.....now "THIS????" Just got done completing some code that uses AHK_L and learning to use it in for some other script... |
|
 |
Forum: Support Topic: Tell the ROW starting point |
| BigMan |
|
Posted: April 4th, 2012, 3:35 pm
|
|
Replies: 8 Views: 237
|
| WOW....looks like great stuff, but newbie here ain't gettin it....I don't have a clue as to where to begin to put all that into the example code I posted. Guess I was hoping for a simple and much easier solution. Reason I was looking into this: for a large spreadsheet, there were somedays I only had... |
|
 |
Forum: Support Topic: Tell the ROW starting point |
| BigMan |
|
Posted: April 4th, 2012, 2:35 pm
|
|
Replies: 8 Views: 237
|
| I tried this: #E:: InputBox, Rows,Rows to Process,Key the number of ROWS to Process `n`n Click OK or hit ENTER if ErrorLevel ;;;CHECKS IF NOTHING WAS ENTERED ExitApp ;;;ENDS HOTKEY APP FROM RUNNING, ITS REMOVED FROM TOOL TRAY else ;;;IF CELL KEYED, IT WILL GO TO NEXT PART TO CONTINUE FROM CELL KEYED... |
|
 |
| Sort by: |