Announcements :  K-Meleon Web Browser Forum
K-meleon announcements. 

Pages: Previous1234Next
Current Page: 3 of 4
Results 61 - 90 of 103
17 years ago
rmn
I'd be surprised if Windows (at least XP) doesn't have anything to help with correct Unicode sorting. Just open a bug report.
Forum: Bugs
17 years ago
rmn
QuotePeabody I do not understand why, when opening a new layer in the background, K-M does not shift position in the task bar but shifts when opening the new page in the active foreground layer. It does that every time you switch layers. That's because K-Meleon hides the old window and shows the new one (the one you switched to). You're not seeing a different tab; you're seeing
Forum: Bugs
17 years ago
rmn
Is it possible for a "normal" (using standard Windows toolkit) application to have popup menu for menu items?
Forum: General
17 years ago
rmn
All the things you mention are technically feasible, but are a bit complicated for me. To anyone interested in helping: feel free to take this.
Forum: Improvement requests
17 years ago
rmn
$JSdoit = "(function () { var es = getElementsByTagName('input'); var len = es.length; for (var i = 0; i < len; i++) { var e = es; if (e.type == 'text') { e.focus(); e.select(); break } } })()"; &hndlDoc;
Forum: General
17 years ago
rmn
QuotePeabodyis there a way to prohibit this shifting behavior? There's really no way around that one. You can, of course, use the experimental build that uses real tabs; search the forum for "CCF".
Forum: Bugs
17 years ago
rmn
By using the forum's search functionality?
Forum: Development
17 years ago
rmn
David, I believe guenter wants to know where the Flash object that's not working is located in. I don't have Flash installed, but I can see one Flash object in the main page; is it that one? If it's in a member-only page, that would be difficult to test.
Forum: General
17 years ago
rmn
Okay, I've just changed Disable Style to use the recommended way to run JS from macros. Could you check if it works correctly?
Forum: Improvement requests
17 years ago
rmn
Eh, how the heck did I get this to run?! There should be a semicolon at the end of the $JSdoit... line, maybe I deleted it by mistake.
Forum: General
17 years ago
rmn
Ah, OK, I thought you already know your way around K-Meleon's macros. So first you need to add the code to some new macro, let's say "RemoveTitle". RemoveTitle { ... ## those two lines ## } For a normal macro (like the input-focusing macro from your other thread) you'd want to refer to this from either accel.cfg, menus.cfg, or toolbars.cfg so you can run it u
Forum: General
17 years ago
rmn
Oh well, just use the one that works. You'll only hit the bug if you turn on JS, go to a page that defines variables with the same name, and then run this macro.
Forum: General
17 years ago
rmn
Edit: Never mind, ndebord beat me to the Post button.
Forum: Development
17 years ago
rmn
This should do it. $JSdoit = "(function () { function delTitle(n) { try { n.removeAttribute('title') } catch (e) { } var ns = n.childNodes; var len = ns.length; for (var i = 0; i < len; i++) delTitle(ns) } delTitle(document) })()" &hndlDoc; Add the code to a new macro, then call it from the OnLoad event macro. You can also add it directly to OnLoad, but that&#
Forum: General
17 years ago
rmn
Strange, it works for me. The second to last code has the potential to break websites' JS code in somewhat unpredictable ways so I suggest you try the last one again.
Forum: General
17 years ago
rmn
QuotekkoThe macro development guide, Dorian mentioned in the initial post, is now online. Start at the MacroLibrary Oh darn, this reminds me to finish that ReferenceManual update I started some time ago.
Forum: General
17 years ago
rmn
Oops, the previous code has a bug (it modifies several global variables). Please use this one instead. $JSdoit = "(function () { var es = getElementsByTagName('input'); var len = es.length; for (var i = 0; i < len; i++) { var e = es; if (e.type == 'text') { e.focus(); break } } })()" &hndlDoc;
Forum: General
17 years ago
rmn
I wondered how a pref named "toolbar_tips" can affect the content area, but apparently so did gerv. (I love his response: "Wow, that sucks.") Unfortunately this does not mean that the bug is fixed in K-Meleon; there is still no way to disable tooltips, in the toolbar or in the content area.
Forum: Bugs
17 years ago
rmn
Okay, try this. $JSdoit = "var es = getElementsByTagName('input'); var len = es.length; for (var i = 0; i < len; i++) { var e = es; if (e.type == 'text') { e.focus(); break } }"; &hndlDoc;
Forum: General
17 years ago
rmn
Peabody, You may want to search Mozilla documentation or ask in a Mozilla mailing list whether there is a pref that can do this. Otherwise I can write a little JS code than can be injected to remove all the title attributes.
Forum: General
17 years ago
rmn
Hi Carson, First of all, I'm sorry if I offended you. I assumed you weren't familiar with the "OT" tagging and thought it was the reason you didn't mark it such. About the off-topicness, I still think this is off topic, but I see that you disagree. Oh well, I suppose our thresholds are different. I won't push the issue further.
Forum: General
17 years ago
rmn
There's been a previous thread about this. Search the forum for "minimo" (or is it "minimoz"?).
Forum: General
17 years ago
rmn
Could you try the crash report plugin?
Forum: Bugs
17 years ago
rmn
Do you know how to define and use a macro? The following code should work. open("javascript: (function() { var es = document.getElementsByTagName('input'); var len = es.length; for (var i = 0; i < len; i++) { var e = es; if (e.type == 'text') { e.focus(); break } } })()"); If you're curious, here's the relevant JavaScript code: var es = doc
Forum: General
17 years ago
rmn
Well, it contains the backup of your old config files. If you've never modified any of the *.cfg files, you don't have to worry about it.
Forum: General
17 years ago
rmn
Hi Carson, Could you please mark off-topic threads with "OT" or something similar? It's the usual practice in Web forums and mailing lists.
Forum: General
17 years ago
rmn
1 & 3 are not configurable. Quote 4. ... I never experienced this with Firefox, Opera, or Konqueror. ... Eh? Then there's something wrong with your Firefox; at least Firefox 2 shows the tooltip. Are you sure it's not some config you have?
Forum: General
17 years ago
rmn
I don't think it's possible without changing the program code. If you're so inclined you could file an enhancement request in the BTS. (By the way, "(Untitled)" doesn't make sense either, so Opera's behaviour is better.)
Forum: General
17 years ago
rmn
Quote With Firefox I added options to change the tab text color while a page loads, added italicized and a different colored text for unread tabs, a different color of read tabs, and even a different color for pages that the old Proxomitron filter throws back with error messages. I use a different color in the status bar text. Quote Similarly, I added a userContent.css mod that combined the Fi
Forum: General
17 years ago
rmn
Hi Peabody, Those three things are probably related to the use of layers, but I don't think they're impossible to work around; for example, K-Meleon now retains the toolbar position between layers. Quote adding close buttons to each "tab" indicator is not possible I believe it's just not done in that way; you can middle-click or double-click a layer button to clo
Forum: General
Pages: Previous1234Next
Current Page: 3 of 4

K-Meleon forum is powered by Phorum.