Merge pull request #6512 from PySimpleGUI/Dev-latest

Dev latest
This commit is contained in:
PySimpleGUI 2023-09-21 16:10:57 -04:00 committed by GitHub
commit dee0c81b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 37 additions and 25 deletions

View File

@ -22475,7 +22475,7 @@ def popup_animated(image_source, message=None, background_color=None, text_color
:param icon: Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO
:type icon: str | bytes
:param no_buffering: If True then no buffering will be used for the GIF. May work better if you have a large animation
:type no_buffering: (str)
:type no_buffering: (bool)
:return: True if the window updated OK. False if the window was closed
:rtype: bool
"""

View File

@ -25,9 +25,9 @@
<span style="font-weight: normal;">
apply coupon for discount:
</span>
62A4C02AB0A3DAB34388.
2F6C6BE01B8940D3E457.
</div>
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
click here to visit course page
</button>
</div>
@ -16903,7 +16903,8 @@ popup_animated(image_source,
time_between_frames = 0,
transparent_color = None,
title = "",
icon = None)
icon = None,
no_buffering = False)
```
Parameter Descriptions:
@ -16925,6 +16926,7 @@ Parameter Descriptions:
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
| str | title | Title that will be shown on the window |
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
| bool | **RETURN** | True if the window updated OK. False if the window was closed
Popup that closes itself after some time period
@ -17987,7 +17989,8 @@ PopupAnimated(image_source,
time_between_frames = 0,
transparent_color = None,
title = "",
icon = None)
icon = None,
no_buffering = False)
```
Parameter Descriptions:
@ -18009,6 +18012,7 @@ Parameter Descriptions:
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
| str | title | Title that will be shown on the window |
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
| bool | **RETURN** | True if the window updated OK. False if the window was closed
Display a Popup without a titlebar. Enables grab anywhere so you can move it

View File

@ -25,9 +25,9 @@
<span style="font-weight: normal;">
apply coupon for discount:
</span>
62A4C02AB0A3DAB34388
2F6C6BE01B8940D3E457
</div>
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
click here to visit course page
</button>
</div>

View File

@ -25,9 +25,9 @@
<span style="font-weight: normal;">
apply coupon for discount:
</span>
62A4C02AB0A3DAB34388
2F6C6BE01B8940D3E457
</div>
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
click here to visit course page
</button>
</div>
@ -2028,7 +2028,8 @@ popup_animated(image_source,
time_between_frames = 0,
transparent_color = None,
title = "",
icon = None)
icon = None,
no_buffering = False)
```
Parameter Descriptions:
@ -2050,6 +2051,7 @@ Parameter Descriptions:
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
| str | title | Title that will be shown on the window |
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
| bool | **RETURN** | True if the window updated OK. False if the window was closed
***To close animated popups***, call PopupAnimated with `image_source=None`. This will close all of the currently open PopupAnimated windows.

View File

@ -9,8 +9,8 @@
<img src="https://www.dropbox.com/s/6wzf3ebmj97v4zs/PySimpleGUI-GitHub-Udemy-Course.png?raw=1" width=200 alt="PySimpleGUI Udemy Course">
</td>
<td>
<h5>apply coupon for discount:<br>62A4C02AB0A3DAB34388</h6>
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388">click here to visit course page</a>
<h5>apply coupon for discount:<br>2F6C6BE01B8940D3E457</h6>
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457">click here to visit course page</a>
</td>
</tr>
</table>

View File

@ -9,8 +9,8 @@
<img src="https://www.dropbox.com/s/6wzf3ebmj97v4zs/PySimpleGUI-GitHub-Udemy-Course.png?raw=1" width=200 alt="PySimpleGUI Udemy Course">
</td>
<td>
<h5>apply coupon for discount:<br>F988F082A3D18483B1C5</h6>
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=F988F082A3D18483B1C5">click here to visit course page</a>
<h5>apply coupon for discount:<br>2F6C6BE01B8940D3E457</h6>
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457">click here to visit course page</a>
</td>
</tr>
</table>

View File

@ -52,9 +52,9 @@ HOW DO I INSERT IMAGES ???
<span style="font-weight: normal;">
apply coupon for discount:
</span>
62A4C02AB0A3DAB34388
2F6C6BE01B8940D3E457
</div>
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
click here to visit course page
</button>
</div>

View File

@ -25,9 +25,9 @@
<span style="font-weight: normal;">
apply coupon for discount:
</span>
62A4C02AB0A3DAB34388.
2F6C6BE01B8940D3E457.
</div>
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
click here to visit course page
</button>
</div>

View File

@ -25,9 +25,9 @@
<span style="font-weight: normal;">
apply coupon for discount:
</span>
62A4C02AB0A3DAB34388.
2F6C6BE01B8940D3E457.
</div>
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
click here to visit course page
</button>
</div>
@ -16903,7 +16903,8 @@ popup_animated(image_source,
time_between_frames = 0,
transparent_color = None,
title = "",
icon = None)
icon = None,
no_buffering = False)
```
Parameter Descriptions:
@ -16925,6 +16926,7 @@ Parameter Descriptions:
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
| str | title | Title that will be shown on the window |
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
| bool | **RETURN** | True if the window updated OK. False if the window was closed
Popup that closes itself after some time period
@ -17987,7 +17989,8 @@ PopupAnimated(image_source,
time_between_frames = 0,
transparent_color = None,
title = "",
icon = None)
icon = None,
no_buffering = False)
```
Parameter Descriptions:
@ -18009,6 +18012,7 @@ Parameter Descriptions:
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
| str | title | Title that will be shown on the window |
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
| bool | **RETURN** | True if the window updated OK. False if the window was closed
Display a Popup without a titlebar. Enables grab anywhere so you can move it

View File

@ -25,9 +25,9 @@
<span style="font-weight: normal;">
apply coupon for discount:
</span>
62A4C02AB0A3DAB34388
2F6C6BE01B8940D3E457
</div>
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
click here to visit course page
</button>
</div>
@ -2028,7 +2028,8 @@ popup_animated(image_source,
time_between_frames = 0,
transparent_color = None,
title = "",
icon = None)
icon = None,
no_buffering = False)
```
Parameter Descriptions:
@ -2050,6 +2051,7 @@ Parameter Descriptions:
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
| str | title | Title that will be shown on the window |
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
| bool | **RETURN** | True if the window updated OK. False if the window was closed
***To close animated popups***, call PopupAnimated with `image_source=None`. This will close all of the currently open PopupAnimated windows.