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

Script to detect gray boxes for missing graphics

Community Beginner ,
Jun 28, 2019 Jun 28, 2019

Hello Community,

I cannot find an Inset property that will let me know if a graphic is not being displayed because FM could not find the source. I have the oGraphic.InsetFile property but don't see how to determine if the image is being displayed or not.

screenshot_09909.png

My task is to create a list of all missing graphics in the document so the user can manually then try to go and reconnect the missing graphic(s) to the AFrame.

Thanks in advance!

TOPICS
Scripting
405
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

Community Expert , Jun 28, 2019 Jun 28, 2019

You can do something like this:

var file;

file = new File (oGraphic.InsetFile);

if (file.exists === false) {

    // Missing graphic.

}

Translate
Community Expert ,
Jun 28, 2019 Jun 28, 2019

You can do something like this:

var file;

file = new File (oGraphic.InsetFile);

if (file.exists === false) {

    // Missing graphic.

}

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 Beginner ,
Jun 28, 2019 Jun 28, 2019
LATEST

Thanks Rick. Didn't think about using the File object. You are the best!

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