CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Plz hel me

  1. #1
    Join Date
    Aug 2008
    Posts
    1

    Plz hel me

    hi every one.

    I wana create a activex control for flash player.
    and want to add that activex control into our web based application ( asp.net).
    my concern is that can this is possible.

    i have recently create a window control library for shockwave & want to add that into our project but that swf is not show.plz help me

  2. #2
    Join Date
    Jul 2008
    Posts
    21

    Re: Plz hel me

    Hi you can do so. I think you are using the flv shockwave player. For that you can add <div> tag in your aspx page and provide it an id and make it run at server, say, <div id="showvideo" runat="server"></div>. In the aspx.cs file you can write the following code inside an event method:
    showvideo.innerhtml="<object type="application/x-shockwave-flash" data="player_flv_multi.swf" width="320" height="240">
    <param name="movie" value="player_flv_multi.swf" />
    <param name="FlashVars" value="flv=test.flv|test2.flv" />
    </object>";
    for setting the details of the data you refer the following link:

    http://flv-player.net/players/multi/documentation/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured