MUSE - Rollovers change background image

I want to create 4 button (image thumbnails) that, when you rollover them, the page's background image changes (the background images are different to the thumbnails). And when you rollover a different thumbnail, the background image fades into a different image (again, different to it's thumbnail).
Does anyone know how to achieve this? Ultimately, I'd also like the background image to scroll at a different rate to the thumbnails.

You can use compositions for this where the triggers can be configured with image for different states and target container should be large enough to cover page area , so that when thumbnail is hovered then that specific target will appear thus page background change.
Thanks,
Sanjit

Similar Messages

  • How to change background images in s:application

    hello!
    i want to make a webside by flex4 as  this web http://www.templatemonster.com/flash-cms-templates/29930.html
    But i don't know how to make change background images by click and make sound when load page.
    Can u help me ,please. sorry i write E not well.
    Thanks so much
    BUI THI PHUONG THANH- FROM VIETNAM

    Hi,
    please create a sink for your application inside that put your image.And apply that skin to your application on any click.
    Below is the code.
    Main Application
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo" xmlns:mx1="library://ns.adobe.com/flex/mx">
        <fx:Script>
            <![CDATA[
                protected function btn_click(evt:MouseEvent):void {
                    this.setStyle("skinClass", MySkinClass);
            ]]>
        </fx:Script>
        <s:Button label="Change BackGroundImage" click="btn_click(event);"/>
    </s:Application>
    MySkinClass
    <?xml version="1.0" encoding="utf-8"?>
    <s:Skin xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx">
        <!-- host component -->
        <fx:Metadata>
            [HostComponent("spark.components.supportClasses.SkinnableComponent")]
        </fx:Metadata>
        <s:states>
            <s:State name="normal" />
            <s:State name="disabled" />
        </s:states>
        <s:BitmapImage source="@Embed('image1.jpg')"  smooth="true" left="0" right="0"  top="0" bottom="0"  />
    </s:Skin>
    with Regards,
    Shardul Singh Bartwal

  • How to change background image in existing template?

    Hi 
    Current website needs overall change in background image which is already set in template. Is there anyone who knows how to change background image in existing templates?

    Make a friend with firebug &  you could find yourself from where it is getting applied.
    For the website you have given the background image it is using is [1] and it is getting set in css of body tag [2]. So Find the css at [3] and modify it OR replace [1] with other image with same file name.
    [1]   www.hanwha.com/etc/designs/hanwha/images/bg-body.jpg
    [2]
    body {
        background: url("images/bg-body.jpg") repeat-x scroll 50% 0 #FFFFFF;
        color: #757373;
        font: 14px/18px Arial,Verdana,Helvetica,sans-serif;
        margin: 0;
        min-width: 979px;
    [3]
    /etc/designs/hanwha/...../*.css

  • Changing background Image of a DIV on RO

    I am trying to figure out how to change the background image of a div upn Roll-Over (RO) from the users mouse.
    My search thus far has led me to javascript, but if any other ideas/method are known, i have no preference for any language.
    I have a horizontal menu w/ 3 divs and a single word centered inside each div. I wish to use each of these divs as buttons w/ RO effects.
    To do this i wanted to try and make it so upon roll,over the bg would be replaced with a modified version of the normal bg of the div's.
    css rules did not work, and i am trying JS now.
    Here are some snippets of code that i have writtin and made from sources i have found online but it still does not appear to work when i test in Firefox.
    Here is the addition to the <HEAD> part of my html page.
    <script src="../quirksmode.js"></script>
    <script type="text/javascript">
         function mouseover(id)
         document.getElementById(id).style.background="url('/images/objects/optionsBarADark.png') no-repeat";
         function mouseout(id)
         document.getElementById(id).style.background="url('/images/objects/optionsBarA.png') no-repeat";
    </script>
    and here is the code in the html page which is supposed to make the rollover casue the bg to change. (note that i have not added links to the text in the center of the divs yet)
         <div id="middleWrapper">     <!-- middle content wrapper -->
             <div id="contentMenu">          <!-- start of menu -->
                 <img class="contentMenuDividers" src="images/objects/optionsBarA.png" width="4" height="28" alt="option bar" /> <!-- filler -->
                <div class="contentMenuButtons" id="theID1" onmouseover="mouseover(theID1)" onmouseout="mouseout(theID1)">
                     <h1 class="contentMenuHeaders">projects</h1>
                </div>
                <img class="contentMenuDividers" src="images/objects/optionsBarA.png" width="4" height="28" alt="option bar" />  <!-- filler -->
            <div class="contentMenuButtons" id="theID2" onMouseOver="changeHeader(theID2,'1');" onMouseOut="changeHeader(theID2,'2');">
                     <h1 class="contentMenuHeaders">catalog</h1>
              </div>
                <img class="contentMenuDividers" src="images/objects/optionsBarA.png" width="4" height="28" alt="option bar" />  <!-- filler -->
                <div class="contentMenuButtons" id="theID3" onMouseOver="changeHeader(theID3,'1');" onMouseOut="changeHeader(theID3,'2');">
                     <h1 class="contentMenuHeaders">featured*</h1>
                </div>
                <img class="contentMenuDividers" src="images/objects/optionsBarA.png" width="4" height="28" alt="option bar" />  <!-- filler -->
            </div>
    and here is some css for the affected class. the a, and a:hover rules are left-over from when i had the text linked.
    .contentMenuButtons {
         float: left;
         height: 28px;
         width: 308px;
         background-image: url(../images/objects/optionsBarA.png);
         background-repeat: no-repeat;
         text-align: center;
         line-height: 27px;
    .contentMenuButtons a {
         color: #F9FBFB;
         text-decoration: none;
    .contentMenuButtons a:hover {
         color: #F9FBFB;
         text-decoration: none;
    if you need anything else from the code let me know, but this is everything i have added to try and get this to work.
    Any ideas?

    I agre with SnakEyez  :-)
    Your method seems to be the long way of doing a simple roll-over menu.
    Lots of examples here as well:
    Basic css menus: horizontal / vertical:
    http://css.maxdesign.com.au/listamatic/index.htm

  • How to change background image for each individual page in a template?

    I've been working for hours to try to figure out how to change the background image for each individual page in a template.  I have tried making a div in the body and adding a CSS and setting a background picture.  Unfortunately even after I made it editable all templated webpages changed.  I tried looking at different forum results which didn't really help me out. http://forums.adobe.com/message/2670005#2670005#2670005.  I've also tried embeding a CSS style on the webpage instead of the external CSS which again didn't work.  I'm not sure where to go from here.  Is there a good video that explains this clearly.  Please help.  Thanks.

    Adjust inline styles to suit your needs.
    <li><a tabindex="-1" href="giving/index.html" class="MenuBarItemSubmenu" style="background:none; color:#FFF; background: #000;">GIVING</a>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • User in unable to change background image/theme

    Hello,
    I am currently working with a user who is unable to change is background image it only shows a black background. He is currently on Windows 7 Enterprise Edition
    We have tried the following troubleshooting steps:
    1. Ran full system scan with no results
    2. Ran sfc /scannow
    3. Ran diskchk
    4. Copied over new TranscodedWallpaper.jpg
    5. Checked Power Options - Checked desktop background settings - expaneded slideshow and made sure Plugged in option is set to Available
    6. Checked that Remove Background images is not selected in Ease of Access Center
    We go not have a group policy set to disable the changing of the wallpaper and he is the only user with this issue.
    Any assitance would be greatly appreciated. Source:
    https://support.microsoft.com/en-us/kb/2504610
    Thank you,
    Sunny

    Hi sshah210,
    Try this registry key method .
    Navigate to the following path :
    HKEY_CURRENT_USER\Control Panel\Desktop\Wallpaper
    Choose a picture path and configure it .
    If the issue persists , I agree with S.Sengupta.We can create another account to have a check .
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Can't change background image

    Hi guys
    I am using NWBC for desktop 4.0 and can open transaction UI5/THEME_DESIGNER and all is great.
    2 issues though
    1. when i navigate top my index page (as a copy of sap corbu) i click on background image and I get the popup with the 2 squares (one for + image and one for 'No Image'  I drag a gif or a jpg file to the + square and I get error "File Reader undefined"
    2. I can change the background colour, text colour etc and save as draft and then publish - the publish seems to work (get green tick and sucess message) and then i enter THEME_NAME in the NAME field of table NWBC_CFG and then in the VALUE field I enter Copyofsap_corbu (which is the THEME_ID i see on the publish popup but on restarting I don't see any background colour change or anything.
    Am i missing something here ???
    Many thansk in advance

    Dear Silvia,
    That note released just 1 month before I think. And that solved my problem.
    Actually there are some other notes also we implemented prior to this note.
    Here I will copy paste some imp conversation from SAP Support Team. Hope it helps to you.
    "we strongly recommend to implement the latest notes for the UI theme
    designer, please see SAP Note 1852401.
    In your system the version 1.2.0 of Theme Designer should  be updated
    to version 1.2.2 . Please implement the Note 2010406.
    After implementation of the note, please try again to load NWBC
    Previews."
    "As I thought the NWBC previews pages have a small issue which was
    corrected in SP09 ( your system is currently on SP08 -
    SAPK-74008INSAPUI). For this reason the parameters for NWBC pages
    could not be loaded in theme designer and you see quick and expert as
    empty."
    "please apply note 1986795 once it is released. This should fix your
    issue."
    "I found the weak part in the code that is responsible for truncating
    the theme data and created a correection for that. SAP note: 2051350
    Please import this note into your system and then rerun your scenario.
    If this does not solve the scenario please feel free to reopen this
    message."
    " update the note 2051350 and added the manual activity of
    creating a data type in transaction SE11 according to the screenshot
    that you attached."
    "Please download the note in its new version 2, process the manual
    activity, and then import the automatic code correction of the note."
    "could you please implement the note 1990723 into your system and
    retest it again.
    If you still should  experience problems re-open this message."
    "We try to find a problem and give you a solution asap, but in your
    scenario are involved more as one software component ( ABAP, SAPUI5,
    ThemeDesigenr, NWBC, etc.) which should coordinated and works
    together. Moreover the individual setting in your system bring more
    complexity what needs a time. Sorry for that.
    The problem for a now is obviously somewhere in HTTP Configuration,
    instead of cache token the system send in a background the logon page
    (see attachment).
    And I would like to ask you to implement again one note 2021480."
    0001036616   Netviewer support sessions
    0001852401   UI Theme Designer for SAP NetWeaver AS ABAP (main SAP Note)
    0001986795   Use Company Logo in NWBC from Theme
    0001990723   ABAP method call /UI5/CL_THEME_UTIL=>SEND_GET_TO_SAME_HOST() takes very long
    0002010406   UI theme designer for ABAP: Version 1.2.2
    0002021480   Start of Fiori Launchpad or NWBC takes very long when using a custom theme
    0002051350   NWBC configuration: Theme parameter is truncated
    Regards,
    Namsheed.

  • Auto change background image in . Div

    Is there a way to have the background image of a Div change
    automatically.
    Either at regular intervals or randomly would be fine. The
    Div will be a
    protected part of a template. Currently the Div is set up as:
    #apDiv5 {
    position:absolute;
    width:970px;
    z-index:4;
    left: 62px;
    top: 147px;
    background-color: #cfba8e;
    background-repeat: no-repeat;
    background-image: url(../images/main-background-09-3.gif);
    thanks;
    Pat

    thanks Murray.
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:go4fns$46s$[email protected]..
    > Google JQuery....
    >
    > --
    > 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
    > ==================
    >
    >
    > "Pat Jones" <[email protected]> wrote in
    message
    > news:go49l4$q39$[email protected]..
    >> Is there a way to have the background image of a Div
    change
    >> automatically. Either at regular intervals or
    randomly would be fine. The
    >> Div will be a protected part of a template.
    Currently the Div is set up
    >> as:
    >>
    >> #apDiv5 {
    >> position:absolute;
    >> width:970px;
    >> z-index:4;
    >> left: 62px;
    >> top: 147px;
    >> background-color: #cfba8e;
    >> background-repeat: no-repeat;
    >> background-image:
    url(../images/main-background-09-3.gif);
    >> }
    >>
    >> thanks;
    >>
    >> Pat
    >>
    >

  • Changing background image of web-page

    I'm having problems changing the background image on the web-page. I want to use a custom image (one which I own.) But when I use the Page Inspector function to change it - it only changes the bottom half of the page with my custom image. The top half is the original iWeb template. I've tried adjusting the page size numbers, but the image simply does not move up! What's up with that? How can I change the entire background of the page to use my custom image? I feel like it should be a lot easier than it seems.

    The Darkroom is one theme that can't be user modified. You would be best served to create a blank page in the Darkroom theme, make a screenshot of the background w/o the spotlight in the center (a slice about 800 x 50 pixels would work well) and use it for the browser background in the Black theme so you get the white/light color navbar text.
    Happy New Year

  • How to change the background image on IP Phone 8861

    Hi Concern,
    I face some problem on changing background image on IP Phone 8861. I prepare 
    .png file as per below doc.
    Full size image - 800 pixels (width) X 480 pixels (height).
    Thumbnail image - 159 pixels (width) X 109 pixels (height).
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cuipph/8811_8841_8851_8861/10_5/english/adminguide/P881_BK_A92A3B94_00_adminguide-8811_41_51_61-10_5/P881_BK_A92A3B94_00_adminguide-8811_41_51_61-10_5_chapter_01010.html#P881_RF_C8927D88_00
    I upload the png and List.xml on cucm 10.5 as per above doc.
    List.xml Example 
    <CiscoIPPhoneImageList>
    <ImageItem Image="TFTP:Desktops/800x480x24/TN-Fountain.png" URL="TFTP:Desktops/640x480x24/p1-800X480.png"/>
    <ImageItem Image="TFTP:Desktops/800x480x24/TN-FullMoon.png" URL="TFTP:Desktops/640x480x24/p2-159X109.png"/>
    </CiscoIPPhoneImageList>
    Now i go to phone set and check new background picture not shows it says "no wallpaper server" something like that. 
    Please help on the issue. 
    Thanks
    Afzal

    Hi Jaime,
    Thanks is done .. 
    On dx650 phone background change is same procedure or different.
    File size is different i know but list.xml is same or different ?
    Or i can upload only one list.xml file just line add for dx650 phone.
    Thanks
    Afzal 

  • Problems with the background image in IE

    Hi I've been optimizing some pages for the different browsers in Dreamweaver CS4. They all work fine in Safari, Firefox and Opera, Internet Explorer is, however not showing the background image I have selected. I can't for the life of me see what's going wrong! Any help wopuld be appreciated. here is the code on my index page which I built from a template. I don't know if it's the editable areas that are going wrong!
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>test site</title>
    <!-- InstanceEndEditable -->
    <link href="oneColFixCtrHdr.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body {
    background-repeat: repeat-x;
    background-image:url(file:///Macintosh HD/Users/me/Documents/websites/face_divorce/test/images/test_back.png);
    .oneColFixCtrHdr #container {
    width: 770px;
    margin: 0 auto;
    border: 0;
    padding: 0;
    .oneColFixCtrHdr #header {
    text-align: centre;
    border: 0;
    padding: 0;
    .oneColFixCtrHdr #header h1 {
    <img src="../images/test_logo.png"
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    font-size: x-large;
    text-align: right;
    .oneColFixCtrHdr #mainContent {
    padding: 0;
    .oneColFixCtrHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    font-family: Verdana, Geneva, sans-serif;
    color: #6699cc;
    font-size: 9px;
    font-style: normal;
    line-height: normal;
    font-weight: lighter;
        text-align: center;
    -->
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <meta name="Description" content="facedivorce.com.com is an online resource tool to help guide you through the various stages of divorce.  Simply click on before, during or after divorce to find everything you could ever need to do with divorce.
    " />
    </head><meta name="keywords" content="test
    " />
    <!-- InstanceEndEditable -->
    <body class="oneColFixCtrHdr">
    <div id="container">
      <div class="oneColFixCtrHdr" id="header">
        <table width="740" border="0" align="center">
          <tr>
            <td  border="0" height="38" ></td>
            <td align="right" valign="bottom"><!-- InstanceBeginEditable name="HeaderLinks" -->
              <p class="TextButtons"><a href="index.html" class="TextButtons">Home</a>   <a href="featuredcompany.html" class="TextButtons">Featured Company</a>   <a href="youngpeople.html" class="TextButtons">Young People</a>    <a href="andmore.html" class="TextButtons">And More</a>    <a href="blog/index.html" class="TextButtons">Blog</a></p>
            <!-- InstanceEndEditable --></td>
          </tr>
          <tr>
            <th height="48" align="left" valign="bottom">
    <h1><a href="index.html" title="test"><img src="images/test_logo.png" alt="test" width="245" height="46" border="0" align="left" /></a></h1>
    </th>
            <td align="right" valign="bottom"><!-- InstanceBeginEditable name="HeaderButtons" --><a href="#"><img src="images/facebook-logo.png" alt="FaceBook Button" width="48" height="48" border="0" align="bottom" /></a> <a href="#"><img src="images/twitter_square.png" alt="Twitter Button" width="48" height="48" border="0" align="bottom" /></a><a href="#"><img src="images/blogbutton.png" alt="Blog Button" width="49" height="47" border="0" align="bottom" /></a>    <!-- InstanceEndEditable --></td>
          </tr>
        </table>
        <!-- end #header -->

    Hi
    The fact you are using a Mac is why both myself and JCellini assumed you where using a pre IE7 version.
    But the code you are using to test in IE will cause a problem with any 'virtual machine' such as crossover, because it cannot reference anything outside its own assigned section of the drive, and referencing the png in the way you are would be for it an invalid reference, it also would not work in any browser when you uploaded the site.
    Change - background-image:url(file:///Macintosh  HD/Users/myname/Documents/websites/test/Test/images/test_back.png);
    To - background-image:url(images/test_back.png);
    But if the region is not editable I would suggest you temporarily make it so, externalize your css to a css file, insert a link to the external css file in your head content, then lock the region once again. This way you will always be able to edit your css without worrying about 'locked regions'.
    PZ
    www.pziecina.com

  • OS 10.4.4, iLife 6 and Background images issue

    I upgraded my Mac from 10.4.3 to 10.4.4 (with Automatic Updates) and the same day purchased and installed the iLife 6.0 package (that updated the 5.x version that came with my Mac).
    A day or 2 later I decided to change the background photos on my displays. I had been using photos from my iPhoto library and as I scrolled around looking for appropriate pictures and trying them out System Preferences quit on me. I had to restart in order to bring back the ability to alter the background images. Other programs and operations remained unaffected but I was unable to bring up the "Change Background Image" option on the contextaul menu until I restarted the computer. iPhoto was not running at the time. I restarted the computer and the same issue cropped up several more times, always after scrolling thru and trying several images.
    These problems never occurred with 10.4.3 or before or iPhoto 5 or before. I don't know if the problem is with iPhoto or not, but I assume that there is interaction between System Preferences and iPhoto, or at least that System Preferences uses the iPhoto database files.
    Any ideas?
    TIA!

    (I thought the hardware listing was posted with the thread...)
    Hardware:
    PM G5 Dual 2.7, 2.5GB RAM, ATI Radeon 9650 with 256 MB VRAM, and 2 LCD Cinema Displays (1 23 In and the other 20 Inch). Both Cinema Displays are set to the maximum resolution (1920x1200 and 1680x1050).

  • Problems with the background image size in a photobook

    Hi there, I really need help here. When I make a photobook I want to display my images large, taking the whole page. To do that I put the image as a background and it's OK. My problem is that when I do this, iPhoto always crops it. I have to use the move tool to move the image up and down, left or right to chose a best position. I don't want to do this, I want my image to be shown perfectly from end to end. I have to resize the image in many ways, even used the book's native resolution but it still doesn't work. If I choose "fit photo to frame size" I end up with two stripes at the top and the bottom of the page.
    Please help me, what size should I resize my image to, so that iPhoto displays it as it is?
    Thank you

    Hi
    The fact you are using a Mac is why both myself and JCellini assumed you where using a pre IE7 version.
    But the code you are using to test in IE will cause a problem with any 'virtual machine' such as crossover, because it cannot reference anything outside its own assigned section of the drive, and referencing the png in the way you are would be for it an invalid reference, it also would not work in any browser when you uploaded the site.
    Change - background-image:url(file:///Macintosh  HD/Users/myname/Documents/websites/test/Test/images/test_back.png);
    To - background-image:url(images/test_back.png);
    But if the region is not editable I would suggest you temporarily make it so, externalize your css to a css file, insert a link to the external css file in your head content, then lock the region once again. This way you will always be able to edit your css without worrying about 'locked regions'.
    PZ
    www.pziecina.com

  • How to change background in bulk

    Hi All,
    I have made simulation type project in English version using Captivate 4. Now, I want to develop this project in multilingual. I can change the caption text easily using the export command. But I want to change the background for multilingual.
    Do you have any idea about it.
    Regards,
    Manshu

    If you have a lot of slides that share the same single background, you can change that background on multiple slides at once by:
    In Edit view, with the Filmstrip pane visible, hold down the CTRL key and click on each slide in the Filmstrip pane you want to change.
    Right-click one of the selected slides and choose Properties.
    On the Properties dialog, click the Change Background Image button and select the desired background.
    Result:  The background you choose will be applied to each of the slides selected in the Filmstrip pane.
    A better approach is to build your original project by importing external images into your project and then using the Update feature in the Captivate library to replace all your images with "localized language" versions.
    The advantage of using imported images is that Captivate "remembers" the folder location of each image and you can easily tell Captivate to reimport those images at any time:
    Capture all your images using dedicated screen capture software (the Snipping tool included in Windows 7 will work).  Save each image to a folder on your hard drive (or folders, if you want to be super organized) using meaningful file names to allow you to easily identify and update each image later.
    Build your initial Captivate project by importing each image from your hard drive.
    Make a backup copy of the original images on your hard drive.
    Overwrite the original images on your hard drive with "localized language" versions, using the exact same file names.
    In Captivate, select all the images in your Library that you want to update.
    Right-click one of the selected images and choose Update.
    Click the Update button.
    Save the updated project with a new file name that reflects the new language.
    Result:  Captivate replaces all the selected images with the updated versions from your hard drive.
    If you haven't already been using imported images in your project, you can start by importing an initial set of localized images and then use the Overwrite and Update trick for each successive language.
    In a pinch, you can also capture all your images using Captivate, but this requires you to first export the images from the Captivate Library to a folder, then reimport them one at a time from the hard drive to establish the "folder path" that Captivate needs for the Update feature to work.
    Cheers,
    John

  • Working with Background images

    HI. I have a project which contains a few slides with the same background image...an image that was caught with Snagit and then merged onto the slide. I anticipate needing to replace this image with an updated one in the near future. Is there a quick and easy way of replacing that image (which contains a number of captions, highlight boxes, etc) without having to recreate the entire slide from scratch?

    Hello again,
    Please save the image (p.e. as a PNG) on your PC, do not copy it to the Clipboard. The workaround I described would work, but here is even a shorter way:
    Open the Slide Properties (righ mouse click menu)
    Use the button 'Change background image' and point to the image saved.
    The background image will be replaced, you will see both of them in the Library in this case
    But there will be no problem to delete the old image (right mouse click on the image in the Library)
    Try it,
    Lilybiri

Maybe you are looking for

  • Hp envy ultrabook 6-1070el Beats audio problem

    Hi, I'm running Windows 8 Pro 64-bit on my new envy ultrabook 6-1070el, and I've noticed that sometimes, when i'm  listening to something, the beats speakers make a strange noise, so, i tried to unistall the IDT audio driver, and the problem stopped,

  • Non cumulative cube

    hi, i have a problem in changing the fields in validity table. in cube i went to extras->maintain non cumulative values in that along with 0calday i have ticked two more fields. now i want to remove those fields from validity table. but if i click on

  • 720p signal on 1080p television set

    How well does it work when you watch a 720p signal on a 1080p television set?

  • CF Report Builder Question

    Is this even possible? I have a report where I want the user to be able to select the columns that are displayed. I'll use these selections as input parameters, but I'm not sure how to place the column headers on the report. What can I do to only inc

  • Merge BPEL Servers

    Hi, We have an interesting issue. We have a legacy 10.1.3.1 instance that sits on older kit and runs a single application. We have a new 10.1.3.4 HA Cluster implementation that is running a number of new BPEL Applications. The legacy BPEL Processes a