Beiträge von grzgrzgrz3

    Looks like you do not undarstand what im looking for.



    Please look at this there example what i want to do:





    How to open Onload(Screen) correctly?

    For example i have something like that:


    Python
    class ABC: 
         def __init__(self):
              self.Timer = eTimer()
              self.Timer.callback.append(self.startscreen)
              self.Timer.start(1000*60, False)
    
    
         def startscreen(self):
              #Here i want to open some screen


    I cant use self.session.open() because there's no session. How can i do that? It is possible to get current session maybe?