Lines Matching refs:txt
28 $txt = "";
29 $txt .= '<applet code="'.$code.'"'.
36 return $txt;
50 $txt = "";
54 $txt .= '<object classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000"';
55 $txt .= ' width="'.$width.'"';
56 $txt .= ' height="'.$height.'"';
57 $txt .= ' id="'.$bname.'"';
58 … $txt .= ' codebase="http://active.macromedia.com/flash9/cabs/swflash.cab#version=9,0,28,0">';
59 $txt .= ' <param name="movie" value="'.$archive.'" />';
60 $txt .= ' <param name="allowScriptAccess" value="always" />';
61 $txt .= ' <param name="allowNetworking" value="all" />';
62 $txt .= ' <param name="allowFullScreen" value="'.$allowFullScreen.'" />';
63 $txt .= ' <param name="FlashVars" value="'.$flashVars.'" />';
65 $txt .= '<embed src="'.$archive.'" ';
66 $txt .= ' type="application/x-shockwave-flash" ';
67 $txt .= ' width="'.$width.'" ';
68 $txt .= ' height="'.$height.'" ';
69 $txt .= ' allowFullScreen="'.$allowFullScreen.'" ';
70 $txt .= ' bgcolor="'.$bgColor.'"';
71 $txt .= ' allowScriptAccess="always"';
72 $txt .= ' allowNetworking="all"';
73 $txt .= ' allowFullScreen="true"';
74 $txt .= ' name="'.$bname.'"';
76 …$txt .= ' pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=Shoc…
77 $txt .= ' flashVars="'.$flashVars.'"';
78 $txt .= '>';
79 $txt .= '</embed>';
82 $txt .= '</object>';
84 return $txt;