| Author |
Message |
Forum: Scripts Topic: diNovo Mini Special Keys - get all those missing keys [v07b] |
| Michael@Oz |
|
Posted: February 20th, 2012, 1:56 pm
|
|
Replies: 22 Views: 13487
|
| 2 questions; Where can i get detailed info (step by step) on how to apply the scripts here? a. Read the Autohotkey help, here b. Install autohotkey & c. Download & run the DMSK ahk script file. d. Consider sticking it your Startup group. and will the install of any of these restore my FF - ... |
|
 |
Forum: Support Topic: How to get A_Index to reset to Zero |
| Michael@Oz |
|
Posted: December 30th, 2011, 6:03 pm
|
|
Replies: 24 Views: 423
|
| Could someone help please? The above code does this 1111122222222222.....to the infinity. NO IT DOES NOT! init := 0 if ( %init%++ < 5 ) setting init to zero then testing whether it is <5!! It will always be <5. Hence it will produce 1111111111111111111111111111111111111111111111111111111111... |
|
 |
Forum: Support Topic: How to activate a group of windows together, not separately |
| Michael@Oz |
|
Posted: December 30th, 2011, 5:42 pm
|
|
Replies: 11 Views: 303
|
| Very slow. I could actually see Windows moving the icons to/from the task bar. Have you seen #WinActivateForce? "it might prevent task bar buttons from flashing when different windows are activated quickly one after the other." My conclusion is that there's a lot more Windows overhead in ... |
|
 |
Forum: Support Topic: How to get A_Index to reset to Zero |
| Michael@Oz |
|
Posted: December 30th, 2011, 5:17 am
|
|
Replies: 24 Views: 423
|
Code: F1:: Looping:=true Loop { Loop, 3 { SendInput, 1 Sleep, 2000 } Clear := "" ; clear If (!Looping) Break } Return F2::Looping:=false |
|
 |
Forum: Support Topic: How to get A_Index to reset to Zero |
| Michael@Oz |
|
Posted: December 29th, 2011, 11:55 pm
|
|
Replies: 24 Views: 423
|
| OK, perhaps you can spell out the whole picture e.g. I press somekey script then does something until something else happens or keys pressed then... etc. I can't figure out your two loops, as written above the outer loop loops back to the inner loop after clearing, as you wanted. What is missing? Wh... |
|
 |
Forum: Support Topic: How to get A_Index to reset to Zero |
| Michael@Oz |
|
Posted: December 29th, 2011, 11:44 pm
|
|
Replies: 24 Views: 423
|
tidbit wrote: maybe he wants to send backspace to "clear" all the previous 111's. Well he needs to be a bit more precise with his needs. |
|
 |
Forum: Support Topic: How to hold shift and press enter? |
| Michael@Oz |
|
Posted: December 29th, 2011, 11:40 pm
|
|
Replies: 4 Views: 212
|
| Oops, misread you, try Code: ::!@:: Send, ; , is required when using ( ) & + means Shift (+{enter}Blah +{enter}Blah +{enter}Blah +{enter}Blah +{enter}Blah ) |
|
 |
Forum: Support Topic: How to hold shift and press enter? |
| Michael@Oz |
|
Posted: December 29th, 2011, 11:37 pm
|
|
Replies: 4 Views: 212
|
| Please use code tags Code: ::!@:: Send +{enter} ; + means Shift Send, ; , is required when using ( ) (Blah
Blah
Blah
Blah
Blah ) |
|
 |
Forum: Support Topic: How to get A_Index to reset to Zero |
| Michael@Oz |
|
Posted: December 29th, 2011, 11:32 pm
|
|
Replies: 24 Views: 423
|
Ok not understanding you.
What do you mean by 'do a clear'?
Do you want to press ^s, have it send 111, then stop, then you press ^s send 111 stop etc? If so tidbit's solution is what you want. |
|
 |
Forum: Support Topic: Sending Email Stops Script |
| Michael@Oz |
|
Posted: December 29th, 2011, 11:24 pm
|
|
Replies: 5 Views: 159
|
If it's stuck at WinWait then PowerTerm is not running or its Title does not start with 'PowerTerm Plus' (assuming you have not changed SetTitleMatchMode).
Do you need toCode: Run PowerTerm.exe ; or whatever it is called? |
|
 |
Forum: Support Topic: How to get A_Index to reset to Zero |
| Michael@Oz |
|
Posted: December 29th, 2011, 11:10 pm
|
|
Replies: 24 Views: 423
|
| ^s:: Loop ; this loop goes on forever - you need to decide how to stop it { init := 0 ; initialise for 2nd loop Loop ; this loop goes around three times { if (++%init% < 3) { SendInput, 1 Sleep, 2000 } Else { Break } } Clear := " " ; clear }... |
|
 |
Forum: Support Topic: Sending Email Stops Script |
| Michael@Oz |
|
Posted: December 28th, 2011, 11:56 pm
|
|
Replies: 5 Views: 159
|
| First, when posting code, use the CODE button before and after your code. I makes it much easier to read, e.g. :oc:leady:: Send ^+{Left}^xCatalog Request{Enter}Greetings ^v, Send, ; the ( & ) below is a Continuation - http://l.autohotkey.net/docs/Scripts.htm#continuat... |
|
 |
Forum: Support Topic: Script stop after define two hotkeys ? |
| Michael@Oz |
|
Posted: December 28th, 2011, 11:18 pm
|
|
Replies: 17 Views: 507
|
| Michael@Oz, I am sorry that you have misunderstood my post. I did not, any way, shape or form "disrespect" you. No I didn't take any offence to anything. Michael@Oz, Would you clarify "giving them the hard word" :?: Ozzie vernacular: Put the hard word on Austral and NZ informal ... |
|
 |
Forum: Support Topic: Script stop after define two hotkeys ? |
| Michael@Oz |
|
Posted: December 28th, 2011, 3:31 pm
|
|
Replies: 17 Views: 507
|
| >>I didn't understand it when I first read through that part. >>Maybe if it were re-stated in another way that may have made it clearer. You didn't understand, and you didn't come to the forum to ask for clarification. >>Since I missed it there is a pretty good chance others will also. I came to AH... |
|
 |
Forum: Support Topic: How to activate a group of windows together, not separately |
| Michael@Oz |
|
Posted: December 27th, 2011, 10:50 pm
|
|
Replies: 11 Views: 303
|
Hi, Welcome to the club.
I haven't tried this but...
Have a look atCode: WinSet ; try WinSet AlwaysOnTop, Toggle ; or WinSet Top ; and bottom ; or WinSet Transparent ; ie toggle 100% & 0%
Just a thought... |
|
 |
| Sort by: |