Friday 11 August 2006 3:34:09 am
Actually, I think the fix is much easier than that.
If I'm understanding the problem correctly, it's the same as stated in http://ez.no/community/forum/developer/onlineeditor_4_1
and is simply that the newer OE has changed a bit over the old. Embedded objects
can now be added with options of embed-inline and embed, with embed-inline being
the default. This then displays an inermediate link to the object rather display the
image or provide a direct link to download as in the case of a file.
If you choose the option embed rather than imbed-inline, images will display and the link will download the file directly.
To make embed the default over embed-inline just go into the settings folder of the OE extension itself, and adust site.ini.append so that
[EmbedViewModeSettings]
AvailableViewModes[]=embed-inline
AvailableViewModes[]=embed
AvailableViewModes[]=full
AvailableViewModes[]=line
InlineViewModes[]=embed-inline
<b>becomes</b>
[EmbedViewModeSettings]
AvailableViewModes[]=embed
AvailableViewModes[]=embed-inline
AvailableViewModes[]=full
AvailableViewModes[]=line
InlineViewModes[]=embed-inline
Clear the ini caches and you're all taken care of. Andy
|