Hi HarryIFX,
Unwanted and unavoidable popups have been a huge thorn in the side of FDK developers probably since the beginning. Up until recently, no one had a solution. However, Rick Quatro posted the following on the Yahoo Frame_dev list on Sept. 10, 2010, which appears to be the most glorious gift to the community in some time. It does not deal specifically with the message you want to avoid and I haven't personally tested it at all, but it seems to have promise for the problem in general. Here is a replicate of that post:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
Re: FM8: Message about missing referenced graphics - how to get rid of it?
I finally found out how to do this. Compile the following code and register the
DLL in the [APIClients] section of your maker.ini. It will "look" for the
"Cannot display some imported graphics. The images will appear as gray boxes"
message and suppress it. I tested it with FrameMaker 8 and above, and it works.
Please let me know if you have any questions or comments. Thanks.Rick Quatro#include "fapi.h"#include "fdetypes.h"#include "futils.h"VoidT F_ApiInitialize(IntT init){if (init == FA_Init_First){F_ApiNotification(FA_Note_Alert, True);F_ApiBailOut();}}VoidT F_ApiNotify(IntT notification, F_ObjHandleT docId, StringT filename, IntTiparm){F_ObjHandleT alertId;IntT uniq;switch (notification){case FA_Note_Alert:// Get the id of the alert.alertId = F_ApiGetId(0, FV_SessionId, FP_ActiveAlert);uniq = F_ApiGetInt(FV_SessionId, alertId, FP_Unique);// If the alert is "Cannot display some imported graphics...", supppress it.if ((uniq == 40086) || (uniq == 40090)){F_ApiReturnValue(FR_YesOperation);}break;default:break;}F_ApiBailOut();}>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>