Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Switching FN Key with CTRL?


  • Please log in to reply
8 replies to this topic
benowar
  • Members
  • 4 posts
  • Last active: Apr 07 2007 03:21 PM
  • Joined: 01 Apr 2007
Hi,

I just bought a Thinkpad T60 that comes with a FN-Key located where usual keyboards put the CTRL key. Now I wondered if anybody has been lucky to switch FN with CTRL using AutoHotkey?

Thanks in advance!
Ben

PS: I know <!-- m -->http://www.autohotke... ... e3d7c562f2<!-- m --> but it did not help me at all :(

BoBo
  • Guests
  • Last active:
  • Joined: --
vkFFsc163::Send, n
That works to send the character 'n'. But I wasn't successfull to send CTRL via the FN-key in combination with eg. C/V/X (copy/cut/paste). :?

benowar
  • Members
  • 4 posts
  • Last active: Apr 07 2007 03:21 PM
  • Joined: 01 Apr 2007

vkFFsc163::Send, n
That works to send the character 'n'. But I wasn't successfull to send CTRL via the FN key in combination with eg. C/V/X (copy/cut/paste). :?


Yep I noticed. I think its somewhat harder to simulate a real modifier key that is used in combination with another key. Is AutoHotkey even able to do this?

BoBo
  • Guests
  • Last active:
  • Joined: --

#HotkeyModifierTimeout
--------------------------------------------------------------------------------
Affects the behavior of hotkey modifiers: CTRL, ALT, WIN, and SHIFT.

#HotkeyModifierTimeout Milliseconds

Check the help. Might be of interest. Good luck. 8)

benowar
  • Members
  • 4 posts
  • Last active: Apr 07 2007 03:21 PM
  • Joined: 01 Apr 2007

#HotkeyModifierTimeout
--------------------------------------------------------------------------------
Affects the behavior of hotkey modifiers: CTRL, ALT, WIN, and SHIFT.

#HotkeyModifierTimeout Milliseconds

Check the help. Might be of interest. Good luck. 8)


Hm, I tried but doesnt seem to make much of a difference:

#HotkeyModifierTimeout 100

vkFFsc163::Send, {LCtrl}

mtwomey
  • Members
  • 7 posts
  • Last active: Apr 04 2007 04:21 AM
  • Joined: 22 Mar 2007
This seems to be specific to the FN key or keys like it. This works fine for a 'regular' key:

SendMode Input
z::Send {Ctrl Down}
z up::Send {Ctrl Up}

Successfully maps the z key to ctrl, but with vkFFsc163 it doesn't work the same...

benowar
  • Members
  • 4 posts
  • Last active: Apr 07 2007 03:21 PM
  • Joined: 01 Apr 2007

This seems to be specific to the FN key or keys like it. This works fine for a 'regular' key:

SendMode Input
z::Send {Ctrl Down}
z up::Send {Ctrl Up}

Successfully maps the z key to ctrl, but with vkFFsc163 it doesn't work the same...


Yep, same here. Works for the z-key, but not Fn. How annoying :(

mikko
  • Members
  • 1 posts
  • Last active: Apr 18 2007 03:16 PM
  • Joined: 18 Apr 2007
Any news on the topic? I tried to switch FN and Left Ctrl on a lenovo Z61m, but could not get it to work. Does anyone know if you can buy replacement keyboards for these things with the right order of the keys?

mikko

bakkulf
  • Members
  • 3 posts
  • Last active: Aug 06 2007 02:16 PM
  • Joined: 09 Jul 2007
Just on a related note; you might find IBM's tool "Keyboard Customizer" useful for getting a WinKey and Application Key (sacrificing e.g. AltGr and Right Ctrl). However, it does not help you remap Fn :(

I don't know if IBM/Lenovo has managed to put a Win-key on the newer X-series, but at least on my fossil X31, they weren't there. The Keyboard Customizer helped me for a long time, but had some interference with Autohotkey. See more in my post here;

http://www.autohotke...-15.html#133752