AutoHotkey Community

It is currently May 27th, 2012, 3:18 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 5 posts ] 
Author Message
PostPosted: May 18th, 2010, 8:39 pm 
Offline

Joined: June 16th, 2008, 10:40 pm
Posts: 6
Hi,
I have this headset:
Microsoft lifechat zx-6000
http://www.liveside.net/cfs-file.ashx/_ ... zx6000.PNG

You'll see the button in the middle is "Windows live call button"
I want to map that to mute.

Is this possible with autohotkey? I tried using keyboard media keys which has worked in the past for me on keyboards, duh, but not in this case,

Thanks for any ideas
Cheers


Report this post
Top
 Profile  
Reply with quote  
PostPosted: May 19th, 2010, 12:04 am 
Offline

Joined: August 21st, 2006, 7:07 pm
Posts: 2925
Location: The Shell
reapur wrote:
I tried using keyboard media keys which has worked in the past for me on keyboards
Explain this.
There would have to be drivers and or software interface no?

_________________
Imageparadigm.shift:=(•_•)┌П┐RTFM||^.*∞


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 19th, 2010, 12:11 am 
Offline

Joined: June 16th, 2008, 10:40 pm
Posts: 6
Ya, I had to install the MS lifechat software.
Right now when that button is pressed, it wants to start MSN messenger and if it's not there, it show a stupid dialog that you can't dismiss and have it remember that option.

I am wondering if there is a way that we can find out what signal is being sent and have AHK intercept it and do something else.

Maybe I'm just dreaming, I thought I'd ask the experts so I can stop speculating in my head :)

Cheers


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 19th, 2010, 12:46 am 
Offline

Joined: August 21st, 2006, 7:07 pm
Posts: 2925
Location: The Shell
reapur wrote:
Right now when that button is pressed, it wants to start MSN messenger and if it's not there, it show a stupid dialog that you can't dismiss and have it remember that option.

Use this to map the vk/sc codes:
Code:
#installKeybdHook

setTimer, watchButtons, 500
return

watchButtons:
  keyHistory
return

esc::exitApp ; <-- press escape to exit

Then:
Code:
SC159:: ; Replace 159 with your key's value.
MsgBox, %A_ThisHotKey% was pressed.
return

_________________
Imageparadigm.shift:=(•_•)┌П┐RTFM||^.*∞


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 19th, 2010, 1:37 am 
Offline

Joined: June 16th, 2008, 10:40 pm
Posts: 6
Thanks, I'll give this a shot.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], Google Feedfetcher, rbrtryn and 19 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