This is in 15.1, but the release version isn't an option in the forum insert field above, so I selected iMIS 10.0 when adding this forum topic, as an FYI.
I'm having issues with an SWF file working correctly in wCM. I use the telerik editor to add the SWF as an embedded object and everything that is internal to the SWF file works correctly. This specific SWF file references and external XML file that also references images within the same directory of the SWF file, but nothing works as far as rendering these images within the flash page. All the internal references work fine and the flash file works completely, except for the external references.
When i create a standard ASP page in the same directory and add the embedded object, all works correctly including the external references. How can I get everything to work when adding a flash file within wCM through the telerik editor?
How to enable Telerik Editor for Flash Uploads
You can use the WYSIWYG editor (telerik editor) to upload flash content. You can enable the flash insert button for the wysywig editor, once you do that you will have the ability to insert swf files into content records. To enable the ability to insert swf files you will need to edit the Net\RadControls\Editor\ToolsFile.xml file. Open the ToolsFile.xml in notepad and look for the section:
<tools name="Toolbar4" isribbon="false" dockable="false">
<tool name="InsertTable" />
<tool name="InsertHorizontalRule" />
<tool name="ImageManager" shortcut="CTRL+G"/>
<tool name="LinkManager" shortcut="CTRL+K"/>
<tool name="Unlink" shortcut="CTRL+SHIFT+K"/>
</tools>
Under <tool name="ImageManager" shortcut="CTRL+G"/> add the following line:
<tool name="FlashManager" />
The end result should look like this:
<tools name="Toolbar4" isribbon="false" dockable="false">
<tool name="InsertTable" />
<tool name="InsertHorizontalRule" />
<tool name="ImageManager" shortcut="CTRL+G"/>
<tool name="FlashManager" />
<tool name="LinkManager" shortcut="CTRL+K"/>
<tool name="Unlink" shortcut="CTRL+SHIFT+K"/>
</tools>