AutoHotkey Community

It is currently May 25th, 2012, 11:00 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 356 posts ]  Go to page Previous  1 ... 12, 13, 14, 15, 16, 17, 18 ... 24  Next
Author Message
 Post subject: how to change the hotkey
PostPosted: January 22nd, 2008, 10:15 pm 
Offline

Joined: April 29th, 2007, 12:20 pm
Posts: 15
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


Report this post
Top
 Profile  
Reply with quote  
PostPosted: January 23rd, 2008, 11:42 pm 
Offline

Joined: December 23rd, 2007, 7:47 pm
Posts: 62
Location: Austin
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. :)

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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 24th, 2008, 12:22 am 
Offline

Joined: July 20th, 2007, 10:23 am
Posts: 257
Location: Paris, France
Code:
!x::Send ^!z
Waiting for the next release where any hotkey will be allowed, this simple line does the job.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 24th, 2008, 8:18 am 
Offline

Joined: April 29th, 2007, 12:20 pm
Posts: 15
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 25th, 2008, 9:27 pm 
Offline

Joined: December 23rd, 2007, 7:47 pm
Posts: 62
Location: Austin
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. :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 25th, 2008, 9:38 pm 
Offline

Joined: July 20th, 2007, 10:23 am
Posts: 257
Location: Paris, France
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. :)
Yes it does. You must let the default hotkey in 320mph (^!z)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 25th, 2008, 9:44 pm 
Offline

Joined: December 23rd, 2007, 7:47 pm
Posts: 62
Location: Austin
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. :shock:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2008, 2:42 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
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

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2008, 2:43 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Hej Rajat.

Gratz on nDroid. :)


Last edited by majkinetor on January 27th, 2008, 5:27 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2008, 2:45 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
Thanks mate! :)

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Suberb
PostPosted: January 27th, 2008, 4:10 pm 
Offline

Joined: November 15th, 2005, 11:15 am
Posts: 537
Location: Germany
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: Suberb
PostPosted: January 27th, 2008, 4:15 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
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.

:)

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2008, 4:25 pm 
Offline

Joined: May 24th, 2006, 2:49 pm
Posts: 4511
Location: Belgrade
Rajat, did you hear about

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


Last edited by majkinetor on January 27th, 2008, 5:27 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2008, 4:28 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
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.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2008, 5:38 pm 
Offline

Joined: December 23rd, 2007, 7:47 pm
Posts: 62
Location: Austin
Rajat, congratulations and I thank you for your effort.

I'm downloading the new version now. :)


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 356 posts ]  Go to page Previous  1 ... 12, 13, 14, 15, 16, 17, 18 ... 24  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 7 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group