How to set an object to 100% width now that Muse no longer has the button?

I'm trying to set a slideshow to 100% width like the tutorials constantly talk about, but that is no longer possible in the latest version of Muse. The button is gone. So how do you do it? And why did Adobe remove the 100% width button? They seemed proud of it when it was released as a new feature.

Hi,
The 100% width option is available for the slideshow widget. But to use it in your slideshow, make sure you have selected the "Hero Image" of the slideshow and then click on the button of the 100% width option.
Please refer to this screenshot :- http://prntscr.com/567j41
Hope this helps
Regards,
Rohit Nair

Similar Messages

  • How to set a Object value by JDI

    How to set a Object value using JDI?
    For example:
    class User{
      private String name;
      private String id;
    set and get method;
    public static void main(String[] args) throws Exception {
            VirtualMachineManager vmm = Bootstrap.virtualMachineManager();
            List<AttachingConnector> connectors = vmm.attachingConnectors();
            SocketAttachingConnector sac = null;
            for (AttachingConnector ac : connectors) {
                if (ac instanceof SocketAttachingConnector) {
                    sac = (SocketAttachingConnector) ac;
                    break;
            if (sac == null) {
                System.out.println("JDI error");
                return;
            Map<String, Connector.Argument> arguments = sac.defaultArguments();
            Connector.Argument hostArg = arguments.get("hostname");
            Connector.Argument portArg = arguments.get("port");
            hostArg.setValue(HOST);
            portArg.setValue(String.valueOf(PORT));
            vmMachine = sac.attach(arguments);
            List<ReferenceType> classesByName = vmMachine.classesByName(CLSNAME);
            if (classesByName == null || classesByName.size() == 0) {
                System.out.println("No class found");
                return;
            ReferenceType rt = classesByName.get(0);
            List<Method> methodsByName = rt.methodsByName(METHODNAME);
            if (methodsByName == null || methodsByName.size() == 0) {
                System.out.println("No method found");
                return;
            Method method = methodsByName.get(0);
    I will connect to server and monitor the remote server JVM , There is a object of User, I want to change its value by the Java Debugger Interface by client.
    so how to set its value by the client, and I can not got the User bean at client.
    I know the basic type filed value changed as follows:
    Value newValue = vmMachine.mirrorOf("change var value");// this field is a string.
    stackFrame.thisObject().setValue(field, newValue);
    But a Object , how can I change its value.
    Thanks Advanced.

    ObjectReference.setValue() is the method for chaining the value of an Object's field. First you need to find the specific Object you want to change, though.
    /Staffan

  • Got help fixing my youtube problem, now that is working.  In the process of making the fix, lost my aol set up. Re installed it, but cannot access the icon. How do i get my AOL back?

    Got help fixing my youtube problem, now that is working.  In the process of making the fix, lost my aol set up. Re installed it, but cannot access the icon. How do i get my AOL back?

    If it's an application, it should be in the Applications folder. If in doubt, double click on the hardrive icon to open it up, then press Command+F (find) and in the window that comes up for what you want to find, type in AOL and it should appear. You can either drag it to the Dock for easy access or make an alias of that, and drag that alias to the Dock. Oh, and just so's you know, this forum is for Desktop macs only. We may be able to answer your question about a MacBook Pro. Same kind of animal, but different breeds.
    good luck
    John b

  • HT5312 How to set up my rescue email account,so that can reset my security question?

    How to set up my rescue email account,so that can reset my security question? The key is I need change my security question

    You won't be able to add a rescue email address until you can answer 2 of your questions, you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the page that you posted from to add a rescue email address for potential future use

  • I'm trying to setup my new iphone and the Apple ID it asks for is my friends old Apple ID that she no longer has access to. How can I fix this?

    I'm trying to setup my new iphone and the Apple ID it asks for is my friends old Apple ID that she no longer has access to. How can I fix this so I can use my new phone? The first step asks for my iCloud info but then asks for my friends after I agree to the terms.

    The iPhone is new, has never been used. When asked if I want to set it up as a new phone, restore from an iTunes backup, or my iCloud backup I selected iCloud. It then askes for me to sign in with my Apple ID, I then agree to the terms, then it asks for me to sign into my friends Apple ID. She and I have used each other's computers in the past so I assume this is where her information is coming from. The problem is she no longer had that email or Apple ID and has no way of gaining access to it and therefor I am unable to proceed.
    I suppose my question is, how can I remove her information from mine so I can setup my new phone using iCloud. Also, I have already checked my Apple ID online and nowhere on my account is her information listed.

  • How long has the current SPID/Agent Job been running

    I have a SQL Agent Job that has 15 steps. Each step executes the same CLEANUP sproc against a database. STEP1 executes CLEANUP against DB1, STEP2 executes CLEANUP against DB2, etc. These 15 databases all have the exact same schema (that was the design
    decision - not going to change).  The job can run for days. I want to have a MAXMINUTESTORUN configuration (probably set to 4 hours) that the sprocs will check and when that is exceeded the sprocs will nicely terminate and then pick up  again
    the next time. I want to be able to ask in the sproc, how long has the spid/agent job been running. How is the best way to do this?

    Well, the idea for that, 
    the clean up always runs first on the database it never before and then it will run against the database that has oldest 'Lastrun". you can change this logic if you need.
    Using the demo scripts above, try this ...after the scheduling the job.
    1. run the job once..it will run the procedure for testA
    2.check the output of select * from msdb.dbo.cleanupjob
    3. run the job again..it will run the procedure for testB(the reason it picks this is because the cleanup procedure never ran for database testb)
    4.check the output of select * from msdb.dbo.cleanupjob
    5. run the job again..it will run the procedure for testA(the reason it picks this is because the cleanup procedure ran for database testb atleast once and 
    will the pick the  oldest "last run " database)
    6.check the output of select * from msdb.dbo.cleanupjob
    you can also ,,replace this block
    select top 1 @a= databasename from
    (select top 1 1 source,databasename from cleanupjob
    where (lastrun is null)
    union
    select top 1 2 source,databasename from cleanupjob
    where (lastrun in (select min(lastrun) from cleanupjob where lastrun is not null))
    order by source) A
    with 
    select top 1 @a=databasename from msdb.dbo.cleanupjob where isnull(lastrun,'19000101') in (select min(isnull(lastrun,'19000101')) from msdb.dbo.cleanupjob)
    order by id
    Hope it Helps!!

  • I have a Macbook Pro early 2011. i don't have AirPlay on my computer. How can I get it. I have read that early 2011 should have the AirPlay option. Any ideas please.

    I have a Macbook Pro early 2011. i don't have AirPlay on my computer. How can I get it. I have read that early 2011 should have the AirPlay option. Any ideas please.

    Hi All,
    I need your expert advice to proceed. I bought apple TV and it works fine with my iPad and iPhones also fine with itune of my Mac Book Pro BUT I am not seeing setting which says "Airplay Mirroring" in system preference -> Display at all.
    I checked my mac serial number and it shows the model as below. As far as I understood this feature should be there from 2011 onwards.
    MacBook Pro (13-inch, Late 2011)
    Software  Mac OS X Lion 10.7.5 (11G63b)
    Please suggest!!
    Thanks and Regards

  • How do I delete an iCloud account from my iPad that I no longer know the password for and have no access to the email account to change it?

    How do I delete an iCloud account from my iPad that I no longer know the password for and have no access to the email account to change it?

    You will need the password. If you can't get it reset via http://iforgot.apple.com (if you remember the answers to the account's security questions then you should be able to reset it via them) then try contacting Support in your country, they should be able to reset it.
    Contacting Apple about account security : http://support.apple.com/kb/HT569
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html

  • How can I remove computers from my itunes account when I no longer have the computers?

    How can I remove computers from my itunes account when I no longer have the computers?

    De-authorise all, then authorise the one you still have.

  • I had completed my iDVD project and burned a disc. It worked great! Then someone messed with the project and put a red frame around the opening screen. Now when I burn the project, it no longer has the opening frame. How can I fix?

    I had completed my iDVD project, a Wedding Slideshow with pictures and music, and burned it on a disc. It worked great! Then someone messed with the original project on my computer and clicked around and put a red frame around the opening screen that has the Wedding theme with music. Now when I burn the project to make more DVDs, it burns but no longer has the opening frame. It immediately opens to the iMovie slideshow. How can I fix so I can burn the entire project with opening frames?

    As Bengt suggested make a disk image of the successfully burned DVD using Disk Utility. Then you can burn copies any time you need one.
    In the future once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image menu option.  This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image and launch DVD Player and play it.  If it plays OK with DVD Player the encoding was good.
    You can then burn it to disk with Disk Utility at the slowest speed available to assure the best burn quality.  Always use top quality media:  Verbatium, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • I have to buttons that I cant remove. The button is on the left side of tabs and on the right side of the tabs. These arent back and forward buttons. When I go to customise they arent shown. How to remove it?

    I have two buttons that I cant remove. The button < is located on the left of the tabs and > is located on the right of the tabs. These aren't back and forward buttons. How can I remove them?
    [https://picasaweb.google.com/dookeybre/DropBox?authkey=Gv1sRgCLyTs7iUlqXE2QE#5594570123175636338 photo of the problem]

    Those buttons are used to scroll through the tabs if you have too many to display. If all of the tabs that you have open are visible, the buttons should not be displayed. If they are displayed all of the time there may be a problem with the theme that you are using.

  • I reset my iPhone 5s yesterday because my fingerprint bottom is not working. It says that failed every time I was trying to put my print... Now that I reset my phone the fingerprint pass code do not appear in the setting.

    I reset my iPhone 5s yesterday because my fingerprint bottom is not working. It says that failed every time I was trying to put my print... Now that I reset my phone the fingerprint pass code do not appear in the setting.

    Hi Emilemny,
    Welcome to Apple Support Communities.
    The TouchID settings will not be available until you create a passcode, see the article linked below for more information.
    iPhone 5s: Using Touch ID
    http://support.apple.com/kb/HT5883
    You can set up Touch ID in iOS Setup Assistant or by tapping Settings > Touch ID & Passcode. To set up Touch ID, you must first set a passcode. Touch ID is designed to minimize the input of your passcode, but you need a passcode for additional security validation, such as enrolling new fingerprints.
    -Jason

  • I accidentally added the app store apple id wrong, then I was able to put the right one but now that I need to update the application tells me to insert the id of the psw wrong, how do I change it?

    I accidentally added the app store apple id wrong, then I was able to put the right one but now that I need to update the application tells me to insert the id of the psw wrong, how do I change it?

    You must update the apps with the Apple ID that they are purchased with.
    The only way to get round this is to re-purchase the app with the new Apple ID.

  • I bought an iPhone while overseas, but I'm back living in the states now. It seems that FaceTime and iMessage is not enabled on it. How do I get it to work now that I'm back in the states?

    I bought an iPhone while overseas, but I'm back living in the states now. It seems that FaceTime and iMessage is not enabled on it. How do I get it to work now that I'm back in the states?

    I did buy it from someone in Jordan. So they might have got it from KSA, or UAE, or it even might be the same rules in Jordan. I don't think the imessage works even, every time someone sends me a message from their ipad it says "Not delivered". Maybe I am wrong?

  • HT2731 How can I change my store to US, now that I am in the US? A link in a previous thread says not accessible as the profile still shows different country..

    How can I change my store to US, now that I am in the US? A link in a previous thread says not accessible as the profile still shows different country..

    As long as you have a form of payment (credit or debit card) with a USA source, and with a billing address in the USA, then you just need to change your payment information on your account to that, change your country in the store settings, and you will then be able to shop in the USA store.
    Your AppleID will work in any country's store, as long as your payment source and billing addres are also specific to that country (and you are in that country as well, as there may be IP filters in place to stop use outside of the country).

Maybe you are looking for