Skip to main content

Messages

This section allows you to view all Messages made by this member. Note that you can only see Messages made in areas you currently have access to.

Messages - B.X

5
Otter Browser Forum / Re: Zoom Page and Fix-to-width in Otter no Opera-like features
Yes, I know that, but this is the basic thing, zooming pages and comfortable reading should be built into the browser (of course, a good thing that there are extensions, but they do not always work properly). Yes, I understand that not everything can be implemented now, but hopefully in the future it will be possible.
6
Otter Browser Forum / Re: Zoom Page and Fix-to-width in Otter no Opera-like features
Emdek, Thank you. This is good news. Otter could replace the Opera is almost 100%.
Firefox have the good extension that allows you to adjust the zoom pages as needed. Adjust view, behavior, and other things. Custom Zoom Level - it's cool feature. If you do something like this in your browser, it will be even better.
https://addons.mozilla.org/ru/firefox/addon/zoom-page

About Fix to width...
Chrome have the user script Force Wrap, which does the same thing as the Opera Fix to width...
http://userscripts.org/scripts/show/1847 - but the link is not available...
Code: [Select]

// ==UserScript==
// @name          Force Wrap
// @namespace     http://zoolcar9.lhukie.net/mozilla/userscripts/
// @include       *
// @exclude       http://mail.google.com/*
// @description      Wrap text automatically. Based on Jesse Rudderman's Force Wrap bookmarklet (http://xrl.us/hsn3)
// ==/UserScript==

/*
Changelog:
- 20060109:
   replaced innerHTML with insertBefore. Thanks to Jim Roberts
- 20060515:
   replaced Jim’s codes with codes from MR Tech Link Wrapper
   to fix regression in Firefox 2.0/3.0 dev builds.
*/

function F(n) {
  var u, r, c, x;
  if(n.nodeType == 3) {
    u = n.data.search(/\S{30}/);
    if(u >= 0) {
      r = n.splitText(u + 30);
      n.parentNode.insertBefore(document.createElement('WBR'), r);
    }
  } else if(n.tagName != 'STYLE' && n.tagName != 'SCRIPT' && n.tagName != 'PRE') {
    for (c = 0; x = n.childNodes[c]; ++c) {
      F(x);
    }
  }
}

F(document.body);
//document.body.parentNode.insertBefore(document.body, document.body);

// Coded added to fix regression is Firefox 2.0/3.0 dev builds
// Ripped from MR Tech Link Wrapper 2.0.2
var thisE = document.body;
var p = thisE.parentNode;
var n = thisE.nextSibling;
p.removeChild(thisE);
p.insertBefore(thisE, n);
8
Otter Browser Forum / Re: Zoom Page and Fix-to-width in Otter no Opera-like features
I sometimes use 400-450% (reading large texts regularly), but except at the Opera is not possible anywhere else... I do not use it on all pages, but for some great texts that I read from a distance from the screen. It is very convenient and this feature is only in Opera.

Otter saves the zoom setting pages for each tab - it's great (other browsers (Mozilla, Chrome) save settings for each site, and not for the tab, and it is very uncomfortable when I change the zoom on one page and it will automatically change to another page of this site in another tab), but setting a maximum of 300% after restarting the browser removes the place where I had read before, if I put 500% manually.

Fix to width this is a great feature when the text pages at the zoom of 450% expanded horizontally (and it is impossible to read the text), this function places the text within the browser window. Also the only feature of the Opera.