Rank: Member Groups: Member
Joined: 7/6/2010 Posts: 11 Points: 33 Location: Vancouver
|
Hello Sirs,
I ordered your products in May 2010.
I have been going crazy trying to figure out something and got into a situation that I totally gave up on. I would love to still make use of your component but canât figure out the following:
-I am implementing a page with a transparent talking face on the bottom right sitting on top of the page content. -Technically speaking, I am adding a transparent video with the always visible extender set up on the bottom right -The first time I run it, it works well but if I would refresh the page, I get a weird scroll overflow problem that happens only with firefox.
It looks like the video goes beyond the height of the page and thereâs no scrolling down left to watch it. The only workaround is minimizing the page or extending the windows width, and immediately the always visible extender control positions the video again on the bottom right.
Please find attached a simple code example of what I am trying to accomplish:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="Default2" %>
<%@ Register Assembly="ASPNetFlashVideo.NET3" Namespace="ASPNetFlashVideo" TagPrefix="ASPNetFlashVideo" %>
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" > </asp:ScriptManager>
<div> adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br /> adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br /> adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br /> adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br /> adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br /> adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />adfdsdsadsfds<br />
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Always"> <ContentTemplate> <ASPNetFlashVideo:FlashVideo ID="FlashVideo1" runat="server" AutoPlay="true" VideoURL="Images/whatisabusinessplan.flv" Height="360" ScaleMode="StretchToFit" ShowControlPanel="False" Width="640" WindowMode="Transparent" AllowFullScreen="False" BorderWidth="4" BorderColor="Maroon" Enabled="true" Alignment="Right"></ASPNetFlashVideo:FlashVideo> <asp:AlwaysVisibleControlExtender ID="FlashVideo1_AlwaysVisibleControlExtender" runat="server" Enabled="True" TargetControlID="FlashVideo1" HorizontalSide="Right" VerticalSide="Bottom" > </asp:AlwaysVisibleControlExtender>
</ContentTemplate> </asp:UpdatePanel>
</div> </form> </body> </html>
Any help on this regards will be HIGHLY APPRECIATED!!!!
Thanks
|
Rank: Administration Groups: Administration
Joined: 7/26/2007 Posts: 676 Points: 1,728 Location: USA
|
Hi Thats just down to your almost visible control. However - just use CSS. myalwasvsibleclass{ position:fixed; z-index:10000; right:0px; bottom:0px; } http://www.aspnetmedia.com
|