@Webmaster4o
Thanks, i will try it later!
Welcome!
This is the community forum for my apps Pythonista and Editorial.
For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.

Best posts made by NRWTV2
-
RE: Change the View (without NavigationBar)
Latest posts made by NRWTV2
-
RE: Change the View (without NavigationBar)
@Webmaster4o
Thanks, i will try it later! -
Change the View (without NavigationBar)
Heyy!!
I got two pyui Files: intro.pyui and mail.pyui, if i start the code only intro.pyui is shown on the screen, now i added a button called "Open Mail", now i want to hide "intro.pyui" and open "mail.pyui".But how?
Thx -
RE: 2 (easy) Questions
No, its sadly just a "TypeError: coercing to Unicode: need string or buffer, int found
-
2 (easy) Questions
Hey! :)
-
Question: I created a label and a button, i also created an event called "button_tapped", what i want is now that every time someone presses on this Button the Label changes via Label.Text, but he should get the old Value (for example 0) and add the an Amount (for example 2), the Button should show "2" now. :) Sry bad english
-
Question: How am i able to react on an hud.password()? For example to get the Textfields Value?
Thy
-
-
(dumb) question: How to define Name of a Label
Hey,
i created by the help of the UI Editor a Label called "label2", now i want to change the text of the label with label2.text. But i dont really now how to define this UI Editor created Label as "label2"?
Thx
-
Just a simple button :(
Please help, i am trying to make a SIMPLE Button and i am really new to python and pythonista.
I already made a simple pyui File with JUST a simple Button in the center (no name, i just added "button_tapped" as action). But consoles only message is: "Cannot bind action: 'button_tapped is not definied'
# coding: utf-8 import ui import console v = ui.load_view() v.present('sheet') # As a function: def button_tapped(sender): print 'button tapped'