Text Highlight and Seek

Automatically highlight user-defined text with Seek function (2019-09-22)

< Feedback on Text Highlight and Seek

Review: Good - script works

§
Posted: 2017-12-15

Width of the boxes

I have some very large word selections and I have to break them up at times as I can't see them for the boxes width is so narrow that the bottom of the edit box goes off the screen.

Is it possible to get the script a bit wider? Or even takes in the size of the screen so as to open up the use of more screen space to edit/work with?

§
Posted: 2017-12-15

A maximize button would be a nice addition. A quick hack would be to edit line 862. That starts off with:

"#kwhiedit{position:fixed;top:1px;left:150px;width:800px;height:400px;

And to use nearly the entire document area you could change the left, width, and height as follows:

"#kwhiedit{position:fixed;top:1px;left:1px;width:calc(100% - 3px - 2em);height:calc(100% - 3px - 2em);

§
Posted: 2017-12-15
Edited: 2017-12-15

Better yet... Still a lot of wasted space that could be used. Now I only need to shrink the page to 90% instead of 60% to edit.

Just want to say your scripts works perfect and I know I am on the extreme end of use with this many things to search for.

image

§
Posted: 2017-12-15

Wow, that is a long list. To reallocate the widths of the table:

line 846 change 45% to 75%

line 850 change 55% to 25%

I need to find a new way to calculate that with the larger space, or perhaps let it size the cells naturally.

§
Posted: 2017-12-16

I added a "maximize" button to version 2.3.0.

§
Posted: 2017-12-17

Sweet. This works out well.

Post reply

Sign in to post a reply.