Core front-end code:
Code
<Script type = "text/javascript">
Var focus_width = 253
Var focus_height = 164
Var text_height = 20
Var swf_height = focus_height + text_height
Var pics = <% = pics %>;
Var links = <% = links %>;
Var texts = <% = texts %>;
Document. write ('<object classid = "clsid: d27cdb6e-ae6d-11cf-96b8-444553540000" codebase = "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width = "' + focus_width + '" height = "' + swf_height + '"> ');
Document. write ('<param name = "allowScriptaccess" value = "sameDomain"> <param name = "wmode" value = "transparent"> <param name = "movie" value = "1 /pixviewer.swf "> <param name =" quality "value =" high "> <param name =" bgcolor "value = # ffffff> ');
Document. write ('<param name = "menu" value = "false"> <param name = wmode value = "opaque"> ');
Document. write ('<param name = "FlashVars" value = "pics =' + pics + '& links =' + links + '& texts =' + texts + '& borderwidth =' + focus_width + '& borderheight =' + focus_height + '& textheight =' + text_height + '"> ');
Document. write ('<embed src = "1/pixviewer.swf" wmode = "opaque" FlashVars = "pics =' + pics + '& links =' + links + '& texts =' + texts + '& borderwidth =' + focus_width + '& borderheight =' + focus_height + '& textheight =' + text_height + '"menu =" false "bgcolor = # ffffff quality =" high "width =" '+ focus_width +' "height =" '+ swf_height +' "allowScriptaccess =" sameDomain "type =" application/x-shockwave-flash "pluginspage =" http://www.macromedia.com/go/getflashplayer "/> ');
Document. write ('</object> ');
</Script>
Core background code:
Code
Public string pics = "''";
Public string links = "''";
Public string texts = "''";
Protected void Page_Load (object sender, EventArgs e)
{
Pics = "'1/01.jpg '" + "+' | '+" + "'1/01.jpg'" + "+ '|' +" + "'1/01.jpg' ";
Links = "'img. aspx '"+" +' | '+ "+" '1/4.jpg' "+" + '|' + "+" '1/2.jpg '"+" +' | '+ "+" '1/3.jpg '";
Texts = "'title'" + "+ '|' +" + "'1/4.jpg '" + "+' | '+" + "'1/2.jpg'" + "+ '|' +" + "'1/3.jpg '";
}
TIPS:
1. The image must be in jpg format.
2. If the front-end pics, links, and texts variables are NULL, an error is returned. Normal phenomenon. Fill in the information in the solution.