Export DITA map -- not all asset files included in export
Posted: Mon Aug 04, 2014 5:26 pm
Hi everyone,
I'm trying to export a DITA map for transformation outside of oXygen, and I'm missing some files. Specifically, I'm using <object> with <param> values to include Flash assets, but those aren't being exported. They are located in the same location as my images (which are tagged as <image> and are being exported).
Is there any way to add the <object> and <param> elements to the list of items that are pulled for export? Here's a sample of my code:
Thanks for any help!
Peyton
I'm trying to export a DITA map for transformation outside of oXygen, and I'm missing some files. Specifically, I'm using <object> with <param> values to include Flash assets, but those aren't being exported. They are located in the same location as my images (which are tagged as <image> and are being exported).
Is there any way to add the <object> and <param> elements to the list of items that are pulled for export? Here's a sample of my code:
Code: Select all
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
data="../assets/core_content/digital/U5_4_1.swf"
type="application/x-shockwave-flash" height="488" width="530">
<param value="../assets/core_content/digital/U5_4_1.swf" name="movie"/>
<param value="high" name="quality"/>
<param value="false" name="menu"/>
<param name="allowScriptAccess" value="always"/>
<param name="wmode" value="opaque"/>
</object>
Peyton