Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
3

InDesign crashed when trying to create the TOC programmatically

Participant ,
Feb 11, 2024 Feb 11, 2024

Hi all, I need some help. 

 

We have developed a plugin for InDesign and it tries to create a TOC using a TOC style which is already there in the document.

 

InterfacePtr<ICommand> myCreateTOCCmd(CmdUtils::CreateCommand(kCreateTOCCmdBoss));

if (myCreateTOCCmd == nil) {

    break;

}

 

InterfacePtr<IStringListData> myStringList(myCreateTOCCmd, UseDefaultIID());

if (myStringList == nil) {

break;

};

InterfacePtr<ITOCCmdData> myCmdData(myCreateTOCCmd, IID_ITOCCMDDATA);

if (myCmdData == nil) {

break;

};

 

//set myStringList and prepare myCmdData

 

myErr = CmdUtils::ProcessCommand(myCreateTOCCmd);

 

When I try to process command, instead of returning an error, indesign crashes. The exception thrown is

"Exception thrown at 0x00007FFB9256D26C (Text.rpln) in InDesign.exe: 0xC0000005: Access violation reading location 0x0000000000000000."

 

I tried using InDesign Debug version and right before the crash it gave me this message. 

"About to use nil interface ptr! Queried IID was IID_IMARGINS, on Boss kSplineItemBoss."

 

How can I identify the cause of the crash?

TOPICS
SDK
298
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Participant , Feb 13, 2024 Feb 13, 2024

Thank you for the reply. I found out that it can be the placePoint that causes the problem.

Translate
Contributor ,
Feb 12, 2024 Feb 12, 2024

Hi @Chamari_Silva ,

 

Creating TOC is not that straight forward.

 

You need to share your complete code to analyze where is the problem. -

 

//set myStringList and prepare myCmdData

 

- Rahul Rastogi

InDesign SDK C++ Custom Plugin Architect

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 13, 2024 Feb 13, 2024
LATEST

Thank you for the reply. I found out that it can be the placePoint that causes the problem.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 13, 2024 Feb 13, 2024

Have you tried with a different document? Maybe this one is corrupted?

 

Can you try IDMLing to fix it?

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Feb 13, 2024 Feb 13, 2024

Yes. It's hapenning only with a single document. I found out that it can be the placePoint that causes the problem. Thank you for the reply.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines