Skip to main content
Known Participant
June 10, 2019
Question

Getting object style list from Object Style Catalog

  • June 10, 2019
  • 1 reply
  • 1056 views

Is the Object Style Catalog accessible via the Extendscript API?

Need to get the list available styles and apply some to certain objects within the document based on user's selections.

Thanks in advance!

This topic has been closed for replies.

1 reply

Klaus Göbel
Legend
June 10, 2019

Hi fonrig,

you have to look for "GraphicsFmt"

var oDoc =  app.ActiveDoc;

var oFormat = oDoc.FirstGraphicsFmtInDoc;    

while (oFormat.ObjectValid())

        {

        $.writeln(oFormat.StyleTag;)     //StyleTag BUT NOT "NAME"

        

       

        oFormat = oFormat.NextGraphicsFmtInDoc;

        }

You can find all properties in 2019 FrameMaker Scripting guide on page 516

fonrigAuthor
Known Participant
June 10, 2019

Thanks @KlausGobel,

I'm getting the oFormat object as undefined​, have any idea why?

Klaus Göbel
Legend
June 10, 2019

Of course you need an open/active document that contains object styles