Spencer Phillip Young

Results 211 comments of Spencer Phillip Young

I haven't tested on mac, but cannot reproduce on Windows7/8/10 or Ubuntu16-04. Seems to suggest this to be a bug specific to Mac os.

@jjdenis thanks. I think I've worked up a good solution for this. What's the best way for me to share the contribution? Should I just make a pull request to...

I'm not able to reproduce this issue. ``` python >>> easygui.multchoicebox(choices = [1,2,3]) [0] #I selected 1 and 2 ['1', '2'] >>> ``` What version of Python are you using...

Can you explain your case for this? If you pass something that is not a string into a hotkey, the `TypeError` should be expected, in my opinion. I'm not seeing...

This is a problem with your code, not easygui. Notice you did not prefix passwordbox with easygui, IE `easygui.passwordbox(msg="The message")` Therefore you're trying to call `passwordbox` from your script and...

Thanks for opening this issue. You're right that this is closely related to #46 -- freezing programs that use jinja templates to exe usually causes this problem. Mainly, this is...

Hi @PinkDev1 have you managed to make any progress with this?

Hmmm. These features are implemented somewhat differently. `find_window` performs its filtering in Python on all windows, which allows use of the `exact` parameter. It may be possible, but it's tricky...

Interesting. I actually wasn't aware `GetKeyState` has this functionality. I'll look to implement this in the future. In the meantime, your only workaround may be to use `run_script` to fill...

Good question! Right now there's not an easy way to pass arguments to an AHK script. Something I can think of when implementing this feature. I imagine it might take...