

Visual Feedback for Reviews
0.02MB. Updated 2017-08-07. Only supports Anki 2.0.x.
The author has shared 62 other item(s).
Description
Download
As add-ons are programs downloaded from the internet, they are potentially malicious. You should only download add-ons you trust.
This add-on previously supported Anki 2.0. You can download the last version supporting 2.0 here. As Anki 2.0 has been discontinued, no support is available for this version.
Reviews

nice

Please port it to 2.1, please !

Still working on 2.1? Or just support has ended?

YES thank you !

Simple but effective

PLEASEEEE LET US USE THIS FOR 2.1 :(((

not working in windows 10
Comment from author
Hi. Thanks for the report. However, as it says in the description above:
> Please do not use reviews for bug reports or support requests. I don't get notified of your reviews, and properly troubleshooting an issue through them is nearly impossible. Instead, please either use the issue tracker (preferred), add-on support forums, or just message me at ankiglutanimate@gmail.com. Constructive feedback and suggestions are always welcome!
Issue tracker: https://github.com/glutanimate/anki-addons-misc/issues. Instructions for reporting issues through GitHub: https://github.com/glutanimate/docs/blob/master/anki/add-ons/CONTRIBUTING.md#reporting-a-bug-or-suggesting-a-new-feature. Add-on support forums: https://anki.tenderapp.com/discussions/add-ons
To understand the importance of following this request: I haven't been able to reproduce any problems on my Windows test machines, and as the add-on is used by thousands of Windows users worldwide, it's likely that – whatever the problem – it's specific to your particular set-up. However, I am no magician, so I have no clue which add-ons or decks you're using and in which ways they might interact with the add-on. Nor do I know what exact system you're on, which Anki version you're using, what the exact symptoms are, how the add-on is configured. With the information provided in your review, I can literally do nothing to help you.
Similarly, using reviews for support requests like this is very frustrating for add-on authors, as users are unlikely to ever update them – regardless of whether their issue has been fixed or not. If you want add-on authors to keep doing their thing and not just call it quits out of demotivation, then please report bugs through the proper support channels.
> Please do not use reviews for bug reports or support requests. I don't get notified of your reviews, and properly troubleshooting an issue through them is nearly impossible. Instead, please either use the issue tracker (preferred), add-on support forums, or just message me at ankiglutanimate@gmail.com. Constructive feedback and suggestions are always welcome!
Issue tracker: https://github.com/glutanimate/anki-addons-misc/issues. Instructions for reporting issues through GitHub: https://github.com/glutanimate/docs/blob/master/anki/add-ons/CONTRIBUTING.md#reporting-a-bug-or-suggesting-a-new-feature. Add-on support forums: https://anki.tenderapp.com/discussions/add-ons
To understand the importance of following this request: I haven't been able to reproduce any problems on my Windows test machines, and as the add-on is used by thousands of Windows users worldwide, it's likely that – whatever the problem – it's specific to your particular set-up. However, I am no magician, so I have no clue which add-ons or decks you're using and in which ways they might interact with the add-on. Nor do I know what exact system you're on, which Anki version you're using, what the exact symptoms are, how the add-on is configured. With the information provided in your review, I can literally do nothing to help you.
Similarly, using reviews for support requests like this is very frustrating for add-on authors, as users are unlikely to ever update them – regardless of whether their issue has been fixed or not. If you want add-on authors to keep doing their thing and not just call it quits out of demotivation, then please report bugs through the proper support channels.

Good!

Nice touch of style. Love this add-on. Hope to see it on 2.1 sometime

SUCH A GREAT FEATURE!
But I'd like to make a change, instead of pressing 1,2,3,4...I have by answer keys set up as q,w,e,r, space bar. Which parts of the script must I change in order to use this add-on this way? Not sure what I'm doing. I'm a beginner at changing script also. Thanks for the help.
This is what my script shows:
def _keyHandler(self, evt, _old):
key = str(evt.text())
if self.state == "answer":
if key == "q":
confirm(lapsed, duration)
elif key in ("w", "e", "r"):
confirm(passed, duration)
_old(self, evt)
def _linkHandler(self, url, _old):
if url.startswith("ease") and self.state == "answer":
if int(url[4:]) == 1:
confirm(lapsed, duration)
elif int(url[4:]) in (2, 3, 4):
confirm(passed, duration)
_old(self, url)
As a previous commenter posted...
By default the cards only work when using 1, 2, 3, 4 and spacebar hotkeys. I made an edit to make this add-on also work with the handy answer key shortcut add-on. Copy paste this for the line that starts with def _keyHandler:
def _keyHandler(self, evt, _old):
key = str(evt.text())
if self.state == "answer":
if key in ("1", "j"):
confirm(lapsed, duration)
elif key in ("2", "3", "4", "k", "l", ";", " "):
confirm(passed, duration)
_old(self, evt)
But I'd like to make a change, instead of pressing 1,2,3,4...I have by answer keys set up as q,w,e,r, space bar. Which parts of the script must I change in order to use this add-on this way? Not sure what I'm doing. I'm a beginner at changing script also. Thanks for the help.
This is what my script shows:
def _keyHandler(self, evt, _old):
key = str(evt.text())
if self.state == "answer":
if key == "q":
confirm(lapsed, duration)
elif key in ("w", "e", "r"):
confirm(passed, duration)
_old(self, evt)
def _linkHandler(self, url, _old):
if url.startswith("ease") and self.state == "answer":
if int(url[4:]) == 1:
confirm(lapsed, duration)
elif int(url[4:]) in (2, 3, 4):
confirm(passed, duration)
_old(self, url)
As a previous commenter posted...
By default the cards only work when using 1, 2, 3, 4 and spacebar hotkeys. I made an edit to make this add-on also work with the handy answer key shortcut add-on. Copy paste this for the line that starts with def _keyHandler:
def _keyHandler(self, evt, _old):
key = str(evt.text())
if self.state == "answer":
if key in ("1", "j"):
confirm(lapsed, duration)
elif key in ("2", "3", "4", "k", "l", ";", " "):
confirm(passed, duration)
_old(self, evt)

Act as a positive reinforcment

I love it

Nice!

Awesome tool to make doing your cards more fun. By default the cards only work when using 1, 2, 3, 4 and spacebar hotkeys. I made an edit to make this add-on also work with the handy answer key shortcut add-on. Copy paste this for the line that starts with def _keyHandler:
def _keyHandler(self, evt, _old):
key = str(evt.text())
if self.state == "answer":
if key in ("1", "j"):
confirm(lapsed, duration)
elif key in ("2", "3", "4", "k", "l", ";", " "):
confirm(passed, duration)
_old(self, evt)
My settings under user configuration that I have enjoyed = 500 ms feedback duration instead of 250, and I turned '_ansfeed_lapsed.png' and '_ansfeed_passed.png' to '_ansfeed_lapsed3.png' and '_ansfeed_passed3.png' as I like that image better. Great add-on!
def _keyHandler(self, evt, _old):
key = str(evt.text())
if self.state == "answer":
if key in ("1", "j"):
confirm(lapsed, duration)
elif key in ("2", "3", "4", "k", "l", ";", " "):
confirm(passed, duration)
_old(self, evt)
My settings under user configuration that I have enjoyed = 500 ms feedback duration instead of 250, and I turned '_ansfeed_lapsed.png' and '_ansfeed_passed.png' to '_ansfeed_lapsed3.png' and '_ansfeed_passed3.png' as I like that image better. Great add-on!

Very useful! I wish the feedback would be displayed before it switches to the next card though.

Nice add-on
don't remove
don't remove