I am trying to create a Splash Screen in python3 using wx following this tutorial.
According to them, there should exist a SplashScreen attribute under wx, but I get an Error saying that wx does not have attribute SplashScreen.
Also in this link, it is mentioned that SplashScreen should be available under adv(wx.adv.SplashScreen). But no luck here, too. It gives an error saying that wx has no attribute adv.
So, how can I create a splash screen in python 3 using wx?
BTW, I am using wxPython (4.0.0b2), python 3.5.3 and Windows 10. Also, Updating and reinstalling wxPython did no good.
try:
from agw import advancedsplash as AS
except ImportError: # if it's not there locally, try the wxPython lib.
import wx.lib.agw.advancedsplash as AS
According to them, there should exist a SplashScreen attribute under wx,
but I get an Error saying that wx does not have attribute SplashScreen.
Also in this link
<wx.adv.SplashScreen — wxPython Phoenix 4.2.3a1 documentation,
it is mentioned that SplashScreen should be available under
**adv**(wx.adv.SplashScreen). But no luck here, too. It gives an error
saying that wx has no attribute adv.
So, how can I create a splash screen in python 3 using wx?
BTW, I am using wxPython (4.0.0b2), python 3.5.3 and Windows 10. Also,
Updating and reinstalling wxPython did no good.
Any help would be appreciated.
--
Steve (Gadget) Barnes
Any opinions in this message are my personal opinions and do not reflect
those of my employer.
---
This email has been checked for viruses by AVG.
On Sunday, October 22, 2017 at 9:08:08 AM UTC-7, S.S.H wrote:
I am trying to create a Splash Screen in python3 using wx following this tutorial.
According to them, there should exist a SplashScreen attribute under wx, but I get an Error saying that wx does not have attribute SplashScreen.
Also in this link, it is mentioned that SplashScreen should be available under adv(wx.adv.SplashScreen). But no luck here, too. It gives an error saying that wx has no attribute adv.
So, how can I create a splash screen in python 3 using wx?
BTW, I am using wxPython (4.0.0b2), python 3.5.3 and Windows 10. Also, Updating and reinstalling wxPython did no good.