AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

nDroid (formerly 320MPH) Ultra Fast Anything-Launcher
Goto page Previous  1, 2, 3 ... 14, 15, 16, 17, 18, 19  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
jar



Joined: 29 Apr 2007
Posts: 11

PostPosted: Tue Jan 22, 2008 9:15 pm    Post subject: how to change the hotkey Reply with quote

Hello,

I like 320MPH very much but I dislike the CTRL-ALT-Z hotkey. Changing the last Letter is not enough. I had a utility which uses the ALT-X key combination and I would like to have 320mph to use that specific combination. Any way to realize that ?

Greetings,
Jroeterd
Back to top
View user's profile Send private message
rogal



Joined: 23 Dec 2007
Posts: 51
Location: Austin

PostPosted: Wed Jan 23, 2008 10:42 pm    Post subject: Re: how to change the hotkey Reply with quote

jar wrote:
I like 320MPH very much but I dislike the CTRL-ALT-Z hotkey. Changing the last Letter is not enough. I had a utility which uses the ALT-X key combination and I would like to have 320mph to use that specific combination. Any way to realize that ?

You can do it with the following code:
Code:
; Show [ 320MPH ]
!x::
   if (h_320MPH=1) {
      WinHide [ 320MPH ]
      h_320MPH=0
   }
   else {
      WinShow [ 320MPH ]
      WinMove, [ 320MPH ], , 100,100
      WinActivate [ 320MPH ]
      h_320MPH=1
   }
   return
return

Hope it is helpful. Smile

For the very first time after the execution of this script, the hotkey it will do nothing because h_320MPH is not initialized, but once you press it twice, it will work fine thereafter.
Back to top
View user's profile Send private message
Andreone



Joined: 20 Jul 2007
Posts: 257
Location: Paris, France

PostPosted: Wed Jan 23, 2008 11:22 pm    Post subject: Reply with quote

Code:
!x::Send ^!z
Waiting for the next release where any hotkey will be allowed, this simple line does the job.
Back to top
View user's profile Send private message
jar



Joined: 29 Apr 2007
Posts: 11

PostPosted: Thu Jan 24, 2008 7:18 am    Post subject: Reply with quote

Andreone wrote:
Code:
!x::Send ^!z
Waiting for the next release where any hotkey will be allowed, this simple line does the job.


Thanks, works like a charm.

Jar
Back to top
View user's profile Send private message
rogal



Joined: 23 Dec 2007
Posts: 51
Location: Austin

PostPosted: Fri Jan 25, 2008 8:27 pm    Post subject: Reply with quote

Andreone wrote:
Code:
!x::Send ^!z
Waiting for the next release where any hotkey will be allowed, this simple line does the job.

However this does not toggle(hide) the 320mph Gui, or does it?

I just tried and it did not .. of course if you click on something then the Gui goes away automatically, but sometimes I want it to hide without click on anything. Smile
Back to top
View user's profile Send private message
Andreone



Joined: 20 Jul 2007
Posts: 257
Location: Paris, France

PostPosted: Fri Jan 25, 2008 8:38 pm    Post subject: Reply with quote

rogal wrote:
Andreone wrote:
Code:
!x::Send ^!z
Waiting for the next release where any hotkey will be allowed, this simple line does the job.

However this does not toggle(hide) the 320mph Gui, or does it?

I just tried and it did not .. of course if you click on something then the Gui goes away automatically, but sometimes I want it to hide without click on anything. Smile
Yes it does. You must let the default hotkey in 320mph (^!z)
Back to top
View user's profile Send private message
rogal



Joined: 23 Dec 2007
Posts: 51
Location: Austin

PostPosted: Fri Jan 25, 2008 8:44 pm    Post subject: Reply with quote

Andreone wrote:
Yes it does. You must let the default hotkey in 320mph (^!z)

Yes worked like a charm! After I changed the hotkey to the default one the hiding started working. Thanks. I don't know the reason why it did not work before though. Shocked
Back to top
View user's profile Send private message
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Sun Jan 27, 2008 1:42 pm    Post subject: Reply with quote

The new version with much faster scanning, truckload of plugins and new features is finally launched!!

320MPH comes with a new name now:
nDroid
get v2.0.1 at www.codenite.com
post comments, meet other users and request features at www.codenite.com/forum
_________________
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 3652
Location: Belgrade

PostPosted: Sun Jan 27, 2008 1:43 pm    Post subject: Reply with quote

Hej Rajat.

Gratz on nDroid. Smile


Last edited by majkinetor on Sun Jan 27, 2008 4:27 pm; edited 1 time in total
Back to top
View user's profile Send private message MSN Messenger
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Sun Jan 27, 2008 1:45 pm    Post subject: Reply with quote

Thanks mate! Smile
_________________
Back to top
View user's profile Send private message
Micha



Joined: 15 Nov 2005
Posts: 440
Location: Germany

PostPosted: Sun Jan 27, 2008 3:10 pm    Post subject: Suberb Reply with quote

Hi Rajat,
I'm testing and installing dozend of new programms a week to test if it's suitable for me.
I had also tested a lot of programm launcher and indexing tools.
Your tool is my number one. I'm usíng it since I got a member of the AHK-forum. You have heavily improved the tool and it's miles greater than before.
Keep up with your excellent work.
Ciao
Micha
Back to top
View user's profile Send private message
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Sun Jan 27, 2008 3:15 pm    Post subject: Re: Suberb Reply with quote

Micha wrote:
I'm testing and installing dozend of new programms a week to test if it's suitable for me.

I'm kind of like the same :)

Micha wrote:

I had also tested a lot of programm launcher and indexing tools.

I did that too sometime back... thought maybe I'd find something that'd save me all the hassle of making something myself..

Micha wrote:
Your tool is my number one. I'm usíng it since I got a member of the AHK-forum. You have heavily improved the tool and it's miles greater than before.

Smile
_________________
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 3652
Location: Belgrade

PostPosted: Sun Jan 27, 2008 3:25 pm    Post subject: Reply with quote

Rajat, did you hear about

http://en.wikipedia.org/wiki/Quicksilver_(software)


Last edited by majkinetor on Sun Jan 27, 2008 4:27 pm; edited 1 time in total
Back to top
View user's profile Send private message MSN Messenger
Rajat



Joined: 28 Mar 2004
Posts: 1718

PostPosted: Sun Jan 27, 2008 3:28 pm    Post subject: Reply with quote

yes i did... lot of ppl keep mentioning it to me. but i never got a chance to actually try it out, only seen its screenshots or video demos etc.
_________________
Back to top
View user's profile Send private message
rogal



Joined: 23 Dec 2007
Posts: 51
Location: Austin

PostPosted: Sun Jan 27, 2008 4:38 pm    Post subject: Reply with quote

Rajat, congratulations and I thank you for your effort.

I'm downloading the new version now. Smile
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page Previous  1, 2, 3 ... 14, 15, 16, 17, 18, 19  Next
Page 15 of 19

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group