I found demo in http://www.flashgallery.org/demo.html very interesting. Therefore, I want to run it in DNN module.
http://www.flashgallery.org/demo.html
However, I am unable to make it run in DNN module.
In .ascx file, I changed the src value like this:
<embed src="/DNNSite/DesktopModules/MyFlashGalleryEx/gallery.swf" quality="high" allowFullScreen="true" scale="noscale" bgcolor="#000000" width="800" height="690" name="gallery" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
And the gallery was displayed with no image. Then, I decompiled the .swf file to .fla file. Change the path of xml file to
if (_root.xml_file == undefined)
{
_root.xml_file = "/DNNSite/DesktopModules/MyFlashGalleryEx/images.xml";
} // end if
However, there was no image in the gallery. Please tell me what to do to make it run.