Manejar el powerpoint


/ Published in: Python
Save to your folder(s)



Copy this code and paste it in your HTML
  1. from pywinauto import *
  2. from pywinauto import application
  3.  
  4.  
  5. office = "c:\\archivos de programa\microsoft office"
  6. ppt = "\powerpnt.exe"
  7.  
  8. # Arrancar la aplicacion
  9. app.start_(office + "\office11" + ppt);
  10.  
  11. win = app.window_(title_re = ".*Microsoft PowerPoint.*")
  12.  
  13. # Seleccionar todo para que al pasar las transparencias en modo presentacion se pase #
  14.  
  15. tambien en la vista de diseño
  16. win.TypeKeys ("%ES")
  17.  
  18. # Arrancar la presentacion
  19. win.TypeKeys("{F5}")

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.