You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Kivy users support
Hello, I am new to Kivy, and I have little python experience. Is is possible to have a pinchable SVG or PDF file? In addition, is it possible that when I click button in SVG or PDF it open other page in app? Is there a recourse to any of these topics?
Thx in advance
Pranav Balaji Pooruli
unread,
Oct 22, 2020, 10:19:02 PM10/22/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Kivy users support
To open a file in another app, you can use the jnius module. Jnius is a Python module for accessing Java classes. So you can only use it if you know Java. But I recommend this easy way: Use the webbrowser module to open a link if the app has a website. For example, to open a Google Doc in the Google Docs app, you could say webbrowser.open_new_tab('https://docs.google.com/...'). Doing this will open a dialog asking you if you want to open this link in the Google Docs app or in a web browser. All you have to do is select Google Docs and the file will be opened in Google Docs.
Jnius is a module for opening URLs in the default web browser on any device and is built-in to Python.