I have a structured XML app and I am trying to export out OLE2 graphics that are embedded in FrameMaker. I am trying to use the VSD, SVG filter but I am getting the error I have listed below.
I am using FrameMaker 11 structured.
On windows 7.
I get the following error
"Cannot export the FrameMaker graphic element (Graphic) in the specified graphic format (VSD).
Filter failed attempting to export a graphic as (VSD)."
Here is my code in r/w rules:
element "Graphic"
{
is fm graphic element "Graphic";
writer
facet "DIB"
export to file "$(docname).png" as "PNG ";
writer
anchored frame
export to file "$(docname).png" as "PNG ";
writer
facet "ole2"
export to file "$(docname).vsd" as "VSD";
}
The first writer rule is to grab dib formats and save as png, the second rule is to take framemaker drawing objects and save as png, and the last should grab the OLE2 format to vsd. This is not working. Anyone know what the facet should be when the object displays that the facet is OLE2. Are these filters working???
Thanks for any help that anyone has to offer.