critor

Results 4 comments of critor

Here is a partial workaround. Add this at the start of your Python scripts : `try: _input except: _input = input def input(txt): val = _input(txt) print(val) return val` The...

What you apparently didn't understand, is that you're not going to get a "complete scrolling mode", but a terrible user experience. Scrolling beyond the bottom of the page didn't scroll...

Thank you for your fast and comprehensive reply. Yes, the right way for a continuous scrolling with nPDF would be to show 2 pages at the same time : end...

When the address was not divisible by 8, the old code was trying to free an address which had never been allocated because of my code. I knew about this...