Skip to content
Permalink
Browse files
Changed the way tkinter was being imported to match other files
Not necessary to do as the code is obselete but helps keep things easy to read
  • Loading branch information
hortonr6 committed Nov 20, 2017
1 parent 7a3c98f commit abaa6ea9a1588b64c731144df5d3c4d045a98217
Showing 1 changed file with 17 additions and 13 deletions.
@@ -1,29 +1,33 @@
#Obselete Code - Used to test external code stored in tkHyperlinkManager.py

import tkHyperlinkManager import tkHyperlinkManager
import webbrowser import webbrowser
from tkinter import * import tkinter as tk


root = Tk() root = tk.Tk()
root.title("hyperlink-1") root.title("Hyperlink Manager Test")


text = Text(root) text = tk.Text(root)
text.pack() text.pack()


hyperlink = tkHyperlinkManager.HyperlinkManager(text) hyperlink = tkHyperlinkManager.HyperlinkManager(text)


def click1(): def click1(): #Richard
print ("click 1") print ("click 1")
url = "https://www.google.co.uk" url = "https://www.google.co.uk"
webbrowser.open(url, new=2) webbrowser.open(url, new=2)


text.insert(INSERT, "this is a ") text.insert(tk.INSERT, "this is a ")
text.insert(INSERT, "link", hyperlink.add(click1)) text.insert(tk.INSERT, "link", hyperlink.add(click1))
text.insert(INSERT, "\n\n") text.insert(tk.INSERT, "\n\n")


def click2(): def click2(): #Richard
print ("click 2") print ("click 2")
url = "https://www.google.co.uk"
webbrowser.open(url, new=2)


text.insert(INSERT, "this is another ") text.insert(tk.INSERT, "this is another ")
text.insert(INSERT, "link", hyperlink.add(click2)) text.insert(tk.INSERT, "link", hyperlink.add(click2))
text.insert(INSERT, "\n\n") text.insert(tk.INSERT, "\n\n")


mainloop() tk.mainloop()

0 comments on commit abaa6ea

Please sign in to comment.