Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.07 KB

powerpoint.md

File metadata and controls

23 lines (17 loc) · 1.07 KB

Powerpoint has a control hierarchy, and uses 'Slides' which are Custom controls. There is some weirdness associated with the contents of each page, as they appear to be Images, even though they are actually text on the screen.

UISpy for Powerpoint

  Window window = application.getWindow("This is text.pptx - PowerPoint");
  logger.info(window.name());

  Panel panelX = window.getPanel(Search.getBuilder().className("MDIClient").build());
  logger.info(panelX.name());
  logger.info(panelX.getClassName());

  Panel panel1 = panelX.getPanel(Search.getBuilder("PowerPoint Edit View - [This is text.pptx]").build());
  logger.info(panelX.name());
  Panel panel2 = panel1.getPanel(Search.getBuilder("Slide").build();
  logger.info(panel2.name());
  PowerpointSlide slide = panel2.getPowerpointSlide(Search.getBuilder("Slide 1 - This is text").build());
  logger.info(slide.name());

  // Oddly enough this is an image control, and has text in it's selection
  Image image = slide.getImage((Search.getBuilder("Title TextBox").build());