Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Rotator > displaying swf files in RadRotator control..
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Answered displaying swf files in RadRotator control..

Feed from this thread
  • Posted on Oct 14, 2010 (permalink)

    hi,

    is it possible to show swf flash files in ItemTemplate of the RadRotator control ?

    suppose that we have three swf files ( a.swf , b.swf , c.swf ), how can i show these as seperate items on radrotator

    i've found some old post as follows:
    http://www.telerik.com/community/forums/aspnet/rotator/problem-while-showing-flash-files.aspx

    but current RadRotator has not <FrameTemplate> element..

    any suggestion ?

  • Posted on Oct 14, 2010 (permalink)

    ok, here is the answer ;

     

    <telerik:RadRotator ID="RadRotator1" runat="server" 
        ScrollDuration="500" RotatorType="SlideShowButtons">
        <Items>
            <telerik:RadRotatorItem>
                <ItemTemplate>
                    <div>
                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0">
                    <param name="movie" value="a.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#FFFFFF" />
                    <param name="wmode" value="transparent" />
                    <embed src='a.swf' quality="high" bgcolor="#FFFFFF"
                    type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
                    wmode="transparent"></embed>
                    </object>
                    </div>
                </ItemTemplate>
            </telerik:RadRotatorItem 
            <telerik:RadRotatorItem>
                <ItemTemplate>
                    <div>
                    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0">
                    <param name="movie" value="b.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#FFFFFF" />
                    <param name="wmode" value="transparent" />
                    <embed src='b.swf' quality="high" bgcolor="#FFFFFF"
                    type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
                    wmode="transparent"></embed>
                    </object>
                    </div>
                </ItemTemplate>
            </telerik:RadRotatorItem>
        </Items>
    </telerik:RadRotator>

     

     

  • Answer Fiko Fiko avatar

    Posted on Oct 19, 2010 (permalink)

    Hello Adam,

    In addition, I recommend you to check the solution provided in this online demo as well.

    Regards,
    Fiko
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Rotator > displaying swf files in RadRotator control..