Ben Levitt

Results 21 comments of Ben Levitt

+1 I also need to include a mac app bundle embedded into my pyinstaller mac app. I'll have to go back to v5 for now. (Not a full Chromimum! But...

Thanks! In my spec file, I use a data parameter in my Analysis() call that adds a directory containing my sub-app to the build, like this: datas=[('containerDir', '.')], During my...

Improvements here may require upstream fixes to the ace js editor: - show autocomplete popup in the right place, even when page is scaled or scrolled. - first tap should...

Great ideas, thank you! • I love your point about getting text position of TextField clicks. I'm a little hesitant to just default to adding more event handlers, since a...

This is an openclipart bug, where a search will return a bunch of pages of results, and the first few pages are blank. If you click '>>' a few times,...

On the click line issue. I added text field methods to allow your use case: ```python i = text_field.point_to_index(pt) pt = text_field.index_to_point(i) (r, c) = text_field.index_to_row_col(i) i = text_field.row_col_to_index(r, c)...

I just added a new preview release including these changes here: https://github.com/benjie-git/CardStock/releases/tag/v0.99.7_pre2 The following code will go to the card number of the clicked line+2 (which assumes that the first...

There's no stack.save() function but if you set stack.can_save to True in the Designer, then when you run the stack, it will allow saving, and will prompt you to save...

The current card receives on_key_press() events. So you can add code to those in your cards. You can set up a card as a template card, and then run new_card...

Currently you can set the name of a new object by including `name="desired_name"` in the call to card.clone() or stack.add_card(). But changing an object's name at runtime is not currently...