View Single Post
Old 11-12-2010, 02:02 AM   #32
h1uke
Zealot
h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.h1uke can do the Funky Gibbon.
 
Posts: 121
Karma: 82565
Join Date: Aug 2010
Location: Maryland, USA
Device: dxg, k3w,k4nt,kpw
Quote:
Originally Posted by otichy View Post
Hi,

Hope this is more worthwhile - it seems on K3 the special keys like K3_KEY_AA do not work.

L = #'K3_KEY_AA'
thank you for pointing to this. The correct default name for this key is k3_aA, so
Code:
L = #'k3_aA'
works. See below for builtin definitions of other K3-specific keys

Code:
	{ K3KEY_AA, "k3_aA" },		// 	190
	{ K3KEY_SYM, "k3_Sym" }, 		//	126
	{ K3KEY_HOME, "k3_Home" }, 	//	102
	{ K3KEY_BACK, "k3_Back" }, 	//	158

	{ K3KEY_PGFWD, "k3_>" }, 	//	191
	{ K3KEY_LPGBCK, "lk3_<" }, 	//	193
	{ K3KEY_LPGFWD, "lk3_>" }, 	//	104

	{ K3KEY_VPLUS, "VPlus" }, 		//	115
	{ K3KEY_VMINUS, "VMinus" }, 	//	114

	{ K3KEY_FW_UP, "k3_FW_Up" }, 	//	103
	{ K3KEY_FW_DOWN, "k3_FW_Down" }, 	//	108
	{ K3KEY_FW_PRESS, "k3_FW_Press" } 	//	194
Note: custom key name definitions can be used any time -- just provide the
correct keydefs.ini file and restart the launchpad.

HTH,

h1uke
h1uke is offline   Reply With Quote