can we use a locked macro or non changeable macro code repeatedly on otherpage after using it 1 time?

can we use a locked macro which we have purchased from a developer. Repeatedly on other page with the same setting i used first time after opening the document?

For example Oberon tiler

i used a specific settings on first page but now i have to use the same setting on the 5,6,7,8,20 page

is this possible?

Parents
No Data
Reply
  • To run macro on every page of document for oberon tiler macro use

    Sub CallMacroEveryPage()
        If ActiveDocument Is Nothing Then Exit Sub
        Dim PageElement As Page
        For Each PageElement In ActiveDocument.Pages
            PageElement.Activate
            ActivePage.Shapes.All.AddToSelection
            GMSManager.RunMacro "Tiler", "MainModule.StartTiler"
        Next PageElement
    End Sub
    
Children