Hi,
I have a website using asp.net mvc in which I need to embed a flash file in view. I am unable to set the relative path for the flash file. Given below is the code I am using:
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
'width', '487',
'height', '359',
'menu', 'false',
'movie', 'images/butterfly',
'quality', 'high',
'allowscriptaccess', 'sameDomain',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer'
);
where I copied butterfly.swf in a directory called images. images directory resides in the views folder.
If I use code behind( default.aspx default.aspx.cs) in a different solution with the same folder strucuture, browser is able to load the flash file.
Could you please throw some light on the MVC folder structure issue??
Thanks a lot.
Mahesh