Addy yaddly

Addy yaddly

  • NA
  • 5
  • 33.3k

Webcam Using Flash

Jan 2 2014 12:00 PM
Good day Developers, I followed Neha Sharma's post regarding Webcam using Flash, Her sample code works fine but when I try to modify it a bit it doesn't work. I want to add this code to a Web User Control, and then add this Web User Control to a Web Page. Below is the sample code:
 
<asp:Panel ID="RegistrationPanel" runat="server" height="765px" Width="370px" BorderStyle="Groove" Visible="False">
<div class="form-group" runat="server">
<object style="height: 200px; width: 370px">
<param name="movie" value="WebcamResources/save_picture.swf"/>
<img src="WebcamResources/save_picture.swf" width="350" height="150" alt=""/>
</object>
</div>
&nbsp;
<br />
 This is not working, the Flash Object is added but it does not request permission to access and use the webcam, the page is just blank nothing is happening. I need help please.