OK, Thanks for the post. This appears to be similiar to the Flash
Control. The problem I am having is how to assign an flv movie to this
control. The generic HTML code for this is:

<div style="width:690; height:520">
        <div id="MissionBeachVolleyballPlayer" style="font-weight: bold; font-
size: 14px; padding-bottom: 0px; padding-top: 0px">
                <p id='MissionBeachVolleyball'>You need to install Flash 9!</p>
                <script type='text/javascript' src='swfobject.js'></script>
                <script type="text/javascript">
                var s1 = new SWFObject
('player_01.swf','player','690','520','9','FFCCFF');
                s1.addParam('allowscriptaccess','always');
                s1.addParam('allowfullscreen','true');
                s1.addParam('streamer','lighttpd');
                s1.addParam('flashvars','file=FLV_01.flv');
                s1.write('MissionBeachVolleyball');
                </script>
        </div>
</div>


I can't figure out hot to set the flv movie to the .net object. This
does not work:

<arj:SWFObject ID="Flash1" Height="600" Width="600" runat="server"
FlashUrl="player_01.swf" AlternateContent="Calendar Goes Here" />

    protected void Page_Load(object sender, EventArgs e)
    {
                Flash1.FlashVars.Add("allowscriptaccess","always");
                Flash1.FlashVars.Add("allowfullscreen","true");
                Flash1.FlashVars.Add("streamer", "lighttpd");
                Flash1.FlashVars.Add("flashvars", "file=FLV_01.flv");
    }


Any ideas???


On Feb 9, 12:30 pm, "Getify Solutions, Inc." <[email protected]> wrote:
> Have you tried:  http://www.arjones.net/opensource/swfobject.net/
>
> --Kyle
>
> --------------------------------------------------
> From: "Jimsurf" <[email protected]>
> Sent: Monday, February 09, 2009 2:07 PM
> To: "SWFObject" <[email protected]>
> Subject: hating swfobject with Ajax
>
>
>
>
>
> > I have a site that uses ajax and a drop down to display videos. I have
> > not found a single code sample of a working example of using register
> > startup or client script that shows how to do this in the code behind
> > of an asp.net application that uses ajax. Has anybody been able to
> > accomplish this? Does the swfobject site contain asp.net code samples?
>
> > I got some info from somebody else on using the Flash Control for
> > ASP.Net, but I have not been able to figure out how to use it with swf
> > object.
>
> > I need a solution for displaying flv files on my site within an swf
> > player.
>
> > The only successful solution I have been able to come up with is an
> > iframe, but that is such a kluge of a solution.- Hide quoted text -
>
> - Show quoted text -
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"SWFObject" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/swfobject?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to