Layout, scrollbar and regression ?

Hello,
I was very surprised to see the following example didn't produce the expected result :
<?xml version="1.0" encoding="utf-8"?>
<mx:Application
   xmlns:mx="http://www.adobe.com/2006/mxml"
   layout="absolute"
   >
      <mx:VBox x="200" width="50%" height="50%" backgroundColor="0xFF0000" >
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
         <mx:Label text="blabla" />
      </mx:VBox>
</mx:Application>
Here, I'm expecting the VBox to have a scrollBar since its contentPane is definately higher than what I'm trying to size it ( 50% height of a small browser window )
Yet, the scrollbar belongs to the Application.
The exact same example using Spark controls has no scrollbars at all.
What's happening ???

hi,
for my way of thinking it is working correctly, there are absolute co-ordinates in play so the vbox will create its minimium required coordinates and then size its bigger if the parent container is larger than twice the size of the boxes required minimium measurements.
<mx:VBox x="200" width="50%" height="{height/2}" backgroundColor="0xFF0000" >
now the vbox has its height bound to a dynamic setting and its scrollbars will appear if required.
David.

Similar Messages

  • Controlling scrollbars and container sizes

    We are having this exact problem. This is a pretty crazy
    problem. It seems like inner containers are not "pushing" the outer
    containers out far enough. The only resolution that I can find is
    to set a bunch of static sizes for containers, but then we lose the
    flexibility. Any ideas? The scrollbars are ridiculous cause they
    are constantly getting cut off by the browser or are there when
    they shouldn't be. Is there a better way for apps with multiple
    layers that are larger than the normal height of a screen?

    Thanks Jake,
    Reducing containers is surely a good thing. Unfortunately the
    application I'm working on is pretty large and at places there are
    easily between 5 and 10 nested containers. I'm not using
    AbsoluteLayout though and mostly a combination of HBox/VBox/Forms.
    One problem I ran into is with the use of HDividedBox, which
    when resizing caused its children to contain double scrollbars. The
    child would have a scrollbar and one of the child's children would
    have a scrollbar. If you get small enough then the parent also has
    a scrollbar. It ain't a pretty picture.
    Sofar I've found that HDividedBox has a problem with resizing
    a child component if that child is a container holding more
    components/containers. Its difficult to debug but my impression is
    that when the layout manager pass takes place, the child
    container's size hasn't been updated yet. As a result the deeper
    level is set larger than it should, causing an extra scrollbar.
    My workaround (bit hack) that helped somewhat is to catch the
    resize event in the HDividedBox child and set its minWidth to be
    the max of the measuredMinWidth of the child's children. This only
    affects how HDividedBox resizes its child, and isn't a general
    solution unfortunately.
    For those interested:
    eg:
    quote:
    function onResize(event:Event):void
    if ((child1 != null) && (child2 != null))
    this.minWidth = Math.max( child1.measuredMinWidth,
    child2.measuredMinWidth);

  • Urgent help needed!! Layout table and Draw layout cell dissapeared.

    I need some urgent help. I'm using CS3 but for a while my
    Layout Table and Draw Layout Cell icons appear greyed and can't use
    them at all. Is there any kind soul out there who knows how to fix
    this? I'm going nuts trying all the possible options but none seem
    to work.
    Help please!!!!!!

    > How would you about designing a page without using html?
    You don't. But I don't recall suggesting that you not use
    HTML. I just
    suggested that you use best-practice HTML, no? Or maybe you
    meant to ask
    how you would go about building your site without learning
    HTML? In that
    case, I think you are outta luck. Using DW without knowing
    HTML is a very
    punishing experience, I'm afraid.
    > PS: A virtual box of 12 bottles of Moet Chandon is
    already on your way!!
    I'd prefer Cristal, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Untersberg" <[email protected]> wrote in
    message
    news:g4tj9a$m5o$[email protected]..
    > Ahhhhhh!!!!! They came up!!!! They came up again!!
    > I was on standard mode. Now going back to your
    suggestion, which I really
    > appreciate. How would you about designing a page without
    using html? I'm
    > just
    > redesigning my website at the moment and need it to get
    going urgently,
    > hence
    > the reluctance to start learning HTML at the moment.
    I'll do after but I
    > need
    > to get this up and running fairly quickly.
    >
    > Cheers.
    >
    > PS: A virtual box of 12 bottles of Moet Chandon is
    already on your way!!
    >

  • To disable the horizontal scrollbar and to create a next button to navigate

    To disable the horizontal scrollbar and to create a next button to navigate through the records. At present I create a JSF page and drag and drop my table view and then using the Tuning property I have limited the number of records to be shown. But I need to add a button and then code it to display the next few records. Can someone kindly suggest a suitable mechanism to get this accomplished.
    Edited by: 888970 on Oct 2, 2011 10:15 PM

    Hi Erp,
    At present these are the entries that I have in my JSPX page.
    I have a Table, Iterator and a Input List of Values. As per the scenario, I want a few rows to appear on the table for which I wanted to disable the horizontal scroll bar and then once I click on the list of values it must prompt me with the remaining page numbers.
    Earlier there are about 150 records in the table. I want to show them as 15 per page.
    For which I have added the Iterator and a LOV component code in my JSPX page.
    <af:iterator id="i1"
    value="#{bindings.NsEventDetailsView1.collectionModel}"
    var="row"
    binding="#{pageFlowScope.testPageBean.myIterator}"/>
    <af:inputListOfValues label="Label 1"
    popupTitle="Search and Result Dialog" id="ilov1"/>
    Then I created the bean class as per the example.
    Below is the bean class:
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.rich.context.AdfFacesContext;
    import org.apache.myfaces.trinidad.component.UIXIterator;
    import org.apache.myfaces.trinidad.event.AttributeChangeEvent;
    public class TestPagebean {
    public TestPagebean() {
    public void i1ov1_valueChangeListener(ValueChangeEvent valueChangeEvent) {
    // Add event code here...
    private UIXIterator myiter;
    public void setI1(UIXIterator myiter) {
    this.myiter=myiter;
    public UIXIterator getmyiter() {
    this.myiter=myiter;
    public UIXIterator setmyiter() {
    return myiter;
    UIXIterator valueIterator = getmyiter();
    if (!valueChangeEvent.getNewValue().equals(valueChangeEvent.getOldValue())) {
    int newPage =
    Integer.parseInt(valueChangeEvent.getNewValue().toString());
    int pageStart = (newPage) * valueIterator.getRows();
    valueIterator.setFirst(pageStart);
    AdfFacesContext.getCurrentInstance().addPartialTarget(valueIterator);
    But i am getting errors in the bean class.
    1. Block expecting }
    2. public UIXIterator getmyiter() {
    this.myiter=myiter;
    Return Statement missing
    3. Block expecting {
    4. Type or variable 'valueChangeEvent' not found
    5. Method 'getNewValue' not found
    6. Method 'getOldValue' not found
    7. Method 'toString' not found
    Can you suggest a possible solution?

  • How to I get on to page 2 when my document stops at the page 1 layout line and won't go on to another page?

    How to I get on to page 2 when my document stops at the page 1 layout line and won't go on to another page?

    Sounds like you are using a Layout template. These you have to manually link from textbox to textbox.
    Try using a Word Processing template, it lists them in the sidebar of the Template Chooser.
    Peter

  • Unable to set columns under Layout Margins and Columns

    On certain pages in my 40 page document, I am unable to set the number of columns by using Layout>Margins and Columns. The columns option is dimmed out. I have tried to set them on a blank page and pages where columns were previously set (I can see the guides). I am using a single Master for page numbering and it is applied to every page in the document. There are pages where I can set the columns. I've done some page comparison and can't find the setting that might control this. Using InDesign CS6 on Windows. Thank you.

    Why are you not using multiple column text frames instead of 2 text frames with columns on the master page? This would give more flexiblity.

  • How to get the page layouts programmatically and create a page for that pagelayout

    how get the page layouts programmatically and create a page for that pagelayout and add webpart
    please help me with da code.Thanks
    adityadugyala

    Hi if your page layouts alreday created then create new page programaticaaly  and apply your page ayouts to that page by coding you can do something like following
    PublishingWeb publishingWeb =
    PublishingWeb.GetPublishingWeb(web);
    PageLayout[] layouts = publishingWeb.GetAvailablePageLayouts();
    PageLayout layout = layouts[0];
    string pageName =
    "MyPublishingPage5.aspx";
    PublishingPage newPage = publishingWeb.GetPublishingPages().Add(newFolder.Folder.ServerRelativeUrl +
    "/"+ pageName, layout); 
    newPageUrl = web.Url +"/" + newPage.Url;
    newPage.Description = "This my sample publishing page";
    newPage.Title = "My Publishing Page";
    newPage.Update();
    Please follow link
    http://blogs.msdn.com/b/sowmyancs/archive/2008/03/15/create-publishing-pages-in-portal-sites-programmatically.aspx
    Please mark answer , if you think answer is helpful or correct.

  • Adding Scrollbar and buttons to Dynamic Text

    Hello,
    I am trying to connect dynamic text to scrollbar and buttons. I did tutorial and Lynda.com and practically pasted the code in with my file names and for some reason it does not work. It says I have a "Access of Undefined Property mask_mc" Did I need to create a variable for this? I didn't in the tutorial.
    Right now I have the dynamic text loading successfuly in 2 different places and I wantd to add the scrollbar. I put the variables on frame 1 code and then I put the actually load code on the frame where it is needed.
    Any suggestions?
    Thanks! Sandra
    HERE IS CODE FOR FRAME 1:
    var textLoader:URLLoader = new URLLoader();
    var textReq:URLRequest;
    var scrollPercent:Number = 0;
    var minScroll:Number;
    var maxScroll:Number;
    var targetScroll:Number = philText_mc.y;
    var easing:Number = 5;
    var scrollAmt:Number = 15;
    var scrollDirection:Number = 0;
    HERE IS CODE FOR FRAME WHERE TEXT LOADS:
    textReq = new URLRequest("text_philosophy.txt");
    function philosophyTextLoaded(event:Event):void {
        philText_mc.philosophy_txt.text = textLoader.data;
        minScroll = philText_mc.y;
        maxScroll = minScroll - philText_mc.height + mask_mc.height;
    function dragScroller(event:MouseEvent):void
        var dragX:Number = line_mc.x - scroller_mc.width/2 + 1;
        var dragY:Number = line_mc.y;
        var dragW:Number = 0;
        var dragH:Number = line_mc.height - scroller_mc.height;
        scroller_mc.startDrag(false, new Rectangle(dragX,dragY,dragW,dragH));
        stage.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
        stage.addEventListener(Event.ENTER_FRAME, setScrollPercent);
        stage.removeEventListener(Event.ENTER_FRAME, scrollText);
    function stopDragging(event:MouseEvent):void
        scroller_mc.stopDrag();
    function setScrollPercent(event:Event):void
        scrollPercent = (scroller_mc.y - line_mc.y) / (line_mc.height - scroller_mc.height);
        if(scrollPercent < 0)
            scrollPercent = 0;
        else if(scrollPercent > 1)
            scrollPercent = 1;
        targetScroll = (scrollPercent * (maxScroll - minScroll)) + minScroll;
        philText_mc.y -= (philText_mc.y - targetScroll) / easing;
    function scrollUp(event:MouseEvent):void
        setDirection(scrollAmt);
    function scrollDown(event:MouseEvent):void
        setDirection(-scrollAmt);
    function setDirection(dir:Number):void
        scrollDirection = dir;
        stage.addEventListener(Event.ENTER_FRAME, scrollText);
        stage.addEventListener(MouseEvent.MOUSE_UP, stopScrolling);
        stage.removeEventListener(Event.ENTER_FRAME, setScrollPercent);
    function scrollText(event:Event):void
        targetScroll += scrollDirection;
        philText_mc.y -= (philText_mc.y - targetScroll) / easing;
        if(philText_mc.y > minScroll)
            philText_mc.y = minScroll;
            targetScroll = minScroll;
        else if(philText_mc.y < maxScroll)
            philText_mc.y = maxScroll;
            targetScroll = maxScroll;
        scrollPercent = (philText_mc.y - minScroll) / (maxScroll - minScroll);
        scroller_mc.y = (scrollPercent * (line_mc.height - scroller_mc.height)) + line_mc.y;
    function stopScrolling(event:MouseEvent):void
        scrollDirection = 0;
    textLoader.load(textReq);
    scroller_mc.buttonMode = true;
    philText_mc.external_txt.autoSize = TextFieldAutoSize.LEFT;
    scroller_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragScroller);
    textLoader.addEventListener(Event.COMPLETE, philosophyTextLoaded);
    up_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollUp);
    down_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollDown);

    Hello again,
    Maybe I am asking this question wrong. Instead of making you try and figure out what's going on in my file what I really need to know is how you would take this code I am attaching and make it happen on another frame besides frame 1 and it doesn't appear on frame 1. I think this may help me understand a little better.
    Also another way I was thinking to get around this would be to pull in an external swf into the spot where I want this text to go because I can make the scrollbars and external text work when it is the only thing going on in the movie. Would this be a bad way to set this up? and also SInce it is an external movie would I have maintimeline issues with mouse/scroller control?
    thanks! sandra
    Here is working code:
    var textLoader:URLLoader = new URLLoader();
    var textFile:URLRequest = new URLRequest("text/external.txt");
    var scrollPercent:Number = 0;
    var minScroll:Number;
    var maxScroll:Number;
    var targetScroll:Number = text_mc.y;
    var easing:Number = 5;
    var scrollAmt:Number = 15;
    var scrollDirection:Number = 0;
    function textLoaded(event:Event):void
        text_mc.external_txt.text = textLoader.data;
        minScroll = text_mc.y;
        maxScroll = minScroll - text_mc.height + mask_mc.height;
    function dragScroller(event:MouseEvent):void
        var dragX:Number = line_mc.x - scroller_mc.width/2 + 1;
        var dragY:Number = line_mc.y;
        var dragW:Number = 0;
        var dragH:Number = line_mc.height - scroller_mc.height;
        scroller_mc.startDrag(false, new Rectangle(dragX,dragY,dragW,dragH));
        stage.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
        stage.addEventListener(Event.ENTER_FRAME, setScrollPercent);
        stage.removeEventListener(Event.ENTER_FRAME, scrollText);
    function stopDragging(event:MouseEvent):void
        scroller_mc.stopDrag();
    function setScrollPercent(event:Event):void
        scrollPercent = (scroller_mc.y - line_mc.y) / (line_mc.height - scroller_mc.height);
        if(scrollPercent < 0)
            scrollPercent = 0;
        else if(scrollPercent > 1)
            scrollPercent = 1;
        targetScroll = (scrollPercent * (maxScroll - minScroll)) + minScroll;
        text_mc.y -= (text_mc.y - targetScroll) / easing;
    function scrollUp(event:MouseEvent):void
        setDirection(scrollAmt);
    function scrollDown(event:MouseEvent):void
        setDirection(-scrollAmt);
    function setDirection(dir:Number):void
        scrollDirection = dir;
        stage.addEventListener(Event.ENTER_FRAME, scrollText);
        stage.addEventListener(MouseEvent.MOUSE_UP, stopScrolling);
        stage.removeEventListener(Event.ENTER_FRAME, setScrollPercent);
    function scrollText(event:Event):void
        targetScroll += scrollDirection;
        text_mc.y -= (text_mc.y - targetScroll) / easing;
        if(text_mc.y > minScroll)
            text_mc.y = minScroll;
            targetScroll = minScroll;
        else if(text_mc.y < maxScroll)
            text_mc.y = maxScroll;
            targetScroll = maxScroll;
        scrollPercent = (text_mc.y - minScroll) / (maxScroll - minScroll);
        scroller_mc.y = (scrollPercent * (line_mc.height - scroller_mc.height)) + line_mc.y;
    function stopScrolling(event:MouseEvent):void
        scrollDirection = 0;
    textLoader.load(textFile);
    scroller_mc.buttonMode = true;
    text_mc.external_txt.autoSize = TextFieldAutoSize.LEFT;
    scroller_mc.addEventListener(MouseEvent.MOUSE_DOWN, dragScroller);
    textLoader.addEventListener(Event.COMPLETE, textLoaded);
    up_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollUp);
    down_btn.addEventListener(MouseEvent.MOUSE_DOWN, scrollDown);

  • How to do changes in Layouts setting and SAP scripts to meet requirment?

    hi SD gurus,
    Please explain me how create and work with Z output .
    where and how we do changes in Layouts setting and SAP scripts to meet the user requirments.
    pls forward func spec of Z output
    points will be rewarded
    thanx & regards

    you need ABAP skills to do this.
    basically you need:
    1) draw the layout on a piece of paper
    2) define the fields you need and find out the corresponding SAP fields
    3) check the document with the customer
    4) give this specification to the developer
    5) the developer will give you a program name and form name: place them in the message for the document.
    Roberto

  • Report Designer - Layout height and width

    Hi Experts,
    Is there an option to adjust the report designer layout height and width? I am able to adjust the individual row and column height. I have a report designed in report designer which will have only 5 rows. when I execute this web template the report item is displayed in one entire page instead of only 5 rows.
    How can I control/adjust the page size in report designer? Is this possible?
    Thanks,
    Gnana

    Gnana,
    are you starting the report from the portal directly, or do you have it embedded into a web template?  As the Report is a web item, you can set the size of the item.
    At first I was considering posting the reports directly to the portal, but there are some things that I don't like with how it handles them - for example if you have a report based on the query view, when you post it directly to the portal it will execute it with the saved variable values before you can change them.  Thus, I have to put it into a web template and set to prompt for variables at the beginning.
    Thanks

  • [svn:fx-trunk] 9314: Merge layout, graphics, and fxg tests into BasicTests.

    Revision: 9314
    Author:   [email protected]
    Date:     2009-08-14 12:00:24 -0700 (Fri, 14 Aug 2009)
    Log Message:
    Merge layout, graphics, and fxg tests into BasicTests.
    Add more tests from spark tests into BasicTests.
    Modified Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/ListAndDataGridTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/ScrollBarTestScript.mxml
        flex/sdk/trunk/mustella/mustella.swc
    Added Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/scripts/
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/scripts/FXGCompileTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/FXGCompileTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/bg01.fxg
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/GraphicsTagsTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/GraphicsTagsTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/EllipseBasic2.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/RectBasic3.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/TextGraphicBasic1.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/DeferredInstantiationTestScript. mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/LayoutTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/views/DeferredInstantiationTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/views/LayoutTests.mxml

  • Remove Navigation panel header  scrollbar and Design Bar

    Hi guys,
    I need your help. I want to remove the Navigation panel header  scrollbars and Design Bar from the Navigation Panel.
    Please how can I do that.
    Looking forward for your response.
    Dakata A. Ibrahim

    Hi Abdu,
    You can change them from the Theme editor under System Administration-> Portal Display. Edit the required theme .
    You can change the height and width of the scroll bar images to 0px. Similarly for the design bar also you could do that else you can make the url to design bar to some blank image that coincides with your background color.
    Hope this helps,
    Regards,
    Uma.

  • TThere are now two keyboard layouts" software and hardware" keyboard layout. Why does hardware one a

    Under Settings'/general/keyboards, There are now two keyboard layouts" software and hardware" keyboard layout.  I can easily just pic US in the software one, but the hardware one has three style choices of only arabic keyboards and it requires me to pick one.  So I still get arabic when I hit the globe.  If anyone knows how to solve this one (get rid of it!) i will respect u forever.
    On this discussion board i always hear, go to settings  keyboard and change to US. As explained above, that does not solve the problem, nor many other users I read on here have the same issue as I do.  VERY ANNOYING.

    You are might knight in shining armor.  If u road on,a white steed with a glass of grand marnier I'd marry u! Lol. Oh yea. Im already married to one. Seriously thanks dude, u have no idea how much this has driven me nuts that i couldn't even see an edit button?  Thanxs again!
    Lisa

  • Template layout strategy and meta tags

    Hello folks,
    Just wanted to start a discussion on different Template
    layout strategy and meta tags.
    When you put tother a template in DW, do you include the meta
    tags as part of the template OR
    do you insert the meta tags later in the individual pages
    created with the template?
    Cheers!

    Each page would need its own meta description. You can omit
    meta keywords
    altogether since they are mostly ignored except in special
    circumstances.
    When they are read, any impact would be almost insignificant,
    anyhow.
    So - that would suggest adding the meta description to the
    individual child
    pages.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "billhdz" <[email protected]> wrote in
    message
    news:gmaejh$fh$[email protected]..
    > Hello folks,
    >
    > Just wanted to start a discussion on different Template
    layout strategy
    > and
    > meta tags.
    >
    > When you put tother a template in DW, do you include the
    meta tags as part
    > of
    > the template OR
    > do you insert the meta tags later in the individual
    pages created with the
    > template?
    >
    > Cheers!
    >
    >
    >

  • Any free library for graph layout (vertexes and edges)?

    Does anybody know any free library for graph layout (vertexes and edges)?
    I would like to create applet which:
    1) will read definition of graph - for example like the list of edges
    (vertex11-vertex12; verte21-vertex22; ...; vertexN1-vertexN2)
    2) will generate layout of it (like Circle, Sugiyama, Radial Tree, Tree etc.);
    3) will listen to user which will touch of some vertex and it can:
    3.1) display some information about itself;
    3.2) expand itself (that is: it will show-display all its neighbours-vertexes) or
    collaps itself (that is: it will hide all (all almost all) its neighbours-vertexes.
    I do not want to create the whole Java code for layout algorithms:
    I would like to use some pretty Java library. That is library which has:
    1) methods for defining the topological structure of graph
    (that is the list of vertexec and edges between them);
    2) methods for drawing - visualising of it (like tree, radial tree, circle, etc.).
    I have tried many libraries but I can not such library which:
    - is free (so yFiles no);
    - is small and compact (like TouchGraph);
    - works with JDK 1.3.1, no higher (so Jung no);
    - has a nice API (so JGraph no);
    - is alive (so TouchGraph no - it ihas 2 ywars old its last update);
    - works correctly (not like JGraph - JGraphAddons:
    it has 8 layout algorithms, but most of them does not work).
    Has anybody any tips?
    Thank you very much in advance.
    Mirek

    Hi Owen,
    I promiss I will notice, if I wil find some suit free library. But I think my requirements are not so high. For example there are some tips:
    1) TouchGraph: it is VERY small and compact (that: it has no other dependences), but it has 2 years old update - so it writes to console window information about "obsolete" code when I run its applet; and it has no live forum; but I like its API, but it has some bugs!
    2) JGraph has nice layouts (but they do not work all) and very unpleasent methods for defining of topological structure of graph (vertexes and edges between them). But there is indipendent library JGraphT, which can cooperate with JGraph, and it has very nice API for defining the graph from the topological (not visual) point of view (addVertex, addEdge etc.). But JGraphT is not updated so often like JGraph and therefore there is problems with its colaborate with it. And also have bugs, like JGraph.
    3) Yesterady I have found next library: JGraphOpen - it has many examples (for visualising of graphs and for standard tasks for graph theory (the shortest way etc.) but it is also (like TouchGraph) 2 years old and is not so small like it.
    So has anybody any idea? I would like to find some other free libraries or some tips how to force to cooperative JGraph + JGraphT.
    Thanks
    Mirek

Maybe you are looking for

  • Individual Payments to vendors

    Hi Experts Is there a report which will list individual payments to each vendor and credits. This includes every single payment made invoices, direct debit payements etc. I need the values to be net and be able to search by period, cost centre, gener

  • How to use JDI handle event, need you help!~

    Hi, In our recent project, I need listen some event such as ClassPrepareEvent, MethodEntryEvent using JDI and handle it. I am trying to mend the TTY and let it do something simple when MethodEntryEvent occur. I just add a print line in the method met

  • Contribute & the webdesigner's clients

    Hi here is my question , i am a web designer, i am creating a website "Aqua" for my client "Bob" in Dreamweaver, I create editable regions , templates etc... in Contribute i create a Bob user password, a contribute key access etc... to allow Bob to e

  • Files to large

    I searched through daisy disc and found out that most of my HD films are around 8-9-10 GB each. On the description on Itunes they are ment to be around the 4GB mark. Can i make these smaller or can i delete part of the file. I have had a look in the

  • Problems sharing from iPhoto

    I have been having lots of issues with iphoto lately, but one that I can at least easily explain relates to sharing photos.  I select 5 photos to share, choose to share by email and when the next box opens where I can choose what layout I would like