Hi, I'm tring to place a PNG into a Captivate 8 Project. I made the image on AI but when I place it in Captivate it gets blurred. Is there any way to solve this issue?

Hi, I'm tring to place an image (PNG) in to a Captivate 8 project. As soon as the PNG is placed, it gets blurred. Same thing happens when I try to resize it. In Publishing Settings, Project Size and Quality are set to high. Any idea of why I'm getting this?

PNG is bitmap, even though it is created in AI. This mean, please do not resize it but create it in AI in the size you want as vector image before saving to PNG. Another approach (my work flow) is to get it into Photoshop as a Smart object, and use the roundtripping with Photoshop that is possible in Captivate.

Similar Messages

  • After update to OS X Maverick I can not open files in Lotus Notes Smart suite. Is there any way to solve this problem?

    After I updated to OS X Maverick I can not open files in Lotus Notes Smart suite. Is there any way to solve this problem?

    Ok this worked to solve the error.
    Use cmd prompt in windows 7 or 8 and run as admin:
    sc config lanmanworkstation depend= bowser/mrxsmb10/nsi
    sc config mrxsmb20 start= disabled
    No need for all that power shell nonsense as shown elsewhere for windows 8.
    That's it. Also force smb2 disabling on the apple side for good measure.
    With the above I was able to network mavericks and windows 8.1 pro flawlessly. He issues I had before where I could not read video, ISO and audio files (but could open documents and pictures from the windows machine connected to an apple network share folder went away.

  • I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    I bought my iphone 5s a week before and now its volume "up" button is not working when pressed.Does anybody know what to do to make it work?I have a one year warranty.Should i give it to apple retail shop or is there any way to solve this problem?

    IF it is a manufacturing defect and you bought the device from Apple or an authorized Apple retailer, then take it into Apple.

  • I have bought a used macbook, to bad i do not have the admin password. is there any way to bypass this issue with out the Mac OS X disk? (without loosing my obtained files?)

    i have bought a used macbook, to bad i do not have the admin password. is there any way to bypass this issue with out the Mac OS X disk? (without loosing my obtained files?)   I NEED HELP BADLY PLEASE....

    What version of the Mac OS X are you running. Go to the Apple in the upper left corner and select About This Mac and post the version.

  • I bought my iPhone 4 in Hong Kong and I am in Vancouver right now. When I enter the sim card, it locked my iPhone. Is there any way to solve this? Thank you

    I bought my iPhone 4 in Hong Kong and I am in Vancouver right now. When I enter the sim card, it locked my iPhone. Is there any way to solve this? Thank you

    Inserting a SIM card does not lock a phone.
    If the device is carrier locked, the only way to unlock it is to contact the carrier to whom it is locked.

  • I bought a second 4s, when i try to make new ID, there is a message comes:cannot sign in the maximum number of free accounts have been activated on this iPhone, is there any way to solve this problem?

    i bought a second 4s, when i try to make new ID, there is a message comes:cannot sign in the maximum number of free accounts have been activated on this iPhone, is there any way to solve this problem?

    Sure. You can do it on a Mac at the following website: https://appleid.apple.com/account

  • The home and lock button on my ipod 4th generation are both jammed. Is there any way to fix this?

    The home and lock button on my ipod 4th generation are both jammed. Is there any way to fix this? This makes the itouch difficult  to use. Please help.

    Try:
    http://snapguide.com/guides/calibrate-your-home-button/?utm_expid=69945963-15
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it at an Apple store by making an appointment:
    Apple Retail Store - Genius Bar
    or send it in to Apple. See:
    Service Answer Center - iPod
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • My touch screen on my iPhone is not working correctly. I touch one part of the screen and another part responds. Is the there any way to solve this problem?

    My touch screen screen is not working properly.  I touch one App or icon and an different App/icon opens.  It is an ultra sensitive touch screen, any idea on how to solve this issue?

    Yes!  Stop using the charger!  My husband noticed it was worse when plugged in. One apple guy told me "restore" ... I did all that and it did not help. After I stopped using the charger, it stopped messing up. I used my husband's charger and all is well. 
    Later, an apple employee told me to bring in the charger for a trade in, because they had a recall on some of them.
    I haven't traded it yet, but I plan on it.
    Good luck!  Let me know!

  • Is there any way to solve this tooltip issue besides addFocusListener?

    Following up with my last posted thread that now has the record of 23 responds and none relevant to my question, I'm posting another one right now.
    I've managed to reproduce the issue I was talking about and have the code. Basically, my problem was that tooltip was causing popups to go behind the main frame. You can reproduce this by moving your mouse on the table and generate tooltips, after you comment out the focus listener, which is the solution. If table is in focus, tooltips are generated, otherwise, no tooltips.
    What I'm wondering about if anyone knows any other way besides the focus listener to implement this fix and check to see if the table has focus? The reason I'm asking this, although it seems to work fine on this code, is because in my application at work, which has more than 10 panels in it, this table's tooltip problem affects all those other panels as well, not just this story popup on the table. When I open any of the other panels, the table doesn't necessarily lose focus, and when I close them, the table won't necessarily gain back focus, which is what I want to see happen.
    I'd appreciate your relevant suggestions and ideas to my problem. Thanks!
    Here's the code:
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.JTextArea;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.table.DefaultTableModel;
    public class MyTableWithTooltipsTest {
          * @param args
         private JFrame frame;
         private JPanel panel;
         private JTable table;
         public MyTableWithTooltipsTest()
              table = createTable();
            panel = new JPanel(new BorderLayout());
            panel.add(table.getTableHeader(), BorderLayout.NORTH);
            panel.add(table);
            frame = new JFrame("MyTableWithTooltipsTest");
            frame.getContentPane().add(panel);
            frame.setSize(400, 139);
            frame.setVisible(true);
         private JTable createTable()
              Object [][] data = {{"Julie", "Andrews", "10/01/1935"},{"Christopher", "Plummer", "02/18/1954"},
                     {"Hugh", "Jackman", "10/12/1968"}, {"John", "Travolta", "09/18/1964"},
                     {"Olivia", "Newton-John", "09/16/1948"}, {"Stockard", "Channing", "02/13/1944"}};
            String [] columnNames = {"First Name","Last Name","DOB"};
            DefaultTableModel model = new DefaultTableModel(data, columnNames);
            table = new JTable(model);
              table.setDefaultRenderer(Object.class, new ToolTipTableCellRenderer());
            table.addMouseListener(new MouseAdapter()
                 public void mouseClicked(MouseEvent e)
                      int row = table.rowAtPoint(e.getPoint());
                      String story = table.getValueAt(row, 0).toString() + " "+ table.getValueAt(row, 1).toString() + " " + table.getValueAt(row, 2).toString();
                      createStoryPopup(story);
            table.addFocusListener(new FocusListener()
                   public void focusGained(FocusEvent arg0) {
                        table.setDefaultRenderer(Object.class, new ToolTipTableCellRenderer());
                   public void focusLost(FocusEvent arg0) {
                        table.setDefaultRenderer(Object.class, new NoToolTipTableCellRenderer());
              return table;
         private void createStoryPopup(String story)
              JFrame frame = new JFrame("Story");
              JPanel panel = new JPanel();
              JTextArea textArea = new JTextArea(story);
              textArea.setEditable(false);
              panel.add(textArea);
              frame.getContentPane().add(panel);
              frame.setSize(200,50);
              frame.setVisible(true);
         private class ToolTipTableCellRenderer extends DefaultTableCellRenderer {
              public ToolTipTableCellRenderer()
                   super.setBorder(noFocusBorder);
              public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
                   JLabel c = (JLabel)super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
                   c.setToolTipText(value.toString());
                   return c;
         private class NoToolTipTableCellRenderer extends DefaultTableCellRenderer {
              public NoToolTipTableCellRenderer()
                   super.setBorder(noFocusBorder);
              public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)
                   JLabel c = (JLabel)super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
                   return c;
         public static void main(String[] args) {
              MyTableWithTooltipsTest test = new MyTableWithTooltipsTest();
    }

    Following up with my last posted thread that now has the record of 23 responds and none relevant to my questionAs we told you in your last posting, your question didn't have enough relevant information for us to help solve the problem which is why we asked for a SSCCE.
    I've managed to reproduce the issueSee what happens when you put your mind to creating a SSCCE, instead of wasting time with unnecessary comments complaining about the lack of help?
    Basically, my problem was that tooltip was causing popups to go behind the main frameSorry I still don't see a problem or understand your problem. I've tried the code with and without the FocusListener. In both cases the "popup frame" is always displayed on top of the main frame. This is what I did:
    a) place mouse on the table
    b) wait for popup to display
    c) click on table to show popup
    In both cases the popup was displayed on top of the main frame.
    When the FocusListener code was commented out, I could still get the tooltip. However, when the FocusListener was active, I could not get the tootip to redisplay after the popup was made the active window.
    I'm using JDK6 on XP.
    By the way, normally applications are written with a single JFrame. Additional "popups" would be created by using a JDialog and you would specify the frame as the owner of the dialog. Note this should prevent the dialog from displaying behind the frame.

  • My 3gs battery is tripping out since i got it sim free is there any way to solve this problem?

    Hi is there any one who has a clue what to do. Iv give my Iphone 3gs to my girlfriend, she's like wow thats great and loving the whole apple experience, then BOOM FAIL two months in after getting the phone sim free (Jailbroken) by my provider the thing keeps dying and tripping out the screen trips and she has to wait a couple of minutes for it to be turned on.1 I look like a fail and 2 I feel a tit as i said its the best phone i'v ever had apart from my 4s. Any suggestions any one or answers to solve this problem?  

    You jailbroke it. You've forfeited your right to support from Apple and on these forums. More than likely, the jailbreak is what caused the problem in the first place.
    Sorry. You're on your own.

  • I am a victim of " Your apple ID has been disabled" (not for security reasons, only disabled), is there any way to solve this?

    Is there any possible way to achieve my goal? I really want to solve this, looking forward for your assistance.
    Note: This is only "Your Apple ID has been Disabled", it did not mention security reasons and other words / things.
    Random Facts:
    1- I had my phone less than a year. (Iphone 4S)
    2- I never had problems with it
    3- I may have used multiple accounts (2 max.)
    4- Even on my PC, i cannot download any application
    5- In my country there is no apple store
             Thanks!

    Apple ID is Disabled - Apple Club

  • Itunes only recognises various artists instead of th dj who mixed the cd and therefore cannot find the artwork. Is there any way to solve this problem?

    itunes only recognises various artists and not the dj who mixed cd, and therefore cannot find the artwork as a result. Is there anyway to solve this as I have quite a few cd's with the same title in this series?

    I'm happy to report that Sound Studio has corrected its part of the problem, and an updated version is available on its web site: freeverse.com/soundstudio/
    I also discovered that attempts to adjust individual song volumes in the Get Info menu won't work if the Sound Check option is selected in Preferences (duh!).
    Further good news is Apple's announcement of an arrangement to offer unprotected versions of BMI music in the iTunes store for an extra 30 cents per song. It would be well worth it, in my opinion, if all the music companies agreed to the arrangement, thereby streamlining the task of transferring problem songs to editing programs like Sound Studio.
    One minor glitch remains. To differentiate between original and edited versions of a song, I usually append a number to the name. But when I import the edited version back into the iTunes library, iTunes automatically changes the name back to the original. I can tell the difference by referring to other clues in the library file, but not in the abbreviated iPod menu. I could delete the unedited version from the library or, better, create playlistys consisting of only the edited versions.
    Thanks to all who contributed to this discussion. I hope others benefit from it as I did.
    P.S.: I did download Max, which works fine for its intended purposes.

  • I have a vertical yellow line down the centre of my iMac g5, is there any way to fix this issue?

    Hi, I've seen a few other forum discusions on this issue, and it seems to have been a recurring problem, I'm wondering if Apple have a software patch available for this issue.  Its a vertical yellow line that runs from the top to the bottom of the monitor, other people have spoken about how multiple lines can start appearing once the problem has begun, so I'm concerned that this is going to degenerate.  I recently upgraded the OS to Snow Leopard, so I'm wondering is it possible that this may have been one of the issues that people have come across when updating the OS.

    How is it connected?  Have you tried different port?  How about logging in as a different user then trying to mount the drive.

  • TS1702 Almost Every day I have install a new app to get all the other apps to work is there any way permanently solve this?

    This seems like something apple should fix. Fine I have to fix it one time but why such a constant issue?

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    Connect to iTunes on the computer you usually Sync with and Restore...
    http://support.apple.com/kb/HT1414

  • My Macbook (2006) cannot boot from USB, is there any way to solve this?

    I bought a retail copy of Snow Leopard 10.6.3 and upon trying to install it via optical drive, it fails every time. I'm certain that the drive itself has issues reading discs. So instead I opted to install my retail Snow Leopard onto a USB flash drive (a 32GB Kingston stick) but this macbook absolutely refuses to boot via USB. I've used Carbon Copy Cloner and Disk Utility but neither has yielded results. I've spent so many hours trying to install this OS, does anyone know what's going on??

    Late reply, but if anyone is experiencing the same problem, I've found a solution. For whatever reason, some macbooks don't recognize usb flash drives during the boot-up phase, even though the usb ports themselves are powered (I tested this with a multimeter). The solution then, was to use an external USB hard drive that has its own power supply to install Snow Leopard. I don't know why, but it's the only way I got my macbook (Macbook 2,1/A1181) to recognize the install drive. Every was smooth sailing from there!

Maybe you are looking for