Add fill-scroll to 100% slideshow Muse

I want to create a slideshow that is 100% width and a fixed height. And I want to be able to add fill-scroll and be able to use the position image tool on the slideshow/images. Is there a way to do this? Kind of frustrating when only the top of my images is visible on the screen. If i could use the position tool to center it, it would been so much easier.

Anybody?

Similar Messages

  • I am looking at online tutorials about parallax scrolling websites but I have a fully updated version via Adobe Cloud. I'm on Windows 8.1 but my Muse doesn't have the 'fill/scroll' menu. Why? Is it only a Mac option?

    I want to create and offer a scrolling website for a restaurant client but I am confused by online tutorials that show a drop down menu with either fill or scroll.  I have checked for updates but I am fully up to date.  Does anyone know why I cannot access this scrolling menu please?

    Hi Vivek,
    Thank you for your kind advice which I greatly appreciate.  However, I think I have solved most of my problems by signing up with Train Simple on a $9 per month technical learning course.  Within a few minutes I was able to locate the fill - scroll menu by simply clicking on the actual text of fill - which for some reason I didn't know about!.  I stayed with the Muse fundamental course all day today and covered everything to do in Muse in great detail.  I am now looking forward to the single page website learning experience with scrolling!

  • IS IT POSSIBLE TO ADD A SCROLL PANE TO A PANEL??

    Hi, Im trying to add a scroll pane to a panel but when I compile the code and try to open the form - a 'Illegal Argument Exception' is produced. Can anyone tell me whether it is possible to add a scroll pane the actual panel itself and also the code to do this.     
    Many Thanks, Karl.
    I have added some sample code I have created -
    public RequestForm(RequestList inC)throws SQLException{
              inRequestList = inC;
              displayForm();
              displayFields();
              displayButtons();
              getContentPane().add(panel);
              setVisible(true);
         public void displayForm() throws SQLException{
              setTitle("Request Form");
              setSize(600,740);
              // Center the frame
              Dimension dim = getToolkit().getScreenSize();
              setLocation(dim.width/2-getWidth()/2, dim.height/2-getHeight()/2);
              getContentPane().setLayout(new BorderLayout());
              Border etched = BorderFactory.createEtchedBorder();
              panel = new JPanel();
              panel.setLayout( null );
              //panel.setBackground(new Color(1,90,50));
              Border paneltitled = BorderFactory.createTitledBorder(etched,"");
              panel.setBorder(paneltitled);
              scrollPane1 = new JScrollPane(panel);
              scrollPane1.setBounds(0, 0, 600, 740);
              panel.add(scrollPane1);
    }

    Hi all,
    I am still having trouble here. would it be posible to add a scrollpanel to this form? Can anyone provide me with a working piece of code so I see how it actually works.
    Any help would be greatly appreciated.
    Many Thanks, Karl.
    Code as Follows:
    /* ADMIN HELP Manual*/
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.util.*;
    public class AdminHelp extends JFrame implements ActionListener{
         private JButton exit;
         private JLabel heading1, help;
         private JPanel panel;
         Font f = new Font("Times New Roman", Font.BOLD, 30);
         private JScrollPane scroll;
         public AdminHelp(){
              setTitle("ADMIN Help Manual");
              setSize(400,325);
              // Center the frame
              Dimension dim = getToolkit().getScreenSize();
              setLocation(dim.width/2-getWidth()/2, dim.height/2-getHeight()/2);
              panel = new JPanel();
              panel.setLayout(null);
              exit = new JButton("Close");
              exit.setBounds(280,260,100,20);
              exit.addActionListener(this);
              panel.add(exit);
              exit.setToolTipText("Click here to close and return to the main menu");
              getContentPane().add(panel);
              show();
              public void actionPerformed(ActionEvent event){
              Object source = event.getSource();
                   if (source == exit){
                        dispose();
              public static void main(String[] args){
                   AdminHelp frame = new AdminHelp();
                   frame.addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e){
                   System.exit(0);

  • How do i add a Scroll Bar to a  JList Component using absolute positioning?

    I've got a applet whose content pane is set to null. I've create a jlist component on this applet and using absolute positioning set the bounds at
    ListBox1.setBounds(380,10, 500, 500);.
    My problem is creating add a scroll bar to the list box.
    JScrollPane scrollPane = new JScrollPane(ListBox1);
    C.add(scrollPane);
    The above code is what i use and when i run this applet i don't see the list box at all. How do i add a scrollbar to this list box or JList component. Please help.

    You need to setBounds() on the JScrollPane, not the JList.
    The JScrollPane is the component that is being added to the panel.

  • How do I add more songs to my slideshows in elements 11?

    How do I add more songs to my slideshows in elements 11?

    Welcome to the forum.
    However, this is the Photoshop>General Discussions forum, and does not cover either Elements program, Premiere Elements, or Photoshop Elements, or their Elements Organizer.
    If you can please let us know exactly which of the Elements program you are using (either Premiere Elements, or Photoshop Elements, through the Elements Organizer), a MOD can Move your post to the appropriate forum, where you will get quick answers.
    Also, additional music can be Imported into several of the Elements programs, but knowing exactly which you are using, will dictate the instructions.
    Good luck, and please let us know more.
    Hunt

  • How to add a scrolling text in portrait with iMovie

    how to add a scrolling text in portrait with iMovie

    This is how i was able to do it. Edit html source.
    <div align="center"><marquee id='scroll_news4' bgcolor=#ff9966 "><font color="#000000" size="+1" ><strong>Outlook is down! IT is working on it! </strong></font></marquee></div>
    <input type='Button' value='Stop' id ='b1' onClick='button_click()';>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    function button_click()
    if(document.getElementById('b1').value=="Start"){
    document.getElementById('b1').value="Stop";
    document.getElementById('scroll_news4').start();
    }else{
    document.getElementById('b1').value="Start";
    document.getElementById('scroll_news4').stop();
    // End -->
    </script>

  • How to add a scroll bar within a view window ?I want to display x and y axis outside the scoll window and keep those axis static and move the graph within scroll area

    how to add a scroll bar within a view window ?I want to display x and y axis outside the scoll window and keep those axis static and move the graph within scroll area
    ananya

    Hey Ananya,
    I believe what you want to do is possible, but it will not be
    easy.  If you want to add a scroll bar that will scroll the graph
    back and forth but keep the axis set, you would want to add a
    horizontal or vertical scrollbar.  Then you would create an event
    handler for the scroll event.  You would have to manually plot
    different data within this scroll event.  Unfortunately, there is
    not really a built in way to do this with the Measurement Studio plot
    control.
    Thanks,
    Pat P.
    Software Engineer
    National Instruments

  • How to add the scroll bar in the vertical photo gallery?

    like this, how to add the scroll bar? http://www.flashvault.net/tutorial.asp?ID=288 Thanks,

    I want to know how to add a vertical scroll bar in the photo gallery which I copied from the tutorial. And add the event to catch MouseEvent.CLICK for each photo. Please advise. Thanks,

  • [svn:bz-trunk] 9758: Add test for BLZ-100.

    Revision: 9758
    Author:   [email protected]
    Date:     2009-08-28 12:32:36 -0700 (Fri, 28 Aug 2009)
    Log Message:
    Add test for BLZ-100. AMF Serialization from Java to AS not working corectly for Map Types
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-100
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/remoting-config.mods.xml
    Added Paths:
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/src/remoting/datatype/MapTypeTest.java
        blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTypes/MapTyp eTest.mxml

  • Every time I add a photo to a slideshow it messes up my entire slideshow. It puts the pics in a completely different order. What can I do to stop this?

    When using iphoto, every time I add a photo to a slideshow, it rearranges all the photos in the slideshow.  Then I have to go back and put them back in the order that I wanted. What can I do so it doesn't do this?

    Are you using a particular theme?  In the Classic theme when I add a new photo to the mix it ends up at the end of the slideshow or at the farthest right in the thumbnail tray.
    OT

  • ITunes song list is blank in iPhoto (when trying to add a song to s slideshow). No issues with iMovie. Any idea? Cheers

    iTunes song list is blank in iPhoto (when trying to add a song to s slideshow). No issues with iMovie. Any idea? Cheers

    Even though no one replied, i fixed my problem.
    Don't know if it will work for anyone else with similar problem
    but all I did was a CHKDSK then a defragment of my laptop and now everything seems to be working fine.

  • How to add a parallax scrolling (jquerry plugin) to Muse with Insert HTML?

    I know the parallax scrolling feature will come to muse in 2 weeks. But I must do a website with parallax scrolling before that time.
    I actually have a site ready in MUSE but i want to add some parallax scrolling effects to this site. I know this is possible without the incoming muse updates because people did it with older muse versions.
    There are some jquerry plugins that should do the work:
    http://plugins.jquery.com/stellar/
    http://plugins.jquery.com/parallax/   for example.
    How can i add these effects to Muse with insert html/Edit html feature? I am not good at code so Could you please tell me the steps clearly even like putting the plugin into the directory?
    Even if i include the plugin, how can i adjust the pluginn settings to some specific elements of a site?
    Please help,
    thank you!

    If you're not comfortable with code, the simplest way to add parallax to Muse would be to join the Muse beta and download the beta build with the new parallax feature.
    http://www.adobekb.com/participating_in_muse_beta.html

  • "Add Images" option not showing in Muse Slideshow

    I've also tried > Edit > Place > (my images) and they aren't going in the slideshow.
    And since the button to 'Add Images' is missing from the Composition Options for my slideshow I am unable to change the images.
    Help please? Many Thanks.

    Hi WebLadyKim,
    It looks to me like you are using the wrong tool for creating Slideshows? I say that because as I see in your screenshot it says 'Composition Options' at the top of the dialog box. This tells me you are using the 'Composition' tools instead of the 'Slideshow tools.
    You should see 'Slideshow Options' at the top instead if using the right tool.
    If I am wrong, can you tell me what Slideshow from the panel you are using?

  • Add a page break in Adobe Muse

    I am trying to work out how to add a page break.  I want to make a scrolling page and add different background images for each break.
    Is this possible?

    You can use rectangles as page break , short height and stretched as 100% width. You can then use rectangles with image fill as page background.
    Thanks,
    Sanjit

  • Parallax scrolling with fullscreen slideshow

    I'm building a parallax site, in the first photo box, I want the photos to flip (as a fullscreen slideshow) for a few frames before it scrolls. Is this possible?

    Hi
    With current Muse feature, this wont be possible as slideshow change can be either automatic or with scroll.
    Few frames before scroll using the widget wont work because when you will insert the widget it will work when you will scroll or it would be automatic.
    You can add this as feature request.
    Thanks,
    Sanjit

Maybe you are looking for