Have Image Restore only when another object is selected

I have a menu of images at the top. When the mouse rolls over
them a new layer appears on the page according to which logo was
rolled over. When the mouse rolls over the image(s) i want Two
things to happen 1) Image changes from gray scale to color (easy,
rollover image) but 2) I want the image to remain color even when
the mouse is not over it and only change back to gray scale when
another image at the top is rolled over. Currently the image will
only stay color when the mouse is over it. I need the corresponding
image to remain in color when its layer is in view. I have thought
of a few ways to do this with putting each image in a layer but i
want an easier way. Any suggestions? Thanks in advance!

Is this possible? Am I clear on what i want?

Similar Messages

  • How do I make a textured image appear only when the button is selected?

    I am trying to create a DVD menu that has a textured image (bulletholes) appear only when a button highlighted (ie, about to be selected).
    The only think I can work out is how to make the button appear as a sub-picture that has a solid colour appear on top of it when selected.
    In summary, here is what i am trying to achieve:
    1- there are 5 DVD menu items
    2 - the user can select any of those items
    3- as they move between each item, I want a I want a multi-coloured (textured) image to appear.
    I can not work this out.
    Any advice greatly appreciated.
    Richard.

    Thanks for this.  This is most surprising to hear!
    I have been using DVD Studio Pro for years and we have been able to do add textured or multicoloured buttons.
    Am I correct in understanding that in Encore, if a menu has 6 options, I need to create 6 different menus and import them all and use the auto activate state to make this work?
    Is there a workaround for making this work on a computer?

  • My iphone 4 is telling me I have to restore but when I plug in and connect to itunes, it freezes about 30-50 % through the process. Now I can't use my phone at all? I am waiting about 1-3 hours for this process to finish and nothing ever happens. HELP!!

    My iphone 4 is telling me I have to restore but when I plug in and connect to itunes, it freezes about 30-50 % through the process. Now I can't use my phone at all? I am waiting about 1-3 hours for this process to finish and nothing ever happens. HELP!!

    Put it into DFU mode - hold the sleep/wake button and home button until the screen goes black (ignoring the slide to turn off slider). When the screen goes black release the sleep/wake button but hold the home button. Continue holding the home button for 10 seconds, then release it. The screen should stay black. Plug it into iTunes and it should come up with this message "iTunes has detected an iPhone in recovery mode. It must be restored before use", that's when it is successfully in DFU mode. Now press the restore button in iTunes and it should run smoothly :)

  • [svn:fx-trunk] 7073: When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.

    Revision: 7073
    Author:   [email protected]
    Date:     2009-05-19 08:27:59 -0700 (Tue, 19 May 2009)
    Log Message:
    When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.
    QA Notes:
    Doc Notes:
    Bugs: SDK-19717
    Reviewers: Alex
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19717
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as

    Revision: 7073
    Author:   [email protected]
    Date:     2009-05-19 08:27:59 -0700 (Tue, 19 May 2009)
    Log Message:
    When looking around a tab group to determine which object to focus on, not only should the object be selected, but it should also be enabled and visible.
    QA Notes:
    Doc Notes:
    Bugs: SDK-19717
    Reviewers: Alex
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19717
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/FocusManager.as

  • I have 4 computers only, when iam going to authorize  it showing you can't aurourize more than 5 computers , i done everything as per itunes,like deaurthorize

    have 4 computers only, when iam going to authorize  it showing you can't aurourize more than 5 computers ,
    i done everything as per itunes,like deaurthorize,in my ac 7 every this in itubes help page

    Click on iTunes Store (top center of iTunes screen), then Account (under MUSIC LINKS on right of screen).  Enter your Apple ID and password.  On the next screen the last entry under Apple ID Summary should look like this:
    If you don't have access to some or all of your authorized computers you can click the Deauthorize All button, then reauthorize those that you're currently using.  I don't recall there being a scenario where Deauthorize All would not appear based on the number of authorized systems.

  • Making a form field required when another field is selected

    I have a contact form with the usual fields required (name, address, city, etc.). I'm adding a Country pull-down list to the form, which will default to the US being selected. Since a "State" field is not relevant for anyone filling out the form from another country, I'd like to make the State field required only if the country selected is United States, and not required for any other country. Is there a way to do this?
    Thanks,
    R-Co

    What you need is to be able to create a required textfield when the first textfield shows USA and destroy the required field when another country is selected.
    The following may help to understand create and destroy
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Deleting and rebuilding validations</title>
    <link href="http://labs.adobe.com/technologies/spry/widgets/textfieldvalidation/SpryValidationTextFiel d.css" rel="stylesheet">
    </head>
    <body>
    <form id="form1" method="post" action="#">
      <p>
        <input type="radio" name="radio" id="Married" value="Married" onclick="val(this);">
        <label for="Married">Married</label>
      </p>
      <p>
        <input type="radio" name="radio" id="Defacto" value="Defacto" onclick="val(this);">
        <label for="Defacto">Defacto</label>
      </p>
      <p>
        <input type="radio" name="radio" id="Single" value="Single" onclick="val(this);">
        <label for="radio">Single</label>
      </p>
      <hr>
      <span id="sprytextfield1">
        <label for="f_married">Married</label>
        <input name="married" id="f_married" type="text" value="">
        <span class="textfieldRequiredMsg">A value is required.</span>
      </span>
      <span id="sprytextfield2">
        <label for="f_defacto">Defacto</label>
        <input name="defacto" id="f_defacto" type="text" value="">
        <span class="textfieldRequiredMsg">A value is required.</span>
      </span>
      <span id="sprytextfield3">
        <label for="f_single">Single</label>
        <input name="single" id="f_single" type="text" value="">
        <span class="textfieldRequiredMsg">A value is required.</span>
      </span>
      <hr>
      <input type="submit" value="Submit" />
    </form>
    <script src="http://labs.adobe.com/technologies/spry/includes_minified/SpryValidationTextField.js"></script>
    <script>
    var sprytextfield1,
            sprytextfield2,
            sprytextfield3;
    // build validations and delete / destroy them
    function val(e){
        // get the value
        value = e.value;
        // see what radion button we have
        if(value == "Married"){
            // if there inst a validaton build one
            if(!sprytextfield1){
                sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
            // if there is a validaiton in sprytextfield destory it, and clear the variable
            if(sprytextfield2 && sprytextfield2.destroy){
                sprytextfield2.resetClasses();
                sprytextfield2.destroy();
                sprytextfield2 = null;
            // same as the rest
            if(sprytextfield3 && sprytextfield3.destroy){
                sprytextfield3.resetClasses();
                sprytextfield3.destroy();
                sprytextfield3 = null;
        } else if(value == 'Defacto'){
            if(!sprytextfield2){
                sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");
            if(sprytextfield1 && sprytextfield1.destroy){
                sprytextfield1.resetClasses();
                sprytextfield1.destroy();
                sprytextfield1 = null;
            if(sprytextfield3 && sprytextfield3.destroy){
                sprytextfield3.resetClasses();
                sprytextfield3.destroy();
                sprytextfield3 = null;
        } else if(value == 'Single'){
            if(!sprytextfield3){
                sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3");
            if(sprytextfield1 && sprytextfield1.destroy){
                sprytextfield1.resetClasses();
                sprytextfield1.destroy();
                sprytextfield1 = null;
            if(sprytextfield2 && sprytextfield2.destroy){
                sprytextfield2.resetClasses();
                sprytextfield2.destroy();
                sprytextfield2 = null;
        // proceed with the rest as normal
        return true;
    </script>
    </body>
    </html>

  • Why does my iPad have music on it when I haven't selected any on I-tunes

    Why does my iPad have music on it when I haven't selected any on I-tunes?

    Hi kjkangas05,
    If you are having issues syncing content to your iPhone due to a reported lack of free space, you may find the following article helpful:
    iOS: "Not enough free space" alert when trying to sync
    http://support.apple.com/kb/ts1503
    Regards,
    - Brenden

  • Start automatically an action only when another action finish

    Hi all,
    first, sorry for my bad English....
    I am an Italian Architect, I use Photoshop actions mostly to manage many big tiff files.
    I try to solve this problem since long time.... but so far I can't..  :-(
    This is my problem: I woul'd like to use some actions in sequence launcing only the first one, and when the first finish the second starts automatically, when the second finish, the third starts automatically, and so on.
    Example
    I have 3 actions and a folder "X" that contain tiff files:
    I launch action "A" that resize, colorize, etc tiffs files in folder "X" and put them in a folder "Y"
    only WHEN action "A" finish........
    action "B" starts and works in folder "Y", grouping logically tiff files in some layerized PSD files and putting them in folder "Z"
    only WHEN action "B" finish........
    action "C" starts and works on PSD files in folder "Z" doing some "save as" at different resolution in some folders (folder "JPG", folder "PDF", etc)
    I hope to explain clearly my problem.
    Thanks a lot
    Emanuela

    Hi Mylenium,
    I will try to call existing actions creating a new one (?), but I tell you that I don't understand your question "Does that not give the same result, just only per individual file?"
    thanks
    Emanuela

  • How to make form as read only when another time as  user sees it..

    Hi All,
    I have a form to raise the issue. once the issue is raised it appears in the issue raised reports( that is form on a report )
    so all can view this report and click on issue no ..the form with details appear .
    but i want to restrict it , by allowing only one up manager to view the form on a report in editable format rest all can just view it .
    how can i do this?????????
    can any one help me with this ????..
    my approach is like this ...
    a column called "checked shud be added to issue table , then its values must be set to "raised" when issue is submitted for the very first time..( so it is zero when the end user is submitting it ).
    when ( the logged in user =1 up manager or checked!="raised") then
    form fields to be displayed as edited
    else
    form fields need to be read only .
    Thanks & Regards,
    Nandini Thakur.
    Edited by: Nandini thakur on Jun 26, 2010 12:04 PM

    Nandini,
    If you edit any item, you can see a section where you can specify "Read-Only" condition. Here you can write your read-only logic using SQL OR PL/SQL or predefined conditions.
    Cheers,
    Hari

  • Scipt which starts a Program only when another program is running

    Hello again.
    I want to activate compiz-fusion, but reactivate kwin when playing games on wine (caus fps will break down very hard when compiz is running).
    Ive read lots of forums and tutorials and scripted this scipt, which runs fine and smoothy.
    BUT when he activates for example "kwin --repalce", the output from kwin blocks further walking thrugh the script and it "hangs"
    Do anyone of you has ideas to solve my problem. I welcome completly other ideas of solving my quest, too.
    Thanks a lot !
    #!/bin/bash
    while [ '1' = '1' ]
    do
    if [ $( ps aux | grep -c wineserver ) = '1' ]
    then
    #WINE LÄUFT NICHT
    if [ $( ps aux | grep -c compiz ) = '1' ]
    then
    echo Wine lauft nicht und compiz soll gestartet werden
    compiz --replace --sm-disable --ignore-desktop-hints ccp
    fi
    else
    #WINE LÄUFT
    if [ $( ps aux | grep -c kwin ) = '1' ]
    then
    echo Wine lauft und kwin soll gestartet werden
    kwin --replace
    fi
    fi
    sleep 2
    done
    Last edited by stonix_015 (2012-02-16 19:59:06)

    pmd wrote:
    This can solve your problem:
    kwin --replace &
    But I'm not sure if it will
    If you are wondering where your post went; It seems you hit the 'report' link, not the 'reply' link.    (about 15 minutes ago)

  • HT4157 my iPad seems to have Verizon information only when I try to set up at&t - is it OK to install at&t over it?

    iPad wi-fi 4G - seems to be Verizon information on the pad - I want at&t.
    No account set up yet - Just want to know if instructions for 3G pad is same, and can I go over or delete verizon?

    A Verizon iPAD only works with Verizon.  The only way to get on AT&T is to sell your Verizon iPAD and buy the AT&T version of the iPAD.

  • Forwarding calls only when I have no signal?

    Hey folks,
    I just moved and have really poor reception in my house. I tried a signal booster and that didn't work. I also thought I could maybe forward calls to a skype phone, but I don't want to have to turn call forwarding on and off every time I come and go.
    So does anyone have any tips? Can I have calls forwarded only when my phone has no signal or is turned off?
    Thanks,
    Joe

    I have a new iPhone 3G and I have the exact same question and challenge, poor reception at home and at my office. I used to have a Palm 750 (Mobile 6), and it had that feature, but on my new 3G, I have to reenter the call forward number every time, unless I am missing sometime. Seems ridiculous. It should maintain a list of at least 3-5 recently call forwarded numbers, as most persons would only have a select few numbers that they would ever call forward. Also, my Palm 750 had a special icon on the face page showing that I had the call forwarding feature turned on. That was a nice reminder, if I left that building and forgot to un-forward my calls.

  • SCCM 2012 powershell only when no user is logged in

    Hi All,
    I think this is probably me, I am trying to run a powershell script which calls an MSI in the Application node, seems to work fine when the user is logged on, but I wanted to run this as, only when no user is logged on, and install for system. It seems to
    start and just exit straight away.
    Command line: that I use: powershell.exe -noprofile -executionpolicy bypass -file .\Install.ps1 is this correct to run as system?

    I'm also having a very similar issue. In my scenario, I have a PowerShell script that runs an software update tool with different parameters based on the value of a specific registry entry. I was testing the SCCM Application when logged on and just running
    for Software Center and it runs as expected, but when I changed the User Experience from "Run whether or not a user is logged on" to "Only when no users are logged on" and it fails.  In the AppEnforce.log the following lines are present:
    <![LOG[+++ Starting Install enforcement for App DT "Set New Servers - addiman" ApplicationDeliveryType - ScopeId_2E6C34BD-8633-43D8-B5B5-09A1C291D45B/DeploymentType_56ca55b4-ce9b-4dfd-a64f-db3da408013b, Revision - 5, ContentPath
    - C:\WINDOWS\ccmcache\3n, Execution Context - System]LOG]!><time="11:06:10.878+480" date="02-12-2015" component="AppEnforce" context="" type="1" thread="1628" file="appprovider.cpp:1702">
    <![LOG[The enforcement of this App DT requires all users to be logged off.  The deployment cannot specify a user collection when the deployment type requires that a user must be logged off.  Aborting enforcement.]LOG]!><time="11:06:10.879+480"
    date="02-12-2015" component="AppEnforce" context="" type="3" thread="1628" file="appprovider.cpp:1732">
    <![LOG[CommenceEnforcement failed with error 0x87d0031d.]LOG]!><time="11:06:10.880+480" date="02-12-2015" component="AppEnforce" context="" type="3" thread="1628" file="appprovider.cpp:1825">
    <![LOG[Method CommenceEnforcement failed with error code 87D0031D]LOG]!><time="11:06:10.880+480" date="02-12-2015" component="AppEnforce" context="" type="3" thread="1628" file="appprovider.cpp:2390">
    <![LOG[++++++ Failed to enforce app. Error 0x87d0031d. ++++++]LOG]!><time="11:06:10.885+480" date="02-12-2015" component="AppEnforce" context="" type="3"
    thread="1628" file="appprovider.cpp:2467">
    I've did confirm that the Deployment was not to a User Collection as is implied by the error message and I even went as far as deleting and recreating the Deployment.
    In addition, I have another Application (Java 7 Update 31) that I have set to "Only when no users to login" and it installs as expected. When run from Software Center the Status changes to "Waiting for users to log off" and it is installed
    after I log off.
    Is there some issue with this when trying to run a PowerShell script when logged off?
    Thank you in advance for any insight as to this in consistent behavior.
    Bill Hunt

  • Count only when a external TTL signal is high

    Hallo,
    I'm using LabView 6.1 on WinXP with a NI6014 DAQ Board...
    I have to count a some TTL pulses only when another TTL signal is high (start the count when the signal goes high and stop it when the signal goes low). Can I program the DAQ to do this (like a gate function) so that in the meanwhile my program can do other things, and only at the end I read the result of the count?
    Thank you,
    Pixo

    Hello Pixo,
    Thank you for your inquiry regarding counters on the PCI-6014. It sounds like you would like a gate function for the counter that you are using. There is a gate for each counter that enables the counter when the gate line is high and disables the counter when this line is low. The I/O connector pin assignment and signal descriptions can be found here . To use the counter you must first configure it and then use a Counter Start VI. Then when the gate is high the counter will increment and the value can be read at the end of the program like you had stated. I have attached a great example VI to get you started with counters. Other examples like this can be found in LabVIEW 6.1 under �Find Examp
    les from the LabVIEW startup screen.
    I hope these resources help. Let me know if I can further assist you.
    Shea C.
    Applications Engineering
    Attachments:
    Getting_Started_Counters.vi ‏64 KB

  • I erroneously deleted some background icons, that now have left me with only thumbnail images, what appears when I want to enlarge is a grey circle containing a black exclamation symbol, how can I get back full function and undo my mistake

    I have erroneoulsy deleted icons repetious images from the computer which then affected my iphoto images, leaving me in some cases only with the thembnail image.   When I try to enlarge or perform any other function all that appears is a black field containing a grey circle with a black exclamation symbol( !)
    within it.  How to I get back full function of these affected images and undo my goof up.   I have tried restore, but my attempts have not proved successful. 
    Help !!!
    silvercoho

    What exactly did you do to delete these?
    How did you try to "restore" and what did you try to restore?
    Probably the only solution is to restore your backup of the iPhoto library  from before you did this
    LN

Maybe you are looking for

  • Invoke exe s using stored procedures

    Is it possible to create a stored procedures and invoke other exe s like sqlldr, notepad, etc? i am interested in writing a stored procedure that will invoke sqlldr and import-export data for me. Purvi

  • Parser problem, maybe??

    I am new to SAX with Java. I am using Window XP and I have downloaded Java 2 (sdk1.4.2_01) and to run with SAX, I also downloaded the Java Web Services Package (jwsdp-1.3), which will allow me to run DOM and SAX. However, I still can't get my program

  • Desktop icons change their size on their own

    The icons on my 2011 Macbook Pro 17" just started to change their size on their own. I first thought that I've pressed a shortcut or something but sometimes the icons will just go to maximum or minimum size on their own. Then I have to go to the menu

  • Restore iphone backup

    Hello.  I need to restore my iPhone backup.  I do not ever remember password protecting my sync/backup.  The restore is asking for a password.  I do not know what to do.

  • How can I download iOS 6 to my 16 gig ipad 2

    I have been trying to download iOS 6 to my 16 gig ipad 2 . I have tried several times using itunes and downloading directly and it doesn't work. Any ideas?