IN fire fox, the hot key for search text is '. How do I turn off this annoying little feature. Sometimes when I am on web sites and typing in boxes, it won't let me type ' without the search bar coming up at the bottom of the screen, and subsequently, all my following text being submitted to the search box.
Originally posted by jimslyp69Don't you see a little "X" next to "Find:" at the bottom of the screen? That gets rid of it for me.
IN fire fox, the hot key for search text is '. How do I turn off this annoying little feature. Sometimes when I am on web sites and typing in boxes, it won't let me type ' without the search bar coming up at the bottom of the screen, and subsequently, all my following text being submitted to the search box.
Originally posted by rbmorrisI do yes. It works for me too! But as soon as I press ' again it reappears. I want to be able to use the apostrophe but this hot key won't let me. Is there any way of turning hot keys off in Firefox?
Don't you see a little "X" next to "Find:" at the bottom of the screen? That gets rid of it for me.
Edit: Your rubber mask and lycra suit is making me all awkward. Wuff.
Originally posted by Dr StrangeloveHow to add an installer module to the Windows installer
http://nic-nac-project.de/~kaosmos/index-en.html#searchkeys
edit: oops beaten to it. 🙁
From MDC
There is currently no text in this page, you can search for this page title in other pages or edit this page.
"XPI"
It's never ending it is! 🙁
Originally posted by jimslyp69~ Go to the link me and Dr S. posted
How to add an installer module to the Windows installer
From MDC
There is currently no text in this page, you can search for this page title in other pages or edit this page.
"XPI"
It's never ending it is! 🙁
~ Right click on the "for Firefox 2.0" option and select "Save Link As"
~ Save the file somewhere easy to find (eg: on your desktop)
~ Launch Firefox, go File > Open File (Or just Ctrl + O)
~ Find the XPI file you downloaded and open it
~ Install extension
No more Quick Find
Alternative :
First, go to www.editplus.com and download the trial of EditPlus & install....this is a developers version of Notepad.
I would also encourage you to get WinRar.
Close Firefox.
Go to c:\Program Files\Mozilla Firefox\chrome\
Find the cabinet file called toolkit.jar and open it (with WinRar).
Drill down into Content\Global, and find the file findBar.js.
Open that file with EditPlus, and change the lines:
(You might need to pull the file from the .jar to your desktop, edit it there, then drop it back into the .jar.
const CHAR_CODE_SLASH = “/”.charCodeAt(0);
const CHAR_CODE_APOSTROPHE = “‘”.charCodeAt(0);
to :
const CHAR_CODE_SLASH = “”.charCodeAt(0);
const CHAR_CODE_APOSTROPHE = “”.charCodeAt(0);
Or you could change the hotkeys to something you want, instead of them being blank as I've shown here.
Hope it helps