How to change opacity with mouseover

I have a photo slider with Next/Previous arrows and dots at the bottom that represent each photo, how do I make them appear only when the mouse hovers over the photo slider? Im new and don't know coding, it was really hard trying to animate that in my timeline since arrows already have other animations on them

I believe that you can do that. Put your code in Stage/compositionReady.
if your image is called 'image' and your button is called 'nextButton'.
When you mouse enter on the image it will show the button and you mouse out it will hide the button. Use the same code for the back button.
sym.$("image").bind('mouseenter',function(){
     sym.$('nextButton').animate({ 'opacity': 1.0}, 1000);});
sym.$("image").bind('mouseleave',function(){
     sym.$('nextButton').animate({ 'opacity': 0.0}, 1000);});

Similar Messages

  • How to change hotkeys with an azerty keyboard ?

    Hello,
    I'm having troubles with changing hotkeys : I have an AZERTY keyboard, and the default configuration for hotkeys are written for QWERTY keyboards. And if I I want to change a hotkey, it considers I have a QWERTY keyboard, so I can't change some of the hotkeys.
    Typically, if I type "," (the default hotkey for one step back), it steps back to the frame before. OK.
    But if I want to enter "," for "one step back" in the "change hotkey" feature, it enters "M", although it is already set to ",".  Impossible to change it to ",". NOT OK.
    The problem is that for "one step forward", it is a bullet point, and it doesn't work on AZERTY devices, because it is behind a SHIFT key ! So I need to change this.
    Once again, it worked in the earlier version of Flash.....
    Do you have an idea of how to change this ?
    Thanks (I searched and didn't find anything, but I'm sure I'm not the first one).

    Ok, I really needed this to work so I searched for the disposition of a QWERTY keyboard, and entered the key I wanted for "one step forward" : the "M" in AZERTY is the ";" for QWERTY. Exactly what I wanted...
    But this is a pretty annoying bug !
    Anyway, all the bugs are annoying.... Especially when all that worked before....

  • How to change password with commadmin command?

    I am using JES 2004Q2, Directory shema2.
    HOw to change password for email account ?
    Email account created in identity server with commadmin comand.
    I can't find this information in :
    "Sun Java System Communications Services 6 2004Q2 User Management Utility Administration Guide"

    http://docs.sun.com/source/817-5703/commcli_ref.html#wp1021656
    commadmin doesn't seem to offer a password modify/replace option.
    You can use the Directory Console to replace a password, or ldapmodify, or webmail/comms express.

  • How to change Opacity Blending on multiple clips...??

    First the problem:
    Whenever I open a Premiere v6.5 project, CS4 does a "conversion."
    Maddeningly, during this process, it changes the Opacity\Blending Mode of every single clip in the project to "Color" instead of leaving it at "Normal."
    Since I am working with Stereo (3D) footage with a different camera on V2 & V1, I always have at least two, and often many more, video tracks (for titles, etc).
    This means I have to go through every single clip on every single video track and reset it to Normal before I can proceed with the project! This can be upwards of 500 clips.
    PITA!!
    1) Does anyone have any idea why this is happening & how to prevent it?
    or,
    2) Is there a way to change this setting in all the clips at the same time?
    Whenever I select multiple clips, no Effect Settings (or whatever Shift 5 is called) appear. Only there for single clips.
    TIA,:-)

    Do one clip, copy (rightclick) the clip, select all the others and paste attributes.

  • How to change "open with" defaults via command line?!?

    folks,
    i know that if i get info on a file -- in this case, a filemaker 5.5 file -- i can choose the default "open with" settings and apply those settings to all files of that kind. see the attached image for what i mean.
    but how do i do that via the command line?
    thus far, here's what i've got: i know that i can open a document called "scrubbing shell.sh" on my desktop WITH either MS Word of TextEdit by calling:
    open -a textedit /Users/david/Desktop/scrubbing-shell.sh
    or
    open -a Microsoft\ Word /Users/david/Desktop/scrubbing-shell.sh
    no sweat. BUT....how do i set the defaults so that it ALWAYS opens with that app in the future when double-clicking via the GUI?
    many thanks, ya'll!
    david koff
    associate systems admin
    the j. paul getty trust
    dkoff AT getty DOT edu

    Hi David,
       OK, I investigated the new format and treatment. It appears that the first entry in the property list file that matches the file being opened wins. The Finder may still honor the new format; when I moved my old Panther file into Tiger it seemed to work. However, in other ways, the Finder doesn't recognize the old format, which is the format of the FileMaker entries you posted.
       The Finder puts all of the new format entries at the beginning of the property list file. If you change a preference that was controlled by an old format entry, the Finder won't edit that entry. What it will do is to create a new entry in the new format closer to the beginning of the file than any of the old-format entries. SInce the new entry comes first, the old one doesn't apply. If you then edit the preference and change it back to what it was before, the Finder will edit the new entry. Consider the following sequence of events and commands:
    % cp ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy.plist
    I change all GIF files to be opened by GraphicConverter instead of Preview, which is an old setting in the old format.
    % plutil -convert xml1 ~/Library/Preferences/com.apple.LaunchServices.plist
    % diff --text ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy.plist
    404,409d403
    <      <dict>
    <         <key>LSHandlerContentType</key>
    <         <string>com.compuserve.gif</string>
    <         <key>LSHandlerRoleAll</key>
    <         <string>com.lemkesoft.graphicconverter</string>
    <      </dict>
    Then I change all the GIF files to be opened by Preview again.
    % plutil -convert xml1 ~/Library/Preferences/com.apple.LaunchServices.plist
    % cp ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy2.plist
    % diff --text ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy.plist
    404,409d403
    <       <dict>
    <          <key>LSHandlerContentType</key>
    <          <string>com.compuserve.gif</string>
    <          <key>LSHandlerRoleAll</key>
    <          <string>com.apple.preview</string>
    <       </dict>
    % diff --text ~/Library/Preferences/com.apple.LaunchServices.plist ~/Library/Preferences/com.apple.LaunchServices_copy2.plist
    408c408
    <          <string>com.apple.preview</string>
              <string>com.lemkesoft.graphicconverter</string>
       Note that I had to change the file to text after every change because the Finder converted the file to binary format every time it edited it. I didn't have to logout or reboot; the property list file change less than a second after the preference was set. I'm guessing that because you were just looking at the old-format entry, you missed the real changes to your property list file. Did it change from text to binary format? Try the command line tools that I used above.
       Note that this means that it matters where you put your entries in the property list file if you edit it.
    Gary
    ~~~~
       There are only 10 kinds of people in the world. Those
       who understand binary numbers and those who don't.

  • How to change "Open With" list?

    Hi,
    I have a file extension for my source files which is PRG. So I have main.prg, test.prg, etc..
    Now, how can I change the default application that opens all files with that extension? I already tried "Open With" -> "Other.." -> Selct a application, click the "Always open with" checkbox, but finder still keeps opening my PRG files with the standard application..
    Is there any other way to do it?
    Tx!
    Sincerely,
    Patrick Mast,
    xHarbour.com Inc.
    http://www.xHarbour.com
    http://www.WinFakt.be

    Thank you all. I got it working now.
    Tx!
    Sincerely,
    Patrick Mast,
    xHarbour.com Inc.
    http://www.xHarbour.com
    http://www.WinFakt.be

  • How to change "Open With" default

    When one has, say, a .tiff image stored in the Documents folder how does one change the "open with" default? For instance, if Photoshop is given as the default, how does one change this to Preview?

    HI,
    Right or control click the file, then click Get Info. Click the Open With discovery triangle and select the application you want to open that file with. You may have to click Other and navigate to the Applications folder to select the app, ie., Preview.
    http://www.ehow.com/how4548206quick-change-files-default-application.html
    Carolyn
    Message was edited by: Carolyn Samit

  • How to change Images with ImageIcon

    Hello everyone, this is my first post on the forums.
    I am struggling at the moment to find a way to change images in my program. I am making a card game and when the user clicks a button it will replace the card he has with another card. I thought the following code would work but apparently it doesnt:
    String cardPathA = "image1.gif";
    ImageIcon imageCardA = new ImageIcon(cardPathA);   //cardPathA for example is image1.gif
    //during the program the user changes cards so it should now show image2.gif
    cardPathA = "image2.gif";
    imageCardA.setImage(cardPathA);The error occurs when compiling and it reads: "+setImage(java.awt.Image) in javax.swing.ImageIcon cannot be applied to (java.langlString)+".
    I have searched all over the internet and I haven't found anything. I would appreciate some help. Thanks :)

    im not really sure i made a quick example to show how I would change the imageIcon in a button, just change the paths for cardPathA and cardPathB for your pictures to get it working.
    The only other thing i can think of is maybe to call repaint() for the components you are trying to change the image?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class ImageChange extends JFrame implements ActionListener{
             final private String cardPathA;
            final private String cardPathB;
         private ImageIcon myImageIcon;
            private JButton changeCard;
            private int counter;
            private JPanel panel;
            private JButton imageButton;
         public ImageChange(){       
                changeCard = new JButton("Change Button");
                counter = 0;
                cardPathA = "1.gif";
                cardPathB = "2.gif";
                myImageIcon = new ImageIcon(cardPathA);
                imageButton = new JButton(myImageIcon);
            public void makeGui(){
                changeCard.addActionListener(this);
                panel = new JPanel(new BorderLayout());
                panel.add(changeCard,BorderLayout.NORTH);
                panel.add(imageButton,BorderLayout.CENTER);
                this.add(panel);
                this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
                this.pack();
                this.setVisible(true);
         public void actionPerformed (ActionEvent menuChoice){
                counter++;
                if(counter%2 ==0){             
                    myImageIcon = new ImageIcon(cardPathA);
                    imageButton.setIcon(myImageIcon);
                }else{
                    myImageIcon = new ImageIcon(cardPathB);
                    imageButton.setIcon(myImageIcon);
            public static void main(String[] args){
                ImageChange test = new ImageChange();
                test.makeGui();
    }Calypso

  • How to change "Open With" Settings

    At work I use a PowerMac to do artwork and such, but I haven't had it long. Before then I had a crappy PC (that thankfully died, so I could convince my boss to get me a PowerMac XD). The boss for a while used CorelDRAW, and a lot of old files are in this format on an external hard drive. Unfortunately for Mac users the file extension is .cdr which is also a disc image format. I want to change the "Open With" settings on all of these files, but I want to be able to double-click on cdr disc images and mount them. Is there some way to do this, someway to get OS X to know that those files aren't disc images but CorelDRAW documents? If it makes it any easier (dunno if it would matter) all of the CorelDRAW documents will always be stored on the external hard drive.

    I have about 4 or 5 of them on my desktop right now. OS X by default can mount them, and by default has the cdr extension labeled as a disc image. They're typically used by Toast to clone CDs directly without changing their file structure in any way, especially useful for bootable discs. There's some Windows and UNIX programs that can use them as well.
    I've already made the CorelDRAW files easily searchable through Spotlight by inserting metadata, but I was just wondering if there was a way to tell OS X that these aren't disc images, but CorelDRAW files and have them open in Illustrator by default. If there isn't oh well.

  • How to change syncing with Itunes library with another computer?

    How can I get reed of the sync with my MacPro, and sync my iPhone with my MacBookPro?
    I was syncing everything so far manually.
    I would like to keep all my app's in iphone (their data, settings) unchanged.
    Both of my computers use the same itunes account, but I want to use MacPro strictly for my audioproductions and basically want to "de-sync" it with iPhone.
    please help,
    Nenad

    Thank you roaminggnome,
    plug it in MacBookPro and sync it? I did try that and it does sync, but if I want to sync App's (with MBP) it will warned me that content of iphone will be replaced, and only thing I am concerned are the apps and all the data that has been saved with it.
    Move everything from mac pro means ALL the music,photos...?

  • Smartforms - how to change the with of a column in main

    Hi all,
    How do I go about to make one column in the main wider so that the whole column title is fit on one line? E.g.:
    how it is:    
    tax amou
    nt
    how I want it to be:
    % tax amount
    Thanks in advance for all the helpful answers!
    BR,
    Armin

    Armin,
    Check the Template of the MAIN window under which you will be able to change the width  of the column in the Table Painter Details.
    K.Kiran.

  • How to change input with insignia

    Can anyone help me with changing the input on my Insignia tv with my Verizon remote? I am using the Phillips remote. Thanks for any help you can offer.

    If your remote is already programmed to your TV, its done in one of two ways.
    1) if your remote has 4 buttons across the top: Press TV, release, then the A/V (input) button at the bottom left
    2) if your remote has 2 buttons across the top: Press and release the A/V (tv input) button at the bottom left
    If this does not work, it means your remote is likely not programmed to your television. Please visit http://bit.ly/pNIM87 to assist you in the programming.
    If you need further assistance, please send me a private message.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • How to change COMPATIBLE with a physical standby database?

    Hello.
    The obvious answer is do it on both the primary and the standby at the same time... since the reference manual says : "When using a standby database, this parameter must have the same value on both the primary and standby databases.".
    However, I was wondering, I have a 10.2.0.3 DB with compatible=9.2.0.5. What will happen if I leave the parameter to 9.2.0.5 on the standby and just make the change to 10.2.0.3 on the primary? Would I be able to continue to apply the logs on the physical standby? Would I be able to open it ? (I understand that the transport won't probably work anymore and that I won't be able to switchover)
    I guess those 2 questions are stupid but I haven't found any clear statement yet.
    Please stay tolerant. Thank you.
    Gregory
    PS: I know what are the alternatives.

    So the answer is obviously: We cannot do that. That completely makes sense btw. I tried with 10.2.0.1 to 10.2.0.4 and I got:
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 10/22/2008 18:35:55
    RMAN-11003: failure during parse/execution of SQL statement: alter
    database recover logfile '/u01/app/oracle/oradata/WHITE/redo02.log'
    ORA-00331: log version 10.2.0.4.0 incompatible with ORACLE version 10.2.0.1.0
    ORA-00334: archived log: '/u01/app/oracle/oradata/WHITE/redo02.log'
    I should have think about it before I asked. That would have meant we could revert the database from 10g to 9i any time... And the bootstrap changes are not stored in the redo log...
    Gregory

  • How to change Tiff with black background

    Hi all
    Here I have attached test.tif file shown normal in windows explorer, while I am opening for editing in photoshop it opens with black background can any one met this problem before?
    My image thumbnails in windows explorer
    My image thumbnails in Photoshop CS2
    the original tiff image is here
    http://www.4shared.com/photo/fTznyfQr/test.html
    thanks in advance
    regards
    a r u l

    If you're palcing the file into InDesign, you can import the Alpha Channel as a mask directly:
    In the InDesign Place dialog, make sure the "Show import options" box is checked, and open the file. In the resulting Import Options dialog, select "Alpha 1" for Alpha Channel in the Image tab. This will cause the black areas of the Alpha Channel to be transparent.
    The results may look like crap on screen if you have your InDesign prefs set to "Proxy" for Raster Images in Display Performance, but it will still print or make a PDF just fine. Youe can change the pref to High Resolution in ID if the low-res proxy bothers you.

  • How to change devices with student version

    I have the student version so can only have CC on 2 devices, I have a new laptop so need to change one of these devices. how do i do this?

    Remove license on a computer http://forums.adobe.com/thread/1442423?tstart=0 may help
    -http://helpx.adobe.com/x-productkb/policy-pricing/error-maxium-acitvation-exceeded.html

Maybe you are looking for

  • "itunes has stopped working", on Windows Vista during sync.

    I just got an iPhone 4 with 4.2.6 software and just downloaded iTunes, so it is the latest version. Tried installing it in as Administrator. I uninstalled Quicktime. Uninstalled then reinstalled iTunes. Even tried compatibility in XP, and even during

  • How to read and write Binary files from Forms 6i C/S ?

    Hi There, I have a situation, where user wants to store attachements to a record (Could be any type of file, TXT, TIFF, or Word Doc etc.) and wanted to retreive later if they wanted to edit/read. We are using forms 6i and Oracle 9i in client/server e

  • Using sql Loader to insert from table?

    Hi ,, Can I use the SQL Loader tool to insert data from table to table, I want it to be instead of the following sql script: DELETE FROM TABLE1 WHERE PK IN (SELECT PK FROM TABLE2); INSERT INTO TABLE1 SELECT * FROM TABLE2; COMMIT; the purpose of using

  • Attachments within SAP

    Hi, I'm really after a bit of knowledge and understanding with regerads attaching documents within PA30 onto an employee's record. How is this done? What can be attached - Word docs etc??? Any help would be gratefully received Thanks Neil

  • How to export and import with settings intact?

    I noticed that my iphoto library folder in the finder is 2x the size of the 7GB that is displayed in the iphoto application. I then went to my iphoto folder in finder and see that photos that I have deleted long ago are still there (no wonder it's so