All images blurry on SWF file

Hello All,
I'm creating a web based video that shows our clients how to
use our application. Every now and then when i publish the video
the SWF file becomes blurry, however the HTML file is fine. Has
anyone else had / have this issue and know how to fix this?

Hi again
Perhaps you have just been lucky to this point? This is just
one main difference between what Flash would create VS what
Captivate creates. Flash typically produces vector based output.
Vector based output consists of instructions that advise the
computer how to draw objects. Because of this, they are crystal
clear at any size or resolution.
Captivate creates bitmapped images. With bitmapped images, if
you shrink or scale them smaller, the picture elements (pixels)
begin overlapping. The computer has to calculate new color values
to use where the overlaps occur. If you make them larger, you
create blank pixels and the computer again has to calculate new
color values to insert into the blank pixels. Either way, the image
fidelity suffers as a result.
There is no magick wand I'm afraid. If you have been getting
by with it for a while, it's possible that you simply haven't
noticed the degradation. Some images scale better than others.
Cheers... Rick

Similar Messages

  • Different versions of animated image in single swf file

    I am making a game which has several objects (beds, crates, tables) that can be placed on a grid.
    The objects are created in flash and exported as individual .swf files. Each object can be rotated. To do this I create 4 frames in each .swf and draw a different version of the image in each frame. This allows me to 'rotate' an object in actionscript by simply going to the next frame of the swf movieClip.
    This simplifies things a lot for me, as it follows logically that an object will have one image file (swf) for all orientations. However, I've hit a problem in that I would like the object to have an animation. Does anyone know if there is a way to do this? or perhaps another technique I could use.

    I think It's best to explain with an example. Let's say I have a television that I draw in four different frames with different rotations. The first frame has the television facing in a south west direction. The 2nd frame has a south east facing television and so on. This is what I have at the moment. What I'm wanting to do next is add an animation to the television, e.g. display something moving on the screen.

  • In my Macbook Pro finder folder under All Images, there are duplicate files, but one is small and the other is full size. I wanted to clean up the files, but don't know why I have two of everything. Any Ideas?

    In my Macbook Pro, the Finder folder has duplicate images in the 'all images' file. One image is small and the other is full size. First question is why do I have two of every image? Why is one small and the other large. Do I need two of everything? If not, which do I delete?
    thanks, Jean

    Hello fane,
    Re: duplicate images in finder.
    Nearly all images are JPG with a few GIF and PNG sprinkled in.
    I opened the inspector so I do get info when opening each image, but it a slow process.
    It seems that one image is around 70k while its twin can be up to 4Mb which is what comes unedited from my camera. Sometimes there will be 3 or 4 identical images in finder, but when I open iPhoto to see what ‘s really in the file, I find only one image, and it’s full sized.
    Are all these extra images, even if they are aliases, taking up space on my drive? And should I delete them? The info bar says I have over 10,000 images, which is rather a lot  for what I do.
    I am unable to add the file size on the view menu as it is grayed out. Don’t know why it’s gray, but having that info on the screen would save a lot of time and fiddling with each image.
    I am trying to resize selected pix so I can upload them to e-bay, which requires less than 70k. I have looked at resizing programs but most are for PC platform and not Mac, so I am trying to resize in the finder window under tools. Tedious at best. Any suggestions will be appreciated
    Thanks for your help,
    jeanfromwilsonville

  • Strange Problem - All of my preloaded .swf files play at once

    Hey guys,
      I've been getting a strange problem that I haven't been able to debug.  I recently developed an interactive audio and video treatment program that users click through in which a master swf file (DTM-Start.swf) uses ActionScript upon first being loaded to load the rest of the program in the background.  Here's how the code looks: 
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.events.Event;
    // create movieclip objects to hold the loaded movies
    var intr1:MovieClip;
    var maladaptIntr1:MovieClip;
    var maladaptIntr1Loader:Loader = new Loader();
    var maladaptIntr1Request:URLRequest = new URLRequest("DTM-Maladapt1.swf");
    maladaptIntr1Loader.load(maladaptIntr1Request);
    maladaptIntr1Loader.contentLoaderInfo.addEventListener(Event.COMPLETE, maladaptIntr1Loaded);
    var intr1Loader:Loader = new Loader(); 
    var intr1Request:URLRequest = new URLRequest("DTM-Intr1.swf");
    intr1Loader.load(intr1Request);
    intr1Loader.contentLoaderInfo.addEventListener(Event.COMPLETE, intr1Loaded);
    function maladaptIntr1Loaded(event:Event):void
        maladaptIntr1 = event.currentTarget.content as MovieClip;
        maladaptIntr1.stop();
        addChild(maladaptIntr1);
        maladaptIntr1.y = -1000
        trace("maladaptIntr1");
    function intr1Loaded(event:Event):void
        intr1 = event.currentTarget.content as MovieClip;
        intr1.stop();
        addChild(intr1);
        intr1.y = -1000
        trace("intr1");
    function playIntr1() {
       intr1.y = 0;
       intr1.play();
    function playMaladapt1() {
        maladaptIntr1.y = 0;
        maladaptIntr1.play();
    So that's the idea.  What's strange is that when I load a .swf file compiled with AIR 2.6 (because the user interacts with the movie and a text file is output) it's fine too, but as soon as I add any actionscript, even if it's just a stop() command, to a .swf file compiled with AIR, the DTM-Start.swf loads and then plays all of the movies simultaneously so they're all going off at once.  Essentially, flash seems to be ignoring the maladaptIntr.stop() command in the Loaded function, for instance.  I just don't understand why adding any Actionscript whatsoever to a .swf compiled with AIR would make my DTM-Start do this.  I am very confident this is the issue too, because loading .swf files compiled with the FlashPlayer with action script are fine...AIR .swf files without Actionscript are fine too, it's only AIR .swf files with ANY actionscript that cause this problem....
    Any ideas?
    Much appreciated!
    Thanks,
    Ricky

    One solution is simply to have a stop() in the constructor of the document Class of each swf you're loading. Another solution is something like:
    package {
         class MainDocument extends MovieClip {
         protected var swfs:Array = ['DTM-Maladapt1.swf', 'DTM-Intr1.swf'];
         protected var positions:Array = [{x:0, y:0}, {x:0, y:0}];
         protected var movies:Array /*of  MovieClips*/ = [];
         protected var loadIndex:int;
         protected var playIndex:int;
         protected var curremtMovie:MovieClip;
              public function MainDocument() {
                   super();
                   loadMovie(loadIndex);
              protected function loadMovie(loadIndex:int):void {
                   var loader:Loader = new Loader;
                   loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
                   loader.load(new URLRequest(swfs[loadIndex]));
              protected function onLoadComplete(e:Event):void {
                   var mc:MovieClip = LoaderInfo(e.currentTarget).content as MovieClip;
                   mc.stop();
                   var position:Object = positions[loadIndex];
                   mc.x = positions.x;
                   mc.y = positions.y;
                   addChild(mc);
                   movies[movies.length] = mc;
                   loadIndex++;
                   if (loadIndex<swfs.length) {
                        loadMovie(loadInxed);
                   } else {
                        playMovie(playIndex);
              protected function playMovie(playIndex):void{
                   if (currentMovie) {
                        currentMovie.stop();
                   currentMovie = movies[playIndex];
                   currentMovie.play();
    Note that with this approach you don't need to create a whole new set of logic each time you want to add a new swf to load.

  • Small Unwanted Image Movement in .swf File

    Hi. I'm not a Flash developer, so please excuse this question
    if it is sophomoric. Someone created a .swf file for my site that
    transitions multiple images in & out. It can be seen here:
    http://www.shadyladylighting.com.
    The problem is the images seem to abruptly move/jump as they
    are in transition. It's almost as if they jump quickly before they
    change. You have to look close to see it, but it's very annoying
    once you see it happening.
    Can anyone tell me what the problem is and how it should be
    fixed? Although I can't fix it I must hire someone to do so, and
    basically I want to know what the problem is before I pay someone
    to fix it.
    Thanks,
    Mike

    Hard to say what that problem is without seeing the source
    (FLA) file - do you have that by chance?
    Chris Georgenes / mudbubble.com / keyframer.com / Adobe
    Community Expert
    GACUTIL wrote:
    > Hi. I'm not a Flash developer, so please excuse this
    question if it is
    > sophomoric. Someone created a .swf file for my site that
    transitions multiple
    > images in & out. It can be seen here:
    http://www.shadyladylighting.com.
    >
    > The problem is the images seem to abruptly move/jump as
    they are in
    > transition. It's almost as if they jump quickly before
    they change. You have
    > to look close to see it, but it's very annoying once you
    see it happening.
    >
    > Can anyone tell me what the problem is and how it should
    be fixed? Although I
    > can't fix it I must hire someone to do so, and basically
    I want to know what
    > the problem is before I pay someone to fix it.
    >
    > Thanks,
    > Mike
    >

  • Why are all images blurry

    all images are blurry. ive tried everything suggested and nothing has worked.once in awhile it will be ok then back it goes.tried to reinstall still the same.

    ggr wrote:
    I don't know if it is okay to ask this here but... has anyone tried the generator coverflux2? When I import the images they are all blurry. Any idea why? Thanks.
    Perfectly fine to ask here but you really want to talk to the people who make the filters for questions about specific filters. There's a user forum for FxFactory somewhere.
    bogiesan

  • Getting specific info on all images in a .indd file

    How can I access the following info about all images in an InDesign document:
    Page image is on
    Image name
    Image full path
    Image corner location on page (x, y)
    I would like to export this data to a txt or csv file with data for each image on a separate line.

    Here is a Javascript that does so. It temporarily sets the ruler to "Page", so you get a logical offset from the left side for each page, rather than Spread or that other one no-one uses.
    For items on the pasteboard, it says "pasteboard" for the page number; for missing links it says "(missing)" for the full path.
    imgs = app.activeDocument.allGraphics;
    result = [];
    // Set ruler to PAGE
    orgRuler = app.activeDocument.viewPreferences.rulerOrigin;
    app.activeDocument.viewPreferences.rulerOrigin = RulerOrigin.PAGE_ORIGIN;
    for (i=0; i<imgs.length; i++)
              line = [];
              pg = getPageFor (imgs[i]);
              if (pg == null)
                        line.push ("pasteboard");
              else
                        line.push (pg.name);
              line.push (imgs[i].itemLink.name);
              if (imgs[i].itemLink.status == LinkStatus.LINK_MISSING)
                        line.push ("(missing)");
              else
                        // The file path also includes the name, so let's split it
              //          line.push (imgs[i].itemLink.filePath);
                        str = imgs[i].itemLink.filePath.substring(0,imgs[i].itemLink.filePath.length - imgs[i].itemLink.name.length-1);
                        line.push (str);
              line.push (imgs[i].parent.geometricBounds[1]+","+imgs[i].parent.geometricBounds[0]);
              // Change the comma here to anything else
              // This is for a comma-delimited list
              result.push (line.join(","));
    // alert (result.join("\r"));
    writeFile = File.saveDialog( 'Save Report As:' )
    if (writeFile != null)
              if (writeFile.open("w"))
                        for (i=0; i<result.length; i++)
                                  writeFile.writeln (result[i]);
                        writeFile.close();
              } else
                        alert ("unable to create file "+writeFile.fsName);
    app.activeDocument.viewPreferences.rulerOrigin = orgRuler;

  • How to create a par file that includes an image and a .swf file

    Hi everyone,
    I have a requirement to create a <b>.par file which will contain a .swf file and a .gif file</b>.
    Can anyone please tell me the steps to do so.
    Thanks in advance

    Thanks Ranjeet for the quick reply.
    I have created a portal project and placed the .swf file and the .gif file in the images folder and deployed it to the server. I downloaded the .par file and chked that it contained the .swf and .gif files. But when i run the application it <b>does not show me the .swf file</b> . An icon with a cross mark appears instead. I have flash player installed on my PC .The .gif file when run works fine but not the .swf file.
    Can anyone tell me a workaround for this ?

  • How do you include images into the swf file?

    I have an application that dynamically loads images from a folder to display in the application. Images display fine in the app through the IDE. Since these are not embeded images, compiling the swf leaves them out. How do I get them in? Specifically, how do I do this through the mxmlc ANT task?
    This is what I am doing in the code:
    new BitmapFileMaterial("components/test/images/testimage.png")
    So basically the image needs to be in this location within the created swf file.
    Thanks for any help.

    You have to use the metadata in your source code.  You can't alter where the Image will find the data at compile time.  It is better to not embed images in most cases, especially if they are big.
    If you're asking how to get ANT to copy your image files somewhere, see the ANT doc.  I'm pretty sure there's a tag
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Using swf file for very large static image

    i have a large photo that i need to use as a banner image in a website.  i have tried optimizing it for the web in fireworks -- to reduce the file size obviously -- but the client isn't happy with the resolution.  i haven't had this issue come up before but i see his point (to a degree), as the detail and sharpness of the original is far superior.
    i have almost no familiarity with creating with flash, but i remember reading somewhere that swf files do not have the same sizes as jpeg images.
    would it be feasible to include the single static image as a swf file to preserve its original resolution?  i mean, would that image as a swf file be smaller than the image as a jpeg?
    mille grazie.

    There are two things at play here... image quality (often harmed by compression) and image resolution (# of pixels width by height). What is the real problem?
    Whether you render your image as a GIF, JPG, PNG or SWF file, they will all have the same resolution.
    Packing an image in SWF should be a last resort as not everyone has Flash installed. For example, iPhone users cannot see SWF.

  • How do you remove duplicate images from your all images file on your mac desktop

    How do you remove duplicate images from your all images file on your mac desktop?

    Don't under any circumstances.
    All images is not a file. It's not a place. It's a list. Specifically, it's the result of an instruction: List all the images on my machine.
    When you delete something from All Images, then you have no idea what you're removing from where - files that are part of word processing docs, interface elements, corrupting your iPhoto Library. There are many perfectly legitimate reasons why you might have what appears to be duplicates but are not.
    Rule number One: Never delete anything on your machine whose job you don't understand.

  • Use a panoramic photo flash file in indesign and export it to a swf file for flipbook

    hi,
    i haven a 360° panoramic flash file.
    when i put this file in indesign and make an export to pdf i can see my panoramic photo.
    my problem:
    i want to export this file to swf to use it as a flipbook.
    but now, my panoramic flash file doesn`t work.
    is this possible?
    thanks
    sascha

    Hi, I have the same issue??
    Even when exporting as an interactive pdf.
    My problem is that I am trying to figure out how to export my swf embedded file into an interactive pdf.
    I have created an interactive presentation with buttons, effects etc. After which I exported to swf so that all the effects work.
    But when placing the swf file back into indesign and exporting again as an interactive pdf it doesn't work at all, all I get is a white screen. (I need a pdf for clients basically, they dont want any swf or flash files.)
    Even though after placing the swf file, in the media window I ticked play on page load as well as chose a cover image for the swf file. Still just a white screen when exporting.
    To repeat, I need to know how to convert my swf file into an interactive pdf.
    Any pointers please would be great I have some swf presentations I need to change into pdf as soon as possible or before tomorrow to be exact before our monthly meeting with clients.
    Please help

  • The old Flash SWF files that don't update in pages created with templates problem

    I hate to even ask this question again because I know it's
    been posted many times. I've read all the answers I could find but
    I'm afraid I still need help. I'm using Dreamweaver CS3 on a Mac.
    I've gone in preferences and unchecked "insert using browser-safe
    scripts" and "Convert tags" and I've tried to make my paths to the
    SWF files relative to the site root but I just can't get it to
    work.
    There are about three articles on what the Site Root path can
    be used for and why it's good or bad. I've read all those and I
    guess I'm dense because I just can't figure it out. I select site
    root from the "relative to" drop down menu and it makes no
    difference whatsoever. I look at the code and it seems OK. This is
    what it looks like:
    <param name="movie"
    value="/public/Images/Regional_Strength/Americas/Americas map.swf"
    />
    <param name="quality" value="high" />
    <embed
    src="/public/Images/Regional_Strength/Americas/Americas map.swf"
    quality="high" pluginspage=
    There are no ... before the directories and that's what it's
    supposed to look like. The files still don't show. Part of me has
    to wonder how the heck the html file would know which /image
    directory the swf file is in because this particular site is one of
    many self-contained site directories that sit in my public folder,
    each site has it's own image directory. I thought maybe I'm
    supposed to put the SWF files in the "image" directory right in the
    first level of the public directory. I moved the files in there
    changed the code to:
    <param name="movie" value="/public/Images/Americas
    map.swf" />
    <param name="quality" value="high" />
    <embed src="/public/Images/Americas map.swf"
    quality="high" pluginspage=
    It doesn't work. Like I said, after reading the three or so
    articles about the site root on the Adobe Help pages, I still don't
    understand. I'd appreciate someone clarifying this for me.
    Thanks

    > <param name="movie" value="/public/Images/Americas
    map.swf" />
    As a random educated guess, Is your local site folder defined
    to the correct
    folder? If it isn't, then dw can't make correct site root
    relative paths.
    Jumping to this from seeing the /public/ folder in the above
    path.
    Define the local site folder to the folder that directly
    contains the site's
    homepage index file.
    Use the "host directory" line in the remote site info to
    correct for any
    required subfolder in the ftp setup. If public files need to
    be placed in a
    subfolder on the remote named public or public_html or htdocs
    or www or
    similar, put that folder name into the "host directory" line.
    Also- to avoid problems adopt a file and folder naming
    convention that
    doesn't cause you to tear your hair out.
    Americas map.swf
    There is NO such thing as a blank space in a url. So don't
    use blank spaces
    in file or folder names.
    A conservative naming convention would be to use only
    a-->z and 0-->9 and
    the _underscore. No blank spaces, no punctuation, no mixed
    case.
    Right-click on the file or folder in the dw Files Panel and
    pick rename.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Connecting swf. files

    Hey guys,
    I’m a degree student doing my dissertation on web design. I decided to try & use Flash as the basis for my development as I’m not that great at programming etc.
    As much as this is all very new to me, I’ve managed to create a rich website & some really good animations that I saved in seperate files believing that I could incorporate them into my website but I have now found that one of them will not link as it is coded using AS2 & my website is AS3 .
    Is there anyway that I can include a button on my website that will enable the user to click on it & open the other swf. file to successfully view it???
    I’ve tried converting the code from  AS2  to  AS3  but that hasn’t worked either.
    Furthermore, I have been advised to just have a button load the external swf of the as2 file (like you would any other external file) but I can't find any code to enable me to do this!
    All suggestions are welcome

    To load external files such as images or other swf files you use the Loader class...
    var ldr:Loader=new Loader()
    var urlR:URLRequest=new URLRequest("yourswftoload.swf");
    ldr.load(urlR);
    addChild(ldr);
    ldr.x=10;
    ldr.y=20;

  • Figuring out how to extract images from a PDF file

    Hi,
    I'm trying to write a small app that extracts all images from a PDF file. I already wrote a nice parser and it works good but the only problem is that I can't quite figure out from the reference how to decode all images in a PDF file to normal files such as tiffs, jpegs, bmps etc. For now I'm focusing on XObject images and not dealing with inline images.
    From what I understand so far just by trying and looking at open sources I figured that if I see a XObject Image with a DCTDecode filter, taking the stream data without doing anything to it and saving it as a jpeg file works. But doing the same to FlateDecoded streams or CCITTFax didn't work.
    What is the right way to properly extract the images?

    In general you have to
    * decode the stream
    * extract the pixel data
    * use ColorSpace, BitsPerComponent, Decode and Width to unpack pixel
    values
    * reconstruct an image file format according to its specification
    There are no other shortcuts. The DCTDecode shortcut (which doesn't
    work for CMYK JPEG files) is just a piece of fantastic good luck.
    Aandi Inston

Maybe you are looking for