Pictures and animation not working properly.

Hello,
When I add pictures or objects into my e-learning and sometimes add animations, the objects end up looking different. It's always around the edges of the objects. I'll add a picture at the end.
I've tried to maintain the highest quality of the pictures in the Captivate settings. Maybe I've missed something.
Maybe it's not the best of pictures, but if you look closely at the top and left arrow, around where they meet, you should see weird dots or colors around the edges.
Any idea of what the problem could be?
Kind regards,
Patrik

Hi there
Another question is to ask if you are changing the size of the image in any way? Perhaps making it larger? And do you notice this in the editing view of captivate, only after you publish and view or in both places?
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • TS3003 Installed QuickTime7 from Snow Leopard installation disc and still can't view videos on iPhoto. A box appeared saying "you have installed Mac OS X software older than your current version of Mac OS X and may not work properly."  Now what?

    Installed QuickTime7 from Snow Leopard 10.6.8 installation disc and still can't view videos on iPhoto. A box appeared saying "you have installed Mac OS X software older than your current version of Mac OS X and may not work properly."  Now what?

    Download and install the latest QuickTime Player for Snow Leopard > http://support.apple.com/kb/DL923

  • My iphone5c is still under the 1 year warranty, the top button constantly sticks and does not work properly will Apple still replace my phone even though there is a few chips and scratches on the back?

    My iphone5c is still under the 1 year warranty, the top button constantly sticks and does not work properly will Apple still replace my phone even though there is a few chips and scratches on the back?

    As Peter says above, only an Apple Store genius can advise you.
    But to further clarify, you seem to postulate that if Apple helps you, the cure would be a replacement.  That is not necessarily true.  Let them look at it and advise you what the remedy is.  They may offer you nothing (saying it's your fault), or they may offer you a solution (keeping your current iPhone), or possibly a replacement.

  • FireFox auto updated to 6.0 this weekend and has not worked properly since. I have uninstalled and reinstalled. Made sure all windows componets were up to date and still no joy. Any idea? Windows 7, 64 bit, normal configfuration. It is extreamly slow.

    FireFox auto updated to 6.0 this weekend and has not worked properly since. I have uninstalled and reinstalled. Made sure all windows componets were up to date and still no joy. Any idea? Windows 7, 64 bit, normal configfuration. It is extreamly slow and never finishes loading ANY page.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Filter and navigation not working properly

    Hi Gurus,
    I have two reports - report1(source) and report2(target) report.
    In report1, it shows two columns - Market_ID, Amount_sold
    In report2, it shows two columns - Market_ID, Reasons(where Market_ID is made prompted)
    In report1, I have made the Value Interaction as 'Navigate' and the target as 'path of report2' in Column properties ->Column Format
    But, when I click on Market_ID(report1), it is NOT showing the details of that particulat Market_ID(report2).
    It is showing the details of whole Market_ID in report2. That means, the filter is not working properly.
    Is there any method in which the report2 shows the details of particular Market_ID which is selected from report1(market_ID)?
    Best Regards,
    J

    yes you can,
    in your source add a master_name column and in that make the navigation.
    in the master_id column go to column format and style options and check the Use Custom CSS style option and type,
    display: none
    now in your source the master_id column will get hidden. in your target make the master_id prompted.
    now click on the master_name in your source, your target will get filtered by the corresponding msater_id
    thanks,
    Karthick
    Edited by: kart on Jun 7, 2010 11:52 AM

  • Touch and keyboard not working properly

    hello there,its been one month i am using this laptop hp envy energystar 15-u201ne. i have an issue on touch and keyboard..sometime when i am typing there is no effect in screen from keyboard. and sometime the touch is not working properly. how  can i fix this issue..?

    Hi  ,
    Thank you for visiting the HP Support Forums and Welcome. It is a great site for information and questions. I have looked into your issue about your HP ENVY 15-u201ne x360 and issues with the TouchScreen and the Keyboard not functioning correctly. Here is a link to the HP Support Assistant if you need it. Just download and run the application and it will help with the software and drivers on your system that need updating. If you need it here are links to troubleshoot the Touchscreen and the Keyboard. I hope this helps. Thanks.

  • Wifi and Bluetooth not working properly on my iphone

    MMy iphone are not working properly it's is not in warranty but they have many of problem in my iphone so please gave me solution of problems otherwise i break my iphone if want that

    Use the search function at the to right of the forum, look for the thread with the green checkmark.

  • SaveState and restoreState not working properly :/

    Here is my code:
    public class UIChooser extends UIComponentBase implements StateHolder
    private String submitedCategoryItemID;
    private boolean transientFlag;
    public UIChooser()
        super();
        transientFlag=false;
      public boolean isTransient()
        return transientFlag;
      public Object saveState(FacesContext context)
       System.out.println("saveState");
        Object[] values = new Object[2];
        values[0] = super.saveState(context);
        values[1] = submitedCategoryItemID;
        return values;
      public void restoreState(FacesContext context, Object state)
        System.out.println("restoreState");
        Object[] values = (Object[])state;
        super.restoreState(context, values[0]);
        this.submitedCategoryItemID = (String)values[1];
    }saveState and restoreState not working.
    Phrases "restoreState" and "saveState" aren't displayed and value of submitedCategoryItemID not restored. :/ What's happend?

    yes you can,
    in your source add a master_name column and in that make the navigation.
    in the master_id column go to column format and style options and check the Use Custom CSS style option and type,
    display: none
    now in your source the master_id column will get hidden. in your target make the master_id prompted.
    now click on the master_name in your source, your target will get filtered by the corresponding msater_id
    thanks,
    Karthick
    Edited by: kart on Jun 7, 2010 11:52 AM

  • "This cable is not certified and may not work properly..." Official Apple cable!

    I am using an official Apple charging cable and keep getting the message "This cable is not certified and may not work reliably..." And this cable has worked until now! Restarting the phone works sometimes but only for a bit.
    What's wrong here/

    Thanks, but it didn't fix it. I've tried 3 different Apple cables and I get the same message with each. I'm guessing it's the port has become defective somehow although with all the other questions about the same issue, I wonder if it could be a software issue!

  • SWF animations not working properly when exported as PDF from InDesign

    I'm using InDesign CS5 and have created a document that I want to add interactivity and animations to. I've created buttons and page destionations, etc, which all work perfectly  when exported to a PDF but the simple animation that I wanted to include don't work. The animations have been created in InDesign then selection exported as a SWF file and then imported and placed in InDesign and then exported as an interactive PDF where the animations either don't work, haven't been picked up or don not work as they should. What am I doing wrong, how do I get the animations to work correctly?

    Try this tutorial:
    http://tv.adobe.com/watch/csinsider-design/indesign-creating-interactive-pdfs-with-page-tu rn-and-flash-animations/

  • 9810 funtions and screen not working properly.

    HI all,  hoping to find some help here.   My 9810 is acting up.  None of the keys are working, even the 5 below the screen.  Sometimes the track pad works but not when it is pressed, and when the back botton works it puts me into sreach mode and looks for the letter "H" only.   The touch screen is fine. This was before upgrading to OS7.1.   I have done multiple hard resets and it does nothing at all.  This has been going on for three days now.  It hasn't be dropped or anything.
    Last night I upgraded to OS 7.1 now my back ground does not rotate properly with how the phone is being held it does rotate,  When you hold it upright it thinks its on it's side and vise versa.
    Has anyone had a similar problem, and how can I fix it?  Or is it one of those ones when you just get a new phone.   I have only had it since Feb 29, 2012
    Thanks

    Hello Champi,
    Welcome to the BlackBerry Support Community.
    The following article will assist regarding the issue you are experiencing with the keyboard and trackpad on your BlackBerry® Torch™ 9810 smartphone:
    Trackpad, trackball, or keyboard not working on a BlackBerry Smartphone - http://www.blackberry.com/btsc/KB29640
    We hope this helps.
    Thank you.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • IPod Touch 5th gen headphone jack and battery not working properly

    Yesterday my iPod touch 5th gen's battery started draning at an incredible rate. Won't last longer then 1 or 2 hours now. And add onto it the headphone jack stopped working properly. It's now only plays in one ear, it's all static over the sound it's supposed to play. I baby my iPod. This all happened out of the blue. What do I do to fix it?

    Saraa22 , the same recommendation was given over a year earlier:
    Try the following to rule out a software problem
    - Check also Settings > General > Accessibility > Hearing. Make sure that the sound balance is not set all the way to "R".
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    Saraa22 wrote:
    If anyone has this same problem with their Ipod touch 5g headphone jack. I found a way to fix it. I did everything of the above but nothing actually worked . But this is what worked!
    First reset your Ipod by pressing down the on/off button and the home button at the same time for 10 seconds until you see the apple icon
    Then after it turns back on : Go to settings then press on general. Then press on accessibility  and scroll down and make sure MONO AUDIO is on!
    This will definitely fix the problem.

  • Screen not working and device not working properly!

    Npw im a careful person with mobile never had issues before 
    Earlier on in the day after just getting my phone today on contract with carephone warehouse i decided to do a little water test and take pics underwater , now the first thing i did was test the pressure of the device by going in the service menu  and when i did it with flaps totaly firmmly close the pressure , so i fought well there shouldnt be any problems if i put it in like 6 inches of  water in clean no redisidue sink ,now  i checked the flaps 6 times bettore putting in water ,now at first i was working fine taking the pics and that thne after 3 mins i pulled out then wiped it clean next thing i know the screen stop working and after the device wont come on proper ie no screen displaying ,now I bouught this because of the amazing battery life and camera now this isnt a cheap pone so it should hold up to what it says it can do , im very disappointed 
    I cant afford to have pay for \a new and its not my fault any help guys?

    thanls for the reply guys took it back showed and no water inside they swapped it for a new one justl ike that have another   problem now tho
    stockyvillage wrote:
    If on UK take it back to CPW and get them to exchange it.You could use the sale of goods act or consumer rights.

  • Display as Key and Name Not working properly after upgrade to Bi7.0

    Hi Bw Guru's
    Recently we have upgrade our BW 3.5 system to BI 7.0 (Only system upgrade not applications ).
    after the upgrade we are facing lot of issues with Bex Analyzer. The following are some of the issues
    1) In BW3.5 after the execution of Workbook or query ,we can convert to local currency .
       Right click on workbook -> Currency translation-> Database currency .
        but after upgrade to BI7.0 this is not working ..
    2) Characterstic Right click on workbook Dispaly as Key and Name is also not working ..
    I know that Currency translation in BI7.0 works in different way compare to BW3.5 .we can use alternate option like By Target Currency from Database currency to convert to local currency and it is working fine in Bex,but businesss users want more friendly way ...because to select the above option they have to enter local currency and rate type ...
    Do you we have any notes available for the above solutions ..?Do we need to upgrade Bex version also..?Is there any document which describe how the above things works after system upgraded to BI7.0?
    Please suggest me..
    Thanks in advance
    Shu Moh.

    Dear Harita
    The first issue Currency translation in query or workbook is solved with SAP note 1119549.For second issue we have not found solution until now ,Once we find the solution we will update you..
    Shu Moh

  • I have downloaded PDF Converter and its not working properly

    the pdf I am attempting to convert to edit is not working. I have converted it to all that is available and the lines are off  in someplaces and some data is in the wrong place when I try to Move it I can't or it makes it worse. what can I do?

    As Pat said, which PDF Convertor are you reffereing to here? Which adobe application are you using for the same? What's the operating system that you are using?

Maybe you are looking for

  • DVD Rom

    Hi there. recently my dvd-drive has been working intermittently, it no longer shows up as an icon in the "my computer" section. the drivers are up to date. if anyone has any ideas on what is causing this problem id be extremely grateful for solutions

  • Can I open a history page without having it update? I accident. deleted ebay items & want to open the pg from history in it's previous state when the items show

    I think History pages when opened retrieve the new information for the particular page & open it in its updated state. I would like to open the history page in its old state, before I did the accidental deletions... I thought this was possible but co

  • I am trying to sync my iPad to PC but says i need iTunes 10.5 pr later.

    I am trying to sync my iPad 1 with my pc so I can download pictures. The pc has iTunes and I have also downloaded iOS 5 on the iPad. The pc says it won't link with the iPad as it needs to have iTunes 10.5 or later. I have gone on the apple website on

  • Idvd quitting during encoding

    I recently upgraded to Leopard and have had problems burning through idvd ever since. Idvd keeps quitting during the processing movie stage. I have tried repairing permissions and deleting the preference file with no success and have ensured I have 2

  • Upgraded to 7.2

    As soon as I upgraded to 7.2 iTunes became USLESS! I click on to the icon & all it tells me is that its THE WRONG PATH. It wont even let me UNISTALL in my Control Panel. If I try to reinstall it the same error message comes up. I"M SCREWED!!! FIVE IP