Vertical Scrolling and Horizontal Wrapping in a JEditorPane

Hey guys,
Some of you may recall my [post |http://forums.sun.com/thread.jspa?threadID=5418688] from a couple weeks back. In it, I learned how to force (or appear to force) the text of a JEditorPane to grow from the bottom-up instead of top-down (picture the difference between how a chat window grows to how a word document grows). The solution (which solves my original problem perfectly) involves simply placing the JEditorPane into the South region of a JPanel.
That was all fine and dandy, until I tried putting long lines of text into the JEditorPane. It scrolled vertically when it should have, but the text simply ran off the right side of the JEditorPane instead of wrapping (or showing a horizontal scrollbar).
After a gross amount of googling, I finally came across this old [post |http://forums.sun.com/thread.jspa?threadID=5318664] that seems to be related to my problem here. It hinted that I should set the width of the JPanel to match the width of the JScrollPane's Viewport. While that does indeed fix the problem with horizontal wrapping, it now creates a problem with the vertical scrolling (which works fine without the fix for horizontal wrapping)!
I've tried setting the preferred height of the JPanel to just about everything I can think of: the height of the viewport, extremely large numbers, negative numbers, zero, itself, the height of the JEditorPane. But they all do the same thing: no vertical scrollbar ever pops up, even when the text is obviously too long to fit in the window.
Here's an SSCCE demonstrating what I'm talking about:
import javax.swing.*;
import java.awt.*;
public class EditorPaneTest {
    public EditorPaneTest() {
         JFrame frame = new JFrame("EditorPane Test");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         JEditorPane textComponent = new JEditorPane();
         textComponent.setContentType("text/html");
         String text =
              "This sentence should wrap and not cause the horiztonal scroll bar to display.<br/>"
              + "<br/>This<br/>sentence<br/>should<br/>cause<br/>"
              + "the<br/>vertical<br/>scroll<br/>bar<br/>to<br/>display.<br/>";
         textComponent.setText(text);
         JPanel panel = new JPanel(new BorderLayout());
         //the purpose of putting the JEditorPane in a JPanel
         //is to force it to the bottom with BorderLayout
         panel.add(textComponent, BorderLayout.SOUTH);
         JScrollPane scrollPane = new JScrollPane(panel, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
         //this line enables wrapping
         //but disables vertical scrolling
         //(comment it out to switch)
         panel.setPreferredSize(new Dimension(scrollPane.getViewport().getWidth(), scrollPane.getViewport().getHeight()));
         frame.add(scrollPane);
         frame.setSize(100, 200);
         frame.setVisible(true);
    public static void main(String[] args) {
        new EditorPaneTest();
}As always, any pointers / suggestions / criticisms you can give me are greatly appreciated.
Thanks again,
Kevin

camickr wrote:
You need create a custom panel that implements the Scrollable interface. The key method to override to give you the behaviour you desire is the getScrollTracksViewportWidth() to return "true". This effectively fixes the width of the JEditorPane to the width of the viewport to wrapping is done as expected.That does handle the wrapping and scrolling, but it breaks the original problem: keeping a JEditorPane at the bottom of a JPanel. Using the ScrollablePanel you posted, the JEditorPane now stays at the top of the Panel instead of growing from the bottom.
To see what I'm talking about, check out this code (the only difference between this and the previous code is the addition of your suggestion):
import javax.swing.*;
import java.awt.*;
public class EditorPaneTest {
    public EditorPaneTest() {
         JFrame frame = new JFrame("EditorPane Test");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         JEditorPane textComponent = new JEditorPane();
         textComponent.setContentType("text/html");
         String text =
              "This sentence should wrap and not cause the horiztonal scroll bar to display.<br/>"
              + "<br/>This<br/>sentence<br/>should<br/>cause<br/>"
              + "the<br/>vertical<br/>scroll<br/>bar<br/>to<br/>display.<br/>";
         textComponent.setText(text);
         ScrollablePanel panel = new ScrollablePanel();
         panel.setLayout(new BorderLayout());
         //the purpose of putting the JEditorPane in a JPanel
         //is to force it to the bottom with BorderLayout
         panel.add(textComponent, BorderLayout.SOUTH);
         JScrollPane scrollPane = new JScrollPane(panel, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
         //this line enables wrapping
         //but disables vertical scrolling
         //(comment it out to switch)
        //panel.setPreferredSize(new Dimension(scrollPane.getViewport().getWidth(), scrollPane.getViewport().getHeight()));
         frame.add(scrollPane);
         frame.setSize(100, 200);
         frame.setVisible(true);
    public static void main(String[] args) {
        new EditorPaneTest();
     public class ScrollablePanel extends JPanel
          implements Scrollable
          public Dimension getPreferredScrollableViewportSize()
               return getPreferredSize();
          public int getScrollableUnitIncrement(
               Rectangle visibleRect, int orientation, int direction)
               return 20;
          public int getScrollableBlockIncrement(
               Rectangle visibleRect, int orientation, int direction)
               return 60;
          public boolean getScrollableTracksViewportWidth()
               return true;
          public boolean getScrollableTracksViewportHeight()
               return false;
}Resize the window to make it taller. The text should stay at the bottom of the window, but now it stays at the top. I tried using a BoxLayout on the ScrollablePanel instead, and adding a Box.createGlue( ) before adding the JEditorPane. But that didn't change anything.

Similar Messages

  • I've just recently updated to the ver 4.0. After the update, I can't select my vertical scroll and any buttons on the search toolbar.

    I've just recently updated to the ver 4.0. After the update, I can't select my vertical scroll and any buttons on the search toolbar. I've tried switching off all the add-ons and running it on safe-mode but the problem still persist. Anybody encountered the same issue here? Any help would be good. Cheers

    Okay. The missing menus at the top of iTunes (in recent versions) can indicate trouble with the Segoe UI fonts on your system. It's a new symptom of a problem that can also cause text to go missing from the Device tab in iTunes.
    Unfortunately it's a bit trickier to deal with on Windows 7 systems than Vista or XP. (The "Vortical" instructions which can fix it for almost all folks on Vista and XP aren't applicable to Windows 7.)
    Try having a look through the following (unfortunately very long) topic. It contains a lot of information on the Windows 7 variants of this, and possible methods for fixing the various Segoe UI-related issues that might be in play:
    iTunes 10.1 Missing Text

  • Need a tab navigator with vertical tabs and horizontal text as the tab label?

    Hello,
    I've found a component here http://hasseg.org/stuff/VerticalTabNavigator/VerticalTabNavigatorDemo.swf, but I need to display the labels horizontally. Any suggestions?

    import javax.swing.*;
    class VerticalScrollTextArea {
        public static void main(String[] args) {
            Runnable r = new Runnable() {
                public void run() {
                    JTextArea ta = new JTextArea( 5, 20 );
                    // the stuff you need
                    ta.setLineWrap(true);
                    // your GUI might not require this
                    ta.setWrapStyleWord(true);
                    JScrollPane sp = new JScrollPane(
                        ta,
                        JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
                        JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
                    sp.setPreferredSize( ta.getPreferredSize() );
                    JOptionPane.showMessageDialog(null, sp);
            SwingUtilities.invokeLater(r);
    }

  • I updated MUSE and now the anchors stop working after one click. Active state on the buttons are not working either. The vertical scroll also stops working. Is this a bug.

    I updated to Adobe Muse 2014 and now the anchors on my site stop working on the page after one click. Vertical scroll and active state on the buttons also do not work. Is this a bug?

    I am also dealing with an anchor that stopped working. I tried everything i can think of to make it work, but no luck so far. I hope to see a helpful response here. Thanks.

  • Apple 30 Inch Vertical Sync and Hoeiz Refresh Rates

    I am trying to figure out the exact Vertical Sync and Horizontal Refresh Rates.
    I have a dual boot setup with OS X and Ubuntu Linux on my G5 PpwerMac
    I know that the Dell 30" is pretty close ( which I am using now ) but I don't want to damage my Display by using the wrong specs.
    So If anyone knows the sync and refresh rates it would really be appreciated.

    Here is a section from the 30" Cinema's EDID data that has the info you want:
    Descriptor #1 is Timing definition:
    Mode = 2560 x 1600 @ 60Hz
    H. Active...............2560 pixels
    H. Blanking.............160 pixels
    V. Active...............1600 lines
    V. Blanking.............46 lines
    HSync Offset............48 pixels
    HSync Pulse Width.......32 pixels
    VSync Offset............3 lines
    VSync Pulse Width.......6 lines
    Pixel Clock.............268.00MHz
    Horizontal freq.........98.53kHz
    Vertical freq...........59.86Hz
    H Image Size............641mm
    V Image Size............401mm
    H Border................0 pixels
    V Border................0 lines
    Non-Interlaced
    Sync: Digital separate with
    * Positive vertical polarity
    * Negative horizontal polarity

  • Data missing on vertical scroll with Advanced Data Grid

    Hi All,
    I have a n issue as stated below.
    AdvanceDataGrid with simple rows of text values.
    On vertical scroll and move upwards, the some of the values at the top goes blank intermittently.
    Have used itemRenderer to populate the values to that particluar column.
    To fix this issue, I have tried the fixes as below but its not working:
    1) super.data=value.
    2) Used validate.now().
    Can you please give me a solution to this?
    Thanks,
    IRK.

    Hi All,
    Setting the width explicitly, solved my issue.
    grpName.width = 120;
    Thanks,
    IRK

  • HP laptop vertical scrolling issue?

    Not sure if this is in the right section but...
    I'm have issues with my laptop's vertical scrolling, and what's worse is that i can't find a way to fix it at all, here's what happens:
    I know exactly what to do, but the final step is not working..
    Whenever i try to check the vertical scroll from my computer, it does not check, it kinda blinks and stays unchecked, and i cannot find a solution to this at all, it is very frustrating , can anyone help?
    This question was solved.
    View Solution.

    Look on the bottom of the laptop or inside the battery bay for a model number. Your synaptics driver is installed. I can tell by the red icon on the mouse properties. You might need a driver update. Your driver is from May, 2010. Windows 7? 64 bit?
    Here is a much newer synaptics driver:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-102488-1&cc=us&dlc=en&lc=en...

  • TableView horizontal and vertical scrolling is horribly slow

    How can I adjust the horizontal and vertical scrolling amount?
    I used the Ensemble example prorgam and streched the column so that the horizontal scroll bar is displayed. I then used the right scroll button which then scrolls extremly slow. I've looked at the javadoc on the tableview and I cannot determine how to set the scrolling amount. I can check if the table is scrolling but I would like to set the amount to be a column width at a time when using the left or right arrow.

    It probably needs to be actually rendered to the Scene graph before the lookups can be made, so the lookups won't work in the initialize method.
    There are a number of reasons I don't like this solution
    - I don't like the string binding
    - the fact that there are scrollbars that are descendant nodes of the table view is not documented, so (at least in theory) a future release of JavaFX could choose not to use the ScrollBar class (for example by creating its own scrolling implementation). This would break the code you have.
    - if you decided to create (or use) an alternative skin for the table view which had other scrollbars in place (again, unlikely but theoretically possible), you'd end up setting the unit and block increments of those scrollbars too. In other words, there's no guarantee these are the actual scrollbars you want.
    So, not ideal but at least if it works you have something...

  • How do I stop needing to scroll both horizontal and vertical in my folders to see all of the content.

    How do I stop needing to scroll both horizontal and vertical in my folders to see all of the content.

    There is no cancel button.
    I don't see a download all button that will download everything from iCloud anyway. The download all button that I see refers only to the particular artist or album that you select from the left had side. I see no download all button for TV Shows or Movies.

  • Why do I have 2 Vertical Scroll Bars and 1 Horizontal one

    Can anyone tell me from the code below where I am going
    wrong. I have an AP Div inside an AP Div that has text content and
    the overflow is at Auto which gives me a horizontal scroll bar but
    also 2 vertical scroll bars instead of one in Firefox. What is the
    reason for this? I hope someone can help me - here's the code:
    <div id="apDiv6"><img src="frame.jpg" alt="Frame"
    width="518" height="335" /></div>
    <div id="apDiv23">
    <p align="left">
    <strong>Hors d'Oeuvres<br/><br/>
    </strong><strong>Soupe...........</strong><br/><br/>Soupe
    a l'oignon
    gratinée............................................
    $6.75<br />
    </strong>Onion soup<br /><br/>
    <strong>Soupe du Jour ..........................
    $5.25<br/>
    </strong>Soup of the day<br/><br/>
    <strong>Les entrées
    froides...........<br/><br/>
    </strong><strong>Huîtres du
    Jour.....................La Pièce $1.85<br/><br/>
    </strong>
    Oysters (served with Champagne shallot
    vinegar)<br/><br/>
    Salade et fromage, vinaigrette à la moutarde de
    Dijon........ $6.00<br/>
    Mixed salad with feta cheese, Dijon mustard
    vinaigrette<br/><br/>
    Salad frisée aux lardons et oeuf poché..........
    $7.95<br/>
    Frisée salad with bacon and poached egg, sherry
    vinaigrette<br/><br/>
    Salade de crabes, concombre et betterave, sauce
    aïoli......$8.50<br/>
    Crab salad with golden beet and cumcumber, aioli
    sauce<br/><br/>
    Foie gras cuit au torchon et
    toast........$14.50<br/><br/>
    Les entrées chaudes......<br/><br/>
    Moules Marinières................$9.00<br/>
    Steamed Mussels Marinieres, White Wine and garlic (Side
    French fries $2.50)<br/><br/>
    Poêle de ris de veau et épinards, jus au
    romarin..........$9.50<br/>
    Sautéed sweetbread with spinach, rosemary
    jus<br/><br/>
    Escargots de Bourgogne au beurre d'ail et
    persil..............$7.50<br/>
    Escargots from Burgundy in garlic parsley butter (plate
    6)<br/><br/>
    Les Plats<br/><br/>
    Légumes........<br/><br/>
    L'assiette végétarienne du Chef...............
    $14.90<br/>
    Chef Vegetarian<br/>
    Red beet raviolis wih parmesan cheese and seasonal
    vegetables, mushroom jus<br/><br/>
    Poisson<br/><br/>
    Pave de saumon, purée de pommes de terre et
    épinards, sauce homard et vin blanc...... $16.50<br/>
    Steamed salmon with mashed potatoes, spinach and mussels,
    white wine with lobster sauce<br/><br/>
    Filet de bar meunière, poireaux caramélisés,
    sauce grenobloise.....$16.75<br/>
    Sauteed bass served with caramelized leeks, Grenobloise
    sauce<br/><br/>
    Tronçon d'espadon legumes de saison couscous, safran
    orange sauce.... $17.95<br/>
    Sauteed swordfish with couscous and spring vegetables, orange
    and saffron sauce<br/><br/>
    Viandes et volailles......<br/><br/>
    Boeuf Bourguignon et purée de pommes de
    terre..........$16.25<br/>
    Beef Bourguignon sered with mashed
    potatoes<br/><br/>
    Suprême de poulet, ragoût de macaronis poireaux et
    chanpignons, sauce orange... $15.50<br/>
    Roasted chicken breast, leek mushrooms macaroni ragout orange
    sauce<br/>
    Lapin façon Normande............$17.25<br/>
    Rabbit Normandy served with Peruvian mashed
    potatoes<br/><br/>
    Le Cassoulet toulousain Maison...........$21.00<br/>
    Home Made Cassoulet with beans (Duck leg Confit, port,
    Toulouse sausage)<br/><br/>
    Jarret d'agneau braise 6 heures, blettes jus d'agneau et
    romarin.....$23<br/>
    Lamb shank braised for six hours served with swiss chard,
    rosemary lamb jus<br/><br/>
    New York steak, french fries, shallot red wine
    butter<br/><br/>
    </p>
    </div>
    Thank you for helping!

    Hi,
    This is a problem with firefox. It will always show
    scrollbars if the div's css property of overflow is set to anything
    except none.
    Gaurav
    www.gauravchandra.com

  • Is there a way to hide the horizontal and vertical scroll bar?

    Hi,
    I have report with customized page height and width and I am displaying it in the windows forms.
    When I am resizing the form wherein the crviewer is dock in, the horizontal and vertical scroll bars appears.
    Is there a way for me to suppress the those scrollbars?
    Thanks in advance.

    Couple of ways I've been able to find info about. E.g.; there is not straight API off os the viewer (CRviewer.ScrollBar = False ).
    1)  Add Panel control onto the page and add report viewer control into a Panel. Set Scrollbar, width, height property of Panel control.
    2) See http://www.dotnetspider.com/forum/266932-Remove-Scrollbar-from-Crystal-report-Viewer.aspx for another idea.
    If either of the above works for you, please let us know as I have not tested this yet.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Add a horizontal and a vertical scroll bar to a screen

    Hi,
    How to add a hotizontal scroll bar and a vertical scroll bar to a screen?
    Thanks a lot.
    Best Regards,
    Stephanie

    Hi,
    I think it will be automatically added if your screen size is greater than the window size...
    Regards
    Karthik D

  • The Horizontal & vertical scroll is not visible or not working when i run the form in Forms 6i.

    Hi all,
    The Horizontal & vertical scroll is not visible or not working when i run the form.
    In this form , there are 5 canvas namely
    CANVAS2 - Stacked Canvas
    PASS - Content Canvas
    MAT_RATES - Content Canvas
    DATE - Content Canvas
    PREVIOUS - Content Canvas
    I have set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the WINDOW Property.
    I have  set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the STACKED CANVAS Property .
    But still the Horizontal and Vertical Scroll Bar is not working when i run the Form.
    Help me with this please. How do i make it visible??
    Oracle Forms 6i..
    Thank You.

    Vijetha wrote:
    Hi all,
    The Horizontal & vertical scroll is not visible or not working when i run the form.
    I have set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the WINDOW Property.
    I have  set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the STACKED CANVAS Property .
    But still the Horizontal and Vertical Scroll Bar is not working when i run the Form.
    Help me with this please. How do i make it visible??
    Oracle Forms 6i..
    Thank You.
    hello vijetha,
    window and canvas show scroll bar when it need.
    You should show block property
    and set block scroll bar
    hope this helps..
    Hamid

  • Issue with Multithreading and vertical scroll bar - help needed to debug!!!

    I have been working on a desktop Visual Studio 2010 application for quite a few years. It is written in C++ and MFC. This code is a combination of code I have written and code I inherited. It worked great for years on Windows XP, but when I ported
    it to Windows 7, a tricky problem has come up that I am having the darnest time trying to figure out
    In summary, it is a single .exe desktop application. There is the main thread (thread A), which launches another thread (thread B). Both threads share a pointer to a single window object which displays events. This window also implements a vertical and horizontal
    scroll bar. 
    The interaction and message processing between the threads seems a little sticky to me. Both threads A and B call the same member function of the CWnd object. BUT, Thread B ALSO posts messages to thread A's queue.
    So, in thread B, you will see code like this, which makes a direct call to the output window object, AND THEN it also posts a message to Thread A's mainframe window like this...
    if( m_pEventLog )
    pOutputWindow->AddLine("Some test...");
    if( m_phNotifyWnd[RECEIVE] && m_puiEventWMsg[RECEIVE] ) {
    ::PostMessage( m_phNotifyWnd[RECEIVE], m_puiEventWMsg[RECEIVE], 0, (LPARAM) pPkt );
    WHEN thread A receives the message that thread B posted above, it only does the following:
    LRESULT CMainFrame::OnSocketReceive( WPARAM, LPARAM lParam )
    CSPkt* pPkt;
    CRWPkt* pRWPkt;
    CSPktSocket* pSocket;
    ULONG ulType;
    CString csTemp;
    CBSWords bsWords;
    CSSSWords sssWords;
    CRWPkt* pLoopBackRWMsg; // used if we have to send a loopback msg back to sender
    CLMsg lmsg;
    m_wndTextWindow.AddLine("Test message");
    return 0;
    So both threads are writing to the output window via the .AddLine() member function.
    void COutputWnd::AddLine( CString& strLine, COLORREF crColor )
    UpdateVScroll();
    return;
    And this function then makes a call to :UpdateVScroll().  The problem seems to arise because thread B does a
    post to thread A, where thread A in turn writes to the output window. Eventually, the program
    HANGS in the call to
    SetScrollInfo() below...
    void COutputWnd::UpdateVScroll()
    CSingleLock lock( &m_CSVertScrollLock ); // lock things up while we are in here
    BOOL bok = lock.Lock();
    if (lock.IsLocked() == TRUE)
    int iMax = m_FifoIndices.GetHighestIndex();
    if( iMax < ( m_iMaxViewableLines - 1 ) )
    iMax = 0;
    //SetScrollRange( SB_VERT, 0, iMax, FALSE );
    //SetScrollRange( SB_VERT, 0, 9, FALSE );
    SCROLLINFO scrollinfo;
    scrollinfo.cbSize = sizeof(SCROLLINFO);
    scrollinfo.fMask = SIF_RANGE;
    scrollinfo.nMin=0;
    scrollinfo.nMax= iMax;
    SetScrollInfo(SB_VERT, &scrollinfo, FALSE);
    lock.Unlock();
    It doesn't take long for the program to hang...maybe about 10 seconds. 
    When I hit DEBUG->BREAK ALL, I get the output below in the CALL STACK WINDOW.
    ntdll.dll!770070f4()
    [Frames below may be incorrect and/or missing, no symbols loaded for ntdll.dll]
    user32.dll!76c0cde0()
    user32.dll!76c018d9()
    >
    mfc100d.dll!AfxInternalPumpMessage()  Line 153 + 0x13 bytes
    C++
    mfc100d.dll!CWinThread::PumpMessage()  Line 900
    C++
    mfc100d.dll!CWinThread::Run()  Line 629 + 0xd bytes
    C++
    mfc100d.dll!_AfxThreadEntry(void * pParam=0x0022f6a4)  Line 122 + 0x13 bytes
    C++
    msvcr100d.dll!_callthreadstartex()  Line 314 + 0xf bytes
    C
    msvcr100d.dll!_threadstartex(void * ptd=0x004f97c0)  Line 297
    C
    kernel32.dll!762cee1c()
    ntdll.dll!770237eb()
    ntdll.dll!770237be()
    NOTE: If I never make the call to SetScrollInfo(), the program never HANGS.
    Sooo....I am trying to determine if there is a fundamental issue with the way the threads are communicating that is causing the issue, or if maybe I have a memory overwrite. It always hangs in ::SetScrollInfo(), no matter what I comment and uncomment. This
    makes me think that scroll bat behavior is different in Windows 7 than on XP, but I have not been able to find any documentation about it. 
    Can anyone provide any insight as to what may be the cause of the program hanging>

    It might look like working but it will crash eventually. The windows are thread affine and other thread must never touch other threads windows. Sometimes you might get along but usually it just crashes.
    Thread B must use PostMessage ( or SendMessage if suncronous action is require) to thread A's windows to achieve correct updating. Some very basic calls are implemented directly with SendMessage so they are safe to use but then you must individually check
    which ones are safe.
    Also having multiple SendMessage calls from B to A require rendezvous which might cause other problems ( thread B stalls or program deadlocks, depending on other program structure).
    So PostMessage is the way to do it ( or create yourself another inter-thread mechanism, possible but usually too much troble)

  • Need help with scroll effects for horizontally + vertically scrolling website

    Hi,
    I recently came across a website that uses both horizontal and vertical scrolling where 1 scroll = full browser length move to the next section (as opposed to several rotations in a continuous motion of the mouse ball like the majority of websites). Please see the example here because I'm probably not explaining this very well : A Chocolate Bar, Restaurant and Shop for Chocolates, Fondue, Gift Boxes, and More | Max Brenner (http://maxbrenner.com).
    I'm wondering if this effect is something that can be done in Muse and if so, how to do it. It's something I'm seeing more and more and almost behaves like a slideshow that can be controlled by scrolling.
    Thank you!
    Michele

    Hi Michele,
    I am afraid that this is not possible out of the box at this stage, I will recommend that you post this on the ideas section over here, Ideas for features in Adobe Muse
    You can, in the mean time, use some CSS to disable the scroll bar, preventing the partial scrolling of the page and disabling the mouse wheel scrolling as well, leaving behind only your navigation to scroll through the page.
    - Abhishek Maurya

Maybe you are looking for

  • OPC: what is the path to follow in LabVIEW 8.20?

    Hello: I started with OPC in Labview 6. The only two functions that I need is "read  multiple tags" and "write tag". The tags are either located on the same PC or on a different one. I use Labview as an OPC client. The number of tags that i need to a

  • Unable to restore from Time Machine Backup

    Hello, My system recently crashed after removing the Boot Camp partition for Windows! But No problem because I have everything backed up on my Time Capsule! But actually there is a problem... I inserted my Mac OS X 10.5 Installation disk and tried to

  • File Content Conversion question

    Hello Guru's, Ive the following flat file: ZWL;Ordertype 00Z0;Organisation And I want to get the following XML structure: <Ordertype>ZWL</Ordertype> <Organisation>00Z0</Organisation> So just the words before ( How can I define this in FCC, what param

  • Importing Pantone + series libraries from Pantone Color Manager

    Greetings, I'm exporting Pantone + series libraries from Pantonce Color Manager to Illustrator. Specifically Solid Coated & Uncoated. When I open the libraries on Illustrator the values don't match my color guides. That problem doesn't happen when I

  • Bex variable issue

    Hi Experts, cmod project was created  Current Qtr variable is include ZXX_XX_XXX u2013 in XX_QTR Based on Multiprovider i have copied a query These are the key figures with Current qtr and we need to have similar ones for same qtr last year. Example