Yann Le Bihan

Members
  • Content count

    2
  • Joined

  • Last visited

About Yann Le Bihan

  • Rank
    Forum Newbie
  1. XHTML 1.1 compatibility

    I have found the answer by myself: <object width="830" height="300" type="application/x-shockwave-flash" data="fusioncharts/StackedColumn2D.swf" > <param name="quality" value="high" /> <param name="flashVars" value="..." /> <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer" /> </object>
  2. XHTML 1.1 compatibility

    Is there a way to have an xhtml 1.1 compatible code which works with Firefox? In other words, a way to use the charts with the object tag instead of embed tag. I have tried : <object width="900" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" > <param name="movie" value="../fusioncharts/Column3D.swf" /> <param name="quality" value="high" /> <param name="flashVars" value="..." /> </object> But it doesn't work. Any idea?