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

Script to detect gray boxes for missing graphics

Community Beginner ,
Jun 28, 2019 Jun 28, 2019

Copy link to clipboard

Copied

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

Views

255

Translate

Translate

Report

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.

}

Votes

Translate

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

Copy link to clipboard

Copied

You can do something like this:

var file;

file = new File (oGraphic.InsetFile);

if (file.exists === false) {

    // Missing graphic.

}

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

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

Votes

Translate

Translate

Report

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