main scroll bar for nested frames

I want to stack several documents vertically, each in a different setting under a framework of the top menu bar. However, I can't figure out how to make dreamweaver give me a scroll bar unique for all the images of the underside of the menu bar. Is it impossible? (I don't have scroll bars on individual images?)

You can't do what you want to do with frames.  So, what's your plan B?

Tags: Dreamweaver

Similar Questions

  • Can I add a scroll bar to a frame?

    I designed my first Web site using Dreamweaver, www.dancecampeast.org and some users have said that they cannot access all the items on the left frame, which is used in the navigation bar. I guess it's because their browser windows are too small, that is to say that they are viewing on a small screen or with large text. I want to add a scroll bar on the frame to allow access to items lower on the list, how can I do? Any advice gratefully received, just don't get too complex!

    If you have just started creating Web sites and chose to use images, I'm sorry to tell you that you started opposite. Frames were widespread in the mid-1990s, but are now considered as a very poor to build Web sites. So poor that frames are removed from the next version of HTML.

    Having broken the bad news for you, you still need a way to solve your problem while deciding how to redesign your website...

    In Dreamweaver, open the Panel frames (window > frames). Select the left image in the Panel to view the properties of the image in the property inspector. Change the value of No on Auto scrolling. Save frameset and upload it to your site.

    To learn more about why you made the wrong choice with images, take a look at the following explanation: http://apptools.com/rants/framesevil.php.

  • Horizontal scroll bar for JComboBox through multiple aspect

    From [http://www.coderanch.com/t/432788/GUI/java/JComboBox-horizontall-scroll-bar] and [http://forums.sun.com/thread.jspa?threadID=5369365], I know that the technique to have a horizontal scroll bar for JComboBox.

    However, their proposed solution are limited to the Look n Feel specific.

    As you can see, the below excerpt key code is malfunctioning, if users are Linux machine with GTK + look n feel, or machine Windows with Nimbus look n feel.

    How can I have a portable way to JComboBox able to have a horizontal scroll bar?

    The complete source code is [http://jstock.cvs.sourceforge.net/viewvc/jstock/jstock/src/org/yccheok/jstock/gui/AutoCompleteJComboBox.java?revision=1.16 & view = markup]

    The key code snippet are as follows:

    package org.yccheok.jstock.gui;
    
    public class AutoCompleteJComboBox extends JComboBox {
    
       @Override
        public void setUI(ComboBoxUI ui)
        {
            if (ui != null)
            {
                // Let's try our own customized UI.
                Class c = ui.getClass();
                final String myClass = "org.yccheok.jstock.gui.AutoCompleteJComboBox$My" + c.getSimpleName();
    
                try {
                    ComboBoxUI myUI = (ComboBoxUI) Class.forName(myClass).newInstance();
                    super.setUI(myUI);
                    return;
                } catch (ClassNotFoundException ex) {
                    log.error(null, ex);
                } catch (InstantiationException ex) {
                    log.error(null, ex);
                } catch (IllegalAccessException ex) {
                    log.error(null, ex);
                }
            }
    
            // Either null, or we fail to use our own customized UI.
            // Fall back to default.
            super.setUI(ui);
        }
    
        // This is a non-portable method to make combo box horizontal scroll bar.
        // Whenever there is a new look-n-feel, we need to manually provide the ComboBoxUI.
        // Any idea on how to make this portable?
        //
        protected static class MyWindowsComboBoxUI extends com.sun.java.swing.plaf.windows.WindowsComboBoxUI
        {
            @Override
            protected ComboPopup createPopup()
            {
                return new MyComboPopup(comboBox);
            }
        }
    
        protected static class MyMotifComboBoxUI extends com.sun.java.swing.plaf.motif.MotifComboBoxUI
        {
            @Override
            protected ComboPopup createPopup()
            {
                return new MyComboPopup(comboBox);
            }
        }
    
        protected static class MyMetalComboBoxUI extends javax.swing.plaf.metal.MetalComboBoxUI
        {
            @Override
            protected ComboPopup createPopup()
            {
                return new MyComboPopup(comboBox);
            }
        }
    
        private static class MyComboPopup extends BasicComboPopup
        {
            public MyComboPopup(JComboBox combo)
            {
                super(combo);
            }
    
            @Override
            public JScrollPane createScroller()
            {
                return new JScrollPane(list,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
                        JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
            }
        }
    }
    Published by: 803903 on October 20, 2010 18:03

    Darryl Burke wrote:
    Purists will tell you that such things should not be done in a renderer

    not too purist - but there are thingies you MUST NOT spread like that pollutes community knowledge ;-)

    There is an official way (read: code of the heart itself does swing combo) to access the pop-up window and then do what you must

        private void adjustScrollBar(JComboBox box) {
            if (box.getItemCount() == 0) return;
            Object comp = box.getUI().getAccessibleChild(box, 0);
            if (!(comp instanceof JPopupMenu)) {
                return;
            }
            JPopupMenu popup = (JPopupMenu) comp;
            JScrollPane scrollPane = (JScrollPane) popup.getComponent(0);
            scrollPane.setHorizontalScrollBar(new JScrollBar(JScrollBar.HORIZONTAL));
            scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        }
        
    

    Simply assign the scroll bar will work at any time after the creation of the drop-down list (BTW: assigning the horizontalScrollBar null got really... didn't even know it is valid). If you want to resize the drop-down list, you will need to do it in a popupMenuListener willBecomeVisible: at this time, all internal components are ready for touch-ups. Just for fun, set up the drop-down list to adapt to the requirements of the size of a JXTable used as a rendering component:

        private void adjustPopupWidth(JComboBox box) {
            if (box.getItemCount() == 0) return;
            Object comp = box.getUI().getAccessibleChild(box, 0);
            if (!(comp instanceof JPopupMenu)) {
                return;
            }
            JPopupMenu popup = (JPopupMenu) comp;
            JScrollPane scrollPane = (JScrollPane) popup.getComponent(0);
            Object value = box.getItemAt(0);
            Component rendererComp = box.getRenderer().getListCellRendererComponent(null, value, 0, false, false);
            if (rendererComp instanceof JXTable) {
                scrollPane.setColumnHeaderView(((JTable) rendererComp).getTableHeader());
            }
            Dimension prefSize = rendererComp.getPreferredSize();
            Dimension size = scrollPane.getPreferredSize();
            size.width = Math.max(size.width, prefSize.width);
            scrollPane.setPreferredSize(size);
            scrollPane.setMaximumSize(size);
            scrollPane.revalidate();
        }
        
    

    and Yes, this is the example for setXXSize. But then, it isn't but application code a code 'in-house framework.

    See you soon... and the real work
    Jeanette

  • scroll bar for control in the movie frames

    How to create a scroll bar that allows the user to move between 20 consecutive images in the film. (Each image contains a different sprite)?

    OK I will try this funny code window thing, you do not see the validation code in your message.
    It's a kind of WYSINWYG

  • scroll bar for a waveform graph

    Hi, I am the visible scroll bar in the front, but it's still gray out as shown below. How can I fix? Thank you!

    Your property in the history of the ranking may be too small to display data more than that.  Try to set the X axis scale so that it shows only 1 minute of data and your scroll bar will probably work.  If you need more history right click on the chart and select chart length story...  Change that to a much larger number.  The number is the number of data points it will buffer.  Its default value is 1024, which is quite small for most uses.

  • scroll bar for both tables of different size

    Hello world

    I am applying for thermocouples. Application is working otherwise fine, but I can't make two tables of different size scrolls with a scroll bar. I've attached a picture to make it a little easier to understand. In the photo you can see that there are two tables. Superior is 1 d including channel names. Below is a table with time and the measured temperatures. Vertical scrolling works very well that only the lower table must be the object of a scroll. But if I want to scroll horizontally, I also need to scroll the top table so that the channel names and measured temperatures would correspond. This is the problem that I have not been able to solve. The lower table can 'constantly' update (vertically) because the measure may be underway. I tried to use nodes property tables below top table of controls (IndexValues). I found many many solutions that work with the same dimension tables, but I couldn't manage so that they work with my application. Anyone have any ideas? I use LV 8.6

    Thank you

    Mika

    Also consider using a Table, where the built-in column heading allows to scroll the data, and it is the only control header & data.

  • How to create a horizontal scroll bar for interactive report region?

    Hello

    I use APEX 4.2.5.00.08 and created interactive reports that contain many columns. However when viewing the results of the report, due to the large number of columns report/table data is outside of the region and a horizontal scroll bar appears in the window of my main browser. This seems not very good from the point of view of the customer/end user and I was wondering if it is possible the size of declare the region according to a specific size and have a scroll bar horizontal that it contains, so that users can view the rest of the report columns using the scroll instead bar rather than do what he done right now and go to the screen and having to use the main browsers horizontal scroll bar at the bottom.

    I tried on IE8, Chrome and Firefox 27.0.1 and get the same result. I tried to follow the ideas in this thread, in interactive report horizontal scroll bar, but nothing is.

    You have ideas on how I can get around this please?

    Concerning

    Hi user10248308


    Try this


    Step 1:-modify the interactive report

    Step 2:-under defination region-> header area

    put

    Step 3:-under area Defination-> foot of the region

    put


    Please come back if this is not yet resolved.

  • Add the vertical scroll bar for content panel

    I need to use long passages of text in a fixed size content area, so I need to add a vertical scroll bar on the side. Muse support says that I have to use HTML code to do this. I'm a designer, not a coder, can someone walk me through it?

    Hi Jeff,

    I wrote a quick tutorial in response to a similar question. You can see here. Re: how to add a vertical scroll bar?

    Make sure you read the comments after the message that I made a few adjustments to coding.

    I hope this helps.

    David

  • Problem with vertical scroll bar of the block master detail

    Have a TC of canvas by tabs with 3 tabs - tab A, B and C

    Tab C contains a block of master child multi. Each block can display 5 records.

    C tab

    -> Master Block can display 5 records

    -> Child block can show 5 records. Child block has nearly 20 columns to display. It is therefore a big canvas

    question

    It comes with vertical toolbars on Master Block and child block.

    The horizontal toolbar works very well.

    But if there are more than 5 records, we are not able to scroll the vertical toolbar.

    Remember reading somewhere that for a block of single bar scrolling can be active. Please specify if this is correct and indicate what are the appropriate actions that we can take.

    Thank you

    951614 wrote:

    But if there are more than 5 records, we are not able to scroll the vertical toolbar.

    You have a separate master and detail block, right scroll bar?

    If so, then which bar scroll creating problem for you, master? detail? or both?

    Make sure you have the block with the appropriate scroll bar card, it can possible you have set the bar of scrolling detail with master block and main scroll bar with detail block.

    951614 wrote:

    Remember reading somewhere that for a block of single bar scrolling can be active. Please specify if this is correct and indicate what are the appropriate actions that we can take.

    It is not correct.

    You used the scroll bar with individual block. There is no restriction.

  • Hide the scroll bar on HTML elements

    HTML elements on the slot mask Web page the bar scroll of Firefox. Who should never be allowed to happen, right? It happens that particular page but not other pages on the same site. Do not have a clue as to why, but it's obviously a bug that needs fixing.

    Page in question: http://pfangirl.blogspot.se/2010/05/rip-frank-frazetta-father-of-fantasy.html

    Screenshot: http://i.imgur.com/V8U4aav.png

    This isn't the main scroll bar attached to the body or html element, but a scroll bar, attached to a scrolling div container which is part of the page. This is just one example of poor design. I see the same thing in Google Chrome and this widget at the top of the page there are a lot more time with 5 elements.

  • SCROLL BAR NOT WORKING DO NOT HP PAVILION 14 N232TU

    Hey CV,.

    I bought the new model of n232tu hp pavilion 14. I am unable to find the vertical scroll bar for my touchpad driver. I have already installed alps touch pad driver but the scroll bar does not work with this driver. Also, I installed 'synaptics driver' other models of hp, but could not get the result, so I uninstalled. Please help me with a driver or a solution

    Hello sairamteja,

    Welcome to the HP Forums!

    I understand that the scroll bar does not work. Open Control Panel, then mouse. Go to "Settings ClickPad" and then click on the option setting ClickPad.  In the window that appears, the checkbox next to 'Scroll', then click on the word 'Scrolling' and you will see an option on the right.  Click it to see additional settings and check the box against "Vertical scroll".  Click on the close button and then click on apply and Ok in the previous window.

    Please try these and let me know what happens!

    Have a wonderful day!

    Mario

  • scroll bar horizontal universal theme

    Hello

    With the new universal theme, I have several large areas, but I have a horizontal scroll bar for each


    I don't have that one bar horizontal scroll to the page level.

    is not possible?

    JM

    Hello...

    Right, that one worked for 4.2 but not 5.

    I tried this other solution and worked at 5. but the unique scroll bar is at the bottom of the page

    2 report parts, each of them with this property

    At the page level, set the inline css code:

    This does not replace the 'hidden' value just for this page

    and the result:

    Best regards.

  • Missing thumbnails of images in the scroll bar after the corrupted lrcat file recovery

    Greetings-

    The last 24 hours have been a roller coaster of emotions to say the least. Last night when editing photos my external hard drive suffered a problem of corruption and has stopped responding. I went immediately into emergency mode and started to tear off which doesn't have the data I could from the drive of entry mechanically.

    Fortunately, I keep all my original and raws photos supported on a 10 to RAID 5 array with 2 parity drive if I'm not worried about losing those. In addition, I save my lrcat regularly (once a month) to the same NAS. However, since the last time the catalogue was supported up to and now, of course I did a lot of editing. Another factor of motivation in my back catalog has been the fact that I have 4-5 years with a value of photo retouching in this catalogue. So many years of metadata. I didn't want to lose it all.

    At anyrate, I was able to shoot the catalog, and when I tried to open it in Lightroom, he complained that he was corrupted and he would try to fix it, LR has failed to do. With a little research, I could empty the LR schema and reset the database, deleting constraints bad (there are three). After that Lightroom was able to reopen the newly restored lrcat file and everything was fine. I immediately supported the current state of this catalog to my NAS for well-being.

    The catalog is of course the operational plan, however one thing. My scroll bar containing my images, to the point, are all empty without thumbnails. If I click on a given case, the image is displayed on the portal with all the metadata (the changes that I made, if its been marked or rejected etc.) and the missing tile is regenerated.

    How can I get my thumbnails in the scroll bar for those lacking? Some are there others are not.

    I know this isn't my video card, or use of resources or whatever related to the equipment, it must be something with cache or something. Any contribution is appreciated.

    Please see the screenshot below. Thank you

    It was a generic pointing to build 1:1 or build Standard previews.

  • Horizontal scroll bar is missing in the region without borders

    Hello

    I use v4.2.1.00.08 APEX and used 24 theme.

    I'm not able to see the horizontal in the region without borders scroll bar when necessary. I just used the code inside the < style > tag to display the scroll bar, below

    #RPT .uRegionContent
    {
    overflow:auto;
    }
    
    

    It works, but now I can see the only horizontal scroll bar for this region not in the browser. Can someone help me get the horizontal scroll bar in the browser.

    horizontal.JPG

    I created a test case for this species,

    https://Apex.Oracle.com/pls/Apex/f?p=32974:3:8262817666057:no

    WS/Nations United/PWD: adhimaha/adhimaha/adhimaha

    Can someone help me on this...

    Thanks in advance,

    Adhi

    Lakshmi,

    Check in your page 9 of the application or the tab Test Pars control.

    hope this has solved your problem.

    changes made

    1. create the new model of the region as a region without borders copy model

    2. change the region class 'uIRRegion' instead of 'uRegion '.

    3. apply this classic report template.

    Leave.

  • Custom scroll bar - Actionscript 2.0/Flash 8

    I am trying to create a scroll bar for a text on my Web page, and I created my file following a tutorial by Craig Campbell. Other than my text is a bitmap as a video clip and Craig in text in a clip, the only difference between my folder and sound are numeric values. The visible part of my file is 200 pixels wide and high 250 PIX. The bitmap is 190 pixels wide and 800 pixels maximum. The scroller and track occupy the remaining 10 pixels wide, beside the text. The following Actionscript code:

    Quote:

    var scrollUpper:Number = 10;
    var scrollLower:Number = 240;
    var textLower:Number = 0;
    var textUpper:Number = - 550;
    var scrollRange:Number = scrollLower-scrollUpper;
    var textRange:Number = textLower-textUpper;
    function scroll() {}
    var moved: number = scroller_mc._y - scrollUpper;
    var pctMoved:Number = moved/scrollRange;
    var textMove:Number = pctMoved * textRange;
    text_mc._y = textLower-Gauchedeplacez;
    }
    scroller_mc.onPress = function() {}
    this.startDrag (false, this ._x, ._x, scrollUpper, scrollLower);
    this.onMouseMove = scroll;
    }
    scroller_mc.onRelease = scroller_mc.onReleaseOutside = function () {}
    this.stopDrag ();
    this.onMouseMove = null;
    }

Maybe you are looking for

  • Portege Z30 PT24AE - Touchpad freeze intermittently

    I have a book ultra z30 Portege (Windows 7 Pro) and a few weeks ago began to notice that the touchpad would freeze all of a sudden. All other functions work; That is to say by typing on the keyboard could perform an operation expected or right click

  • Satellite A100-496: Installation of the graphic adapter?

    Friends,Uninstalled my intel graphics card and I want to reinstall again.No idea where to find the driver?I have a product recovery software but do not know what exe file to launch and know if it reformat my machine?Pointers or help would be grateful

  • Re: Satellite A100-1VG - DVD drive disappearing

    Hello I have problems with the CD/DVD-RW drive on my Satellite A100-1VG. In fact, from time to time he disappears. It will not work to CDs or DVDs and it does not appear on my computer. The only mention of "Hard disks" in bed Device Manager "FUJITSU

  • want to buy the new Tablet

    Hello I own an Acer I own the acer iconia A1 Tablet - 810 - L888 16 GB Wi - Fi and I love this tablet. I am very interested to buy another Tablet and not spend a lot of money... I was watching two first is tablets Iconia B1-710-L401 8 GB one is Iconi

  • Impossible to play a song in Windows media player.

    Original title: Scrolling the mouse I open the player windows media, click on a song to play and it's like someone else is controlling what's going on.  My visits in mouse where I but all the songs highlighted blue and scrolling, the song does not pl