Advertisement
gauravssnl

topwindow_s60 example.py

Nov 4th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. import appuifw
  2. import e32
  3. import topwindow
  4. top_window = topwindow.TopWindow()
  5. x ,y = max( appuifw.app.layout( appuifw.EScreen) )
  6.  
  7. top_window.position = (-80,-120)
  8.  
  9. top_window.background_color = 50
  10. top_window.shadow = x/2
  11. top_window.show()
  12. e32.ao_sleep(3)
  13. top_window.hide()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement