Unable to set relative path for flash file in ASP.NET MVC using AC_FL_RunContent

Posted by Mahesh on Stack Overflow See other posts from Stack Overflow or by Mahesh
Published on 2010-05-06T09:43:08Z Indexed on 2010/05/06 9:48 UTC
Read the original article Hit count: 336

Filed under:
|
|
|
|

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

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about mvc