[CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

Page 1 of 2 12 LastLast
  1. #1

    [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,


    Could you tell me please if I can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?




  2. #2

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,

    I am not sure that clear understood you. Please provide more details (mockup images)
  3. #3

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,

    We have a panel with a flash control with spesific size, we need the user to be able to see the animation as bigger he wants.


    
    
    
    
    <ext:Panel ID="panelPortalAnimation" 
    
    
    runat="server" 
    
    
    Width="700px" 
    
    
    Border="false"
    
    
    BodyCssClass="PanelPortalAnimation" 
    
    
    meta:resourcekey="Panel3Resource1" 
    
    
    >
    
    
    <Content>
    
    
    <ext:Panel runat="server" Width="681px" Height="415px"
    
    
    Cls="panelPortalBrowseAnimation">
    
    
    <Items>
    
    
    <ext:FlashComponent 
    
    
    ID="portalAnimationBrowse" 
    
    
    runat="server" 
    
    
    Height="415px" 
    
    
    Width="681px" 
    
    
    meta:resourcekey="portalAnimationResource1">
    
    
    <FlashParams> 
    
    
    <ext:Parameter Name="wmode" Value="transparent" /> 
    
    
    <ext:Parameter name="quality" value="high" /> 
    
    
    <ext:Parameter name="swfversion" value="6.0.65.0" /> 
    
    
    <ext:Parameter name="expressinstall" value="Scripts/expressInstall.swf" /> 
    
    
    </FlashParams> 
    
    
    </ext:FlashComponent> 
    
    
    </Items>
    
    
    </ext:Panel>
    
    
    </Content>
    
    
    </ext:Panel>
  4. #4

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,

    Use Resizable control. Please see the following sample
    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <!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>FlashComponent - Ext.NET Examples</title>
        <link href="../../../../resources/css/examples.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
                <ext:FlashComponent ID="VideoPlayer" runat="server" 
                Width="300" 
                Height="300" 
                Url="http://vimeo.com/moogaloop.swf?clip_id=3911557&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1&amp;js_api=1">
                <FlashParams>
                    <ext:Parameter Name="allowfullscreen" Value="true" Mode="Raw" />
                </FlashParams>
            </ext:FlashComponent>
            
            <ext:Resizable runat="server" Element="={#{VideoPlayer}.el}" Wrap="true">
            </ext:Resizable>
        </form>
    </body>
    </html>
  5. #5

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,

    I am trying to use the resizable control using Panel - Items instead of Content. But it is not posible to use the resizable control inside of Panel - Items.

    The reason I do not want to use Content is because the animation is showed behind the tab intead of the place where is the panel that I am using to show the animation.

    It is a little hard to explain, but if I use Items I do not have this problem. But I can not use the Items because it dos not include the resize control in the intelligence list.



    
    
    
    
    <Center>
    
    
    <ext:Panel ID="panelPortalAnimation" 
    
    
    runat="server" 
    
    
    Width="700px" 
    
    
    Border="false"
    
    
    BodyCssClass="PanelPortalAnimation" 
    
    
    meta:resourcekey="Panel3Resource1" 
    
    
    >
    
    
    <Items>
    
    
    <ext:Panel runat="server" Width="681px" Height="415px"
    
    
    Cls="panelPortalBrowseAnimation">
    
    
    <Items>
    
    
    <ext:FlashComponent 
    
    
    ID="portalAnimationBrowse" 
    
    
    runat="server" 
    
    
    Height="415px" 
    
    
    Width="681px" 
    
    
    meta:resourcekey="portalAnimationResource1">
    
    
    <FlashParams> 
    
    
    <ext:Parameter Name="wmode" Value="transparent" /> 
    
    
    <ext:Parameter name="quality" value="high" /> 
    
    
    <ext:Parameter name="swfversion" value="6.0.65.0" /> 
    
    
    <ext:Parameter name="expressinstall" value="Scripts/expressInstall.swf" /> 
    
    
    </FlashParams> 
    
    
    </ext:FlashComponent> 
    
    
    <ext:Resizable ID="Resizable1" runat="server" Element="={#{portalAnimationBrowse}.el}" Wrap="true"> 
    
    
    </ext:Resizable>
    
    
    </Items>
    
    
    </ext:Panel>
    
    
    </Items>
    
    
    </ext:Panel>
    
    
    </Center>
    
    
    </ext:BorderLayout>
  6. #6

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,

    Can you create test sample which reproduces the Content issue?
  7. #7

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,

    I am attaching a .zip file including a .net project where you can see how the animation is showed at the bottom instead of inside of the panel with the resizable control to the right side.






  8. #8

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Please do not attach .dll's

    Geoffrey McGill
    Founder
  9. #9

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,

    I apologize for the dlls, I will not do that in the next attachments.

    I am wondering if you were able to see the problem.

    Also I am wondering why I can not use the resizable control on Panel - Items. I can only
    use it for Panel - Content.

    When I use Panel - Items instead Panel Content without the resizable control the animation it is showed in the right position.



  10. #10

    RE: [CLOSED] Can I use a control to optionally allow the user to make the viewing panel larger (by hiding/collapsing the left hand panel) to make .swf display a bit larger?

    Hi,
    Can you repost the attachment without dlls?
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 4
    Last Post: Nov 09, 2011, 4:58 AM
  2. [CLOSED] Larger Icons
    By garrisrd in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Oct 13, 2010, 3:03 PM
  3. [CLOSED] How to make web user control (ascx) appear as an ext control
    By jmcantrell in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 11, 2010, 9:23 AM
  4. Replies: 2
    Last Post: Apr 23, 2009, 5:49 PM
  5. Make Panel Render HTML
    By jarremw in forum 1.x Help
    Replies: 2
    Last Post: Feb 16, 2009, 6:55 PM

Posting Permissions