Hi Volkan,
Thanks for sending me your Artisteer design so I could figure out the issue. I have sent the skin back to you with the flash working. The only issue is that I had to hard code the url paths to the Flash files in your layout.master. For the next release of mojoPortal, I have added a property on the master page for SkinBaseUrl so it can be used without hard coding. I've uploaded a new build of mojoPortal on demo.mojoportal.com, and a new skin that uses Flash artisteer-24flashclouds. I created this design today using Artisteer. Previously I had never tried using the Flash features in Artisteer.
So in the next version of mojoPortal, it will be possible to set the url paths for flash like this example that comes from my design artisteer-24flashclouds:
<div id="art-flash-container">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="890" height="250" id="art-flash-object">
<param name="movie" value="<%= SkinBaseUrl %>container.swf" />
<param name="quality" value="high" />
<param name="scale" value="default" />
<param name="wmode" value="transparent" />
<param name="flashvars" value="color1=0xFFFFFF&alpha1=.70&framerate1=24&clip=<%= SkinBaseUrl %>images/flash.swf&radius=20&clipx=-55&clipy=0&initalclipw=900&initalcliph=225&clipw=1000&cliph=250&width=890&height=250&textblock_width=0&textblock_align=no" />
<param name="swfliveconnect" value="true" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="<%= SkinBaseUrl %>container.swf" width="890" height="250">
<param name="quality" value="high" />
<param name="scale" value="default" />
<param name="wmode" value="transparent" />
<param name="flashvars" value="color1=0xFFFFFF&alpha1=.70&framerate1=24&clip=<%= SkinBaseUrl %>images/flash.swf&radius=20&clipx=-55&clipy=0&initalclipw=900&initalcliph=225&clipw=1000&cliph=250&width=890&height=250&textblock_width=0&textblock_align=no" />
<param name="swfliveconnect" value="true" />
<!--<![endif]-->
<div class="art-flash-alt"><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
Note the use of <%= SkinBaseUrl %> to set the base url path. This will be possible in the next release of mojoPortal.
For the current release you would have to use /Data/Sites/[SiteID]/skins/[skinname]/ hard coded instead of <%= SkinBaseUrl %>
Best,
Joe