Hey guys, I'm new to Kivy and Python so sorry if this is an odd question but how can I import Tkinter along with Kivy? I only want the Open File Dialog from Tkinter, because I'm creating a program to be used on Windows and Tkinter's file browser is much faster and more intuitive for a basic Windows application. The rest of the GUI is all Kivy though because it looks much better and was faster to design.
Can anyone help me? I've added this to the top of my Kivy App
from Tkinter import Tk
from tkFileDialog import askopenfilename
But when I run it, it says "ImportError: no module named Tkinter". I have regular (non-Kivy) Python installed as well and those import lines work when using the the Python console. I've tried copying the tkinter folder from my default python directory into the kivy directory but that didn't help at all.
Also, if anyone knows how I can get a default Windows File Browser dialog in Kivy without having to import Tkinter, that'd be great too. Thanks!