08-05-2010, 12:57 AM | #1 |
Connoisseur
Posts: 82
Karma: 10
Join Date: Mar 2009
Device: Kindle 3 (previously owned PRS-500, PRS-600)
|
Highlighting
Did anybody ever develop a highlighting feature for the PRS-500 using the joystick?
|
08-06-2010, 05:52 AM | #2 |
2B || !2B
Posts: 851
Karma: 194010
Join Date: Feb 2010
Location: Austria
Device: Sony PRS505/650/T1/tolino vision 5
|
No to my knowledge,
but it would be interesting if it can be done, escezially with the forthcoming virtual keyboard in PRS+ (ok for the PRS-505, but maybe some day ported to the 500 by a kind soul) and the chance to use/activate the FSK-clipboard copy'n paste feature. |
Advert | |
|
08-15-2010, 02:48 PM | #3 |
2B || !2B
Posts: 851
Karma: 194010
Join Date: Feb 2010
Location: Austria
Device: Sony PRS505/650/T1/tolino vision 5
|
And this code snipped taken form PRS 600 kbook.so let me hope that this can be done.
Code:
this.Fskin.kbookKeyboard.keyboard.addLetter = function (obj, text, code) { var event, words, container, wlen, strExisted, candidate, idx; if (this.field) { event = new <global>.Event(2048); if (!code) { code = text.charCodeAt(0); } if (this.numberOnly) { words = this.field.getValue(); if (words && words == '0') { if (code == 48) { return; } if (48 + 1 <= code && code <= 48 + 9) { event.key = ''; event.keyCode = 8; this.field.keyDown(event); } } } event.key = text; event.keyCode = code; this.field.keyDown(event); container = this.container; if ('sandbox' in container && 'updatePageNo' in container.sandbox) { container.sandbox.updatePageNo(); } words = this.field.getValue(); if (this.numberOnly) { wlen = (words)?words.length:0; strExisted = (wlen > 0)?true:false; this.updateBtn(strExisted, this.strModified, false); } else { candidate = this.candidate; if (candidate) { idx = this.field.getSelectionOffset(); candidate.makeCandidate(words, idx); } } } }; Last edited by Mark Nord; 08-15-2010 at 02:50 PM. |
08-16-2010, 11:39 AM | #4 |
Connoisseur
Posts: 82
Karma: 10
Join Date: Mar 2009
Device: Kindle 3 (previously owned PRS-500, PRS-600)
|
Thanks! Highlighting would make the 500 incredible. I just sold mine (I needed the money to cover my recent 600 purchase because I really needed the highlighting and dictionary features before the semester starts). If the 500 could handle highlighting, I'd probably pick one up as a spare in the future. I miss my 500 already!
|
08-16-2010, 01:48 PM | #5 |
PRS+ author
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
|
Mark, I think the code you've posted works with TextEdit control. Books are rendered by corresponding "book viewer" directly to a bitmap instance. On the bright side, there is still a way to ask viewer "give me text from this page" (used in bookmarks) so maybe selection could still be emulated. Also, links are rendered by javascript on top of the page drawn by the viewer.
|
Advert | |
|
Thread Tools | Search this Thread |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
302 PB 302, highlighting text? | pavelh | PocketBook | 5 | 01-25-2011 11:03 AM |
Highlighting | pavelh | iRiver Story | 3 | 06-16-2010 10:47 PM |
PRS-900 note taking / highlighting | dizave | Sony Reader | 11 | 02-09-2010 01:06 AM |
PRS-600 Highlighting PDFs | rvdparis | Sony Reader | 0 | 10-21-2009 03:37 PM |
Highlighting Question | el.astrologo | Sony Reader | 33 | 06-02-2009 10:31 AM |