View Single Post
Old 05-20-2012, 12:57 AM   #425
dave2008
Addict
dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.dave2008 can program the VCR without an owner's manual.
 
Posts: 251
Karma: 183457
Join Date: Jan 2012
Device: k3G, KDXG, AuraHD
Quote:
Originally Posted by aliabbasjp View Post
THANKS,what if i want a very hard combination of keys to go back to kindle os, say shift DEL SYM?
The new UI framework introduced by hawhill can easily support arbitrary key combinations. But current UI framework only supports shift and alt combo (you can still implement arbitrary key combinations, but the code will look very ugly). So if you want to use shift+home to exit kpv, you can try change the two lines I mentioned to:

Code:
elseif ev.code == KEY_BACK or ev.code == KEY_HOME then
	if Keys.shiftmode == true then
		return nil
	end
end
Or you can wait for the integration of new UI framework.
dave2008 is offline   Reply With Quote