Skip to content

SongBeamer Import for PowerPoint (as an Add-In) and LibreOffice (as Extension).

Notifications You must be signed in to change notification settings

audiooffler/SongBeamerImport

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

SongBeamerImport

SongBeamer Import for PowerPoint (as an Add-In) and LibreOffice (as Extension). This is realized with Macros, written in Basic (VBA).

Platforms

The PowerPoint version has been tested with Office 2016 for Mac and Windows. The LibreOffice version has been tested with LibreOffice 6.4.3.2 for Mac

Sources for Macro and Extension Developers

LibreOffice

PowerPoint Add-In

To make Buttons in PowerPoint ribbon bar, customUI.xml was edited, using the following editors:

and using the following sources:

to the following content of customUI.xml:

<!-- This adds a new group to the Design tab and adds a couple of buttons to the group -->
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">

<ribbon>
  <tabs>
    <tab idMso="TabHome">

      <group id="id_Group_SongBeamerHome"
      Label = "SongBeamer"
      insertAfterMso="GroupSlides">

        <button
          Id = "id_Button_SongBeamer_Import"
          Label = "Import Songs"
          Size = "large"
          imageMso = "TextFromFileInsert"
         OnAction = "SongBeamerImport"
         ScreenTip = "SongBeamer Song Dateien (*.sng) ausw_hlen und als PowerPoint-Folien importieren."
         />

      </group>
    </tab>
    <tab idMso="TabInsert">

      <group id="id_Group_SongBeamerInsert"
      Label = "SongBeamer"
      insertBeforeMso="GroupInsertTables">

        <button
          Id = "id_Button_SongBeamer_Import2"
          Label = "Import Songs"
          Size = "large"
          imageMso = "TextFromFileInsert"
         OnAction = "SongBeamerImport"
         ScreenTip = "SongBeamer Song Dateien (*.sng) ausw_hlen und als PowerPoint-Folien importieren."
         />

      </group>
    </tab>

  </tabs>
</ribbon>

</customUI>

About

SongBeamer Import for PowerPoint (as an Add-In) and LibreOffice (as Extension).

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages