Blog: 2024-10-26: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

26 October 2024

  • curprev 01:1201:12, 26 October 2024Razzi talk contribs 810 bytes +810 Created page with "Here's my silly little quicktime event with tkinter <pre> import tkinter as tk from tkinter import ttk, PhotoImage # Create the main window root = tk.Tk() root.title("Image in Tkinter") root.geometry('600x600') # Load the image image = PhotoImage(file="trogdor.png") # Create a label to display the image image_label = tk.Label(root, image=image) image_label.pack() win = False def button_pressed(): win = True print('You stab the dragon in the neck and it die..."