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 - Quetzal

126
Otter Browser Forum / Re: extension exemple ??
well, it's waht i seen... but pragmaticaly speaking, how to used them...

it's a javscript file, but when i try to used, or modified an html document, nothing happend

i surely miss something important, but what ???
127
Otter Browser Forum / Re: start-page icon order ?
not really complexe, in fact...

1) do a numbered list in your bookmark start page...
 - edit every one and lit it as 01, 02, 03, 04
- close an reopened otter, the list is automticaly ordoned

but the icon in the speed dial are not ordonned

2) create à new one... select and valid.. it update the speed dial as it done in bookmarks


and to add a pic to the speeddial item...
find the png you like, resize it at 220x130px paste it in the otter's folder "thumbail" and rename  your pic with the number of the speed dial item... suppress the old one.
128
Otter Browser Forum / start-page icon order ?
hi, all

well, i've try many way to do it,
- by moving the thumbail an other place... it work, until i re-open otterbro
- by have a look in the file "thumbail" and tring changing order... noway, just the thumbail mov not the link
- by givin a number order in the bookmark's startpage list... not better, it change the title under the thumbail, but nothing else

i put it here for memory...

but a little memory list as for the password may(would be) welcome

see ya ;o)
129
Otter Browser Forum / [solved] extension exemple ??
hi all, hope your well...

1 month more in happyness with dragon-fly otter

but, i try stuff, and get a look to otter's extension... no exemple, nothing to download... then

i do suppose it's kind of chrome extension... but i do find anything...

same way than chrome extension, or there's somewhere an exemple'file that i do not have found yet...

thanks a lot

131
Otter Browser Forum / open in one another browser
open with one another browser was one of my favorite opera12 feature...

two month of utilisation, i have to admit that i need it... i surprised myself to look for it with a left click for some or other reason (essentially javascript test to get the JS debugger of iridium(chrome)...

is there a chance to see it implemented ?

another little thing about leftclic panel... the first link is "open" and under "open in another tab" ... do the "open" really necessary, on Vivaldi it was not any more... and really it's not fancy or a caprice, it's really dailly usefull...

thank a lot (for reading and for your high interrest in Otters preservation in the wild wild web)

 
132
Otter Browser Forum / Re: javascript fullscreen with otter
i don't have find the trick about the way to leave full screen, but i found the way to Enter full screen  :knight: (not easy)

then the problem is about leave full screen... the [document.webkitExitFullscreen] is on Iridium browser [document.webkitCancelFullScreen]

but, if first an d second return true, then exist on Otter and Iridium... only iridium do react positively to this imperius command.

then the last problem of it is just there... (be there) may it work with other Otter package...

win10pro x64, Otter32b weekly230; webkit 602.1
133
Otter Browser Forum / donwloader !! go back into this webbrowser !! :D
 well, ever some problem with the inner donwloader of Otter
i've made, with my own two hands, this little of coding bravoury wich permit to test some Javascript stuff...
just need to copy/paste in a new file, and rename it in .html and clic onto
=> in Otter browser
=> in chromium-like (i use Iridium browser)

and you'll see if you try, both work with webkitURL...
but not "exactly" in the same way...
both of them can donwload the textarea result but, but, but...

Code: [Select]
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<script type='text/javascript'>
//#========== JSeror =================
function JSeror(){document.getElementById('AAA').style.background = 'lightgrey'; }
//#===================================
//#===================================
function myDL(){
var data = document.getElementById('txta').value;
var blo = new Blob([data], {type:'text/plain'});

if (window.webkitURL != null)
{ document.getElementById('ank').href = window.webkitURL.createObjectURL(blo);
document.getElementById('AAA').style.border = "solid 3px red";
document.getElementById('show').innerHTML = "webkit";}

else { document.getElementById('ank').href = window.URL.createObjectURL(blo);
document.getElementById('AAA').style.border = "solid 3px blue";
document.getElementById('show').innerHTML = "all other";}
document.getElementById('ank').click(); }

function TESTJS(){ myDL(); }

 
</script>
</head>
<body onload="JSeror();">

<div id="AAA" style="float:left; width:400px; border:solid 1px black; background:red;">
<input type="button" onclick="TESTJS();" value="TESTJS" style="float:left; width:100px;"></input>
<a href="" id="ank" download="kinit.txt" style="display:block;">donwload me if you can !</a>
<div id="show" style="float:left; background:white; border-top:solid 1px black; min-width:400px; min-height:100px"></div>
</div><br><br>

<textarea id="txta" value="write something be there" style="display:block; background:lightgrey; margin-top:150px; width:400px; height:300px; border:solid 1px red; "></textarea>


</div>
</body>
</html>

have a nice day ;)
134
Otter Browser Forum / Re: youtube ??
yep, not wrong... there is just two way to change the user_agent on Otter... one by the menu_bar "show" (in english ??)

and one by "preferences/web"

and to change it only by the first way do not work... and exact, i was under chrome63... i passed under firefox, opera 12 do not give now ever good result...

thanks a lot for your answer
135
Otter Browser Forum / youtube ??
youtube seem to not allow my Otter to acced its website datas ???
(i've get off all Otter addblocks)
solutions ? known problem ?

Otter0.9.99 weekly233
136
Otter Browser Forum / Re: javascript fullscreen with otter
well, well, well...

here, the javascript code to pass any webrowser in fullscreen (and getout fullscreen)(fullf11 is just a fx name)

Code: [Select]
function fullf11(){ elem = document.body;
    if (    (document.fullscreenElement !== undefined && document.fullscreenElement === null)
         || (document.msFullscreenElement !== undefined && document.msFullscreenElement === null)
         || (document.mozFullScreen != undefined && !document.mozFullScreen )
         || (document.webkitIsFullScreen !== undefined && !document.webkitIsFullScreen))
        { if    (elem.requestFullscreen)       { elem.requestFullscreen();   }
        else if (elem.mozRequestFullScreen)    { elem.mozRequestFullScreen();}
        else if (elem.webkitRequestFullScreen) { elem.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);}
        else if (elem.msRequestFullscreen)     { elem.msRequestFullscreen(); }         }  }

function exitf11(){ if (document.fullscreenElement !== undefined && document.fullscreenElement === null) { fullf11();}
        else {
if (document.exitFullscreen) {document.exitFullscreen(); }
else if (document.webkitExitFullscreen) { document.webkitExitFullscreen(); }
else if (document.mozCancelFullScreen) { document.mozCancelFullScreen(); }
else if (document.msExitFullscreen) { document.msExitFullscreen(); }       }  }

if somes got the equivalent for Otter... (cause F11 do works, and it's possible to make a keyboard shortcut for it... then somebody certainly know the name of this link ;) )
137
Otter Browser Forum / javascript textarea file donwload problem
hi all, some javascript code under...
it allow to donwload the "value" of an textarea as a file
but, the anchor.donwload = "mydata.txt" do not works on Otter, with chromium-likes no problem...
the title of the file is a zvcgdfrtebvnfhgrtuz[...]gdfezzzbrter kind of name...
it's easy to change into the downloader form, but the width of the name file(too large) make this download just uggly...

somes may got a solution, or... an idea ?
(but it work
Code: [Select]
function filedownload(){
var text = document.getElementById("mytextarea").value;
var blob = new Blob([text], { type: "text/plain"});
var anchor = document.createElement("a");
anchor.download = "mydata.txt";
anchor.href = window.URL.createObjectURL(blob);
anchor.target ="_blank";
anchor.style.display = "none"; // just to be safe!
document.body.appendChild(anchor);
anchor.click();
document.body.removeChild(anchor); }
139
Otter Browser Forum / javascript fullscreen with otter
hi all !

a little difficulties, i made à little "slideshow" in javascript...
 i found the links in javascript to test the fullscreen'state of many browser (opera, mozilla, IE, chrome-like) but for Otter ??
and to open/close these browsers in fullscreenmode

but, for Otter, how to know if Otter is in fullscreen mode, and how to pass it in fullscreenmode (and out) with JS...

thanks a lot
140
Otter Browser Forum / Re: few problems download
little up about donwload manager...

then, it's really better to not put as default download place the desktop as i do...
because when i get off (remove, or move) the downloaded file, the download manager got fever and  bonesShakes

one it put all removed download in red, and do not reconize the as "successfull download" as the other where the file is just successfull, wich are in green...

then to try to suppress by à right click "remove all download" is sucessful with green but not with red files

at last, to have some "red files" give headackes to the manager, with can crash the browser and send a crash message to home(E.T tel home) when there's a try to donwload another files from anywhere

it's because of these crashes that i up this message... it should not happened.. ;)
141
Otter Browser Forum / little difficulties wih password manager
a new issue (win10)
the difficulties is that the manager do adds the password already recorded everytime a do log on the web site... and do not ask to add it

then, i've 5 identique password for this forum and many other for some other web site...

other thing, to try to eliminate them, seems to work only one time... it would need to reboot Otter for each extra password

if you got time

thanks a lot ;)
142
Otter Browser Forum / Re: (Pre) RC 8 release (01.05.2018)
well, i do not really see what your talking about... i'm a strict windows user, never try linux or apple... then the diffculties of other platform are a few far of my usual environement...

hm, i code a few in python, and i've donwload Qt5.4, pyQt and pypy... i haven't try anything with Qt, or a few some years ago with Qt4 but, i was really a newbi looking for a gui a few better than Tkinter... but if there some extra-test of small stuff to do... Qt4 was a few uneasy 4years ago...

thanks a lot
143
Otter Browser Forum / Re: (Pre) RC 8 release (01.05.2018)
Quote from: Deezer_Help_Forum
Hello,
Indeed, I have just had a feedback from our team about this.
The browser versions that support the HTML5 player are:
Chrome> = 55, Chromium:> = 55, Safari> = 10, Firefox> = 54, Edge> = 16, Opera> = 42 and Vivaldi> = 1.6
Opera Neon has been discontinued and is equivalent to Chrome 53. Its latest release dates from March 2017.
Musically !

as you can read, only some browser do have install HTML5 player in their product
then it's a new feature it seems, because as say upper, opera neon never had implemeted it... and stop product in 03/17

at last, i miss the good post, this is the realease of june thta iwas speaking about, and stops load pages by the bottom(is there a way to move it at the good place ??) tahnks
144
Otter Browser Forum / Re: (Pre) RC 8 release (01.05.2018)
cool, i've download it, and website are not load by the bottom... which was my first little ennoying difficulties [solved]

i don't know if you use deezer.com ... but still i've exterminate falshplayer of my PCs impossible to play anything onto with otter and opera neon and some other... opera do work, vivaldi too etc...

the problem, a question of HTML5 Player... an option is present into the parameters(little gear whell in the search panel) with the working browser, and not with Otter and Opera Neon... ??? but youtube work is all.. i've change my user_agent to safari, not better ?

if you got time to have a look

instead of this... well is Otter the Opera 13 waited in vain my million users... may be... surely in fact... thanks a lot... (but i've a little weakness for Opera neon.. but not for daily browsing, no shortcuts, in fact nothing really usefull into, just awfully nice good looking

145
Otter Browser Forum / Re: User agent fonction
hi, Frenzie

just to point the case, Otterbrowser with user agent Opera12,18 on google image and with Safari 11.0

the page style is just not exactly the same

146
Otter Browser Forum / User agent fonction
what the f*** this notion user agent can be usefull for ???

simply go on Google image, do a research of stuff...
try Opera12,18, reload
and after safarixxx, reload

you'll be not welcome the same way
147
Otter Browser Forum / adblocker my good old friend
well, after, been lock at home during 12hour  :king:  beside privoxy cause of difficulties to remove it properly and get back "defaut" data of the microsoft proxy... (just 80) in internet option... use no proxy

because i have certainly some ddificulties to configurate it... if i go in about:config and type yes to activate it, whatever i check no extra-list.. under win10, and win7... same story the pages are load by the bottom, scrollTop(false), or scrollBottom(Down), i do not remermber...

there's a way to configurate it correctly to not have this unfriendly behaviour ??

thanks a lot
148
Otter Browser Forum / Re: myBeautifullBackUp
i'm genius, i've been successfull... ;)

well, it was not appData/local/otter/otter that it have to be backup... but more simply AppData/local/otter... the whole Otter file...

no i'm not so ashamed to not have been successfull at first sight, and went here cry as a newbie about nothing...

just that under vivaldi and opera, the operation was to take only the second vilvaldi/users, or opera/opera only...

well, oneother victory of otter on everything else...
149
Otter Browser Forum / [Solved]myBeautifullBackUp
hi all,
well, i'm doing some weird experimentation on my PC...

and i tried to do a large back up of Otter as i was doing in Opera and Vivaldi...

i went to AppData/local/Otter and do a wonderfull and simple copy of otter folder... and keep it presciously as an aladin treasure in a deep cave in far deep forest...

later.... later ... later

with a clean system, i undertook my beautifull back up, and by night with strong friends go back to the Otter's lair and paste it with some magic incantion under a full moon

do the magic will happend, clic on Otterbro and... and... and...

nothing... Rhaaaaaaaa all is losed... damanation grest gods where were you ?

then... there is a smart way to back up a whole Otter config ??? or do i've omit a file in my Otter safeguarding ?

thanks a lot
150
Otter Browser Forum / Re: [solved] page.scrollToBottom(true) weird effect
[ADDENDUM]
well, nothing's perfect... somes site will not tolerate [Edge AdGuard]

Deezer.com do play anything whatever you disable it  :cry: .. i've try on win7, win10... and continue to work under adblocker (adguard too) on win7
then ... nobody's perfect...  :rolleyes: