Image changes in movie

When I am creating my Flash movie, an image I am working with
looks fine within Flash MX. When I test the movie or Publish it, it
seems it is cutting off one pixel. I know this sounds like nothing,
but it is really noticeable. Please take a look:
www.lps.k12.co.us/dotnetnuke
the main movie on the home page. There are four images that
slide in after the main image fades in. The first two have two
pixels of white on the left border. The third one that slides in
has two pixels of white on the right border when I am in Flash (and
the image I created this way), but it is visibly smaller than the
other two white borders when you view the movie. When I "play" the
movie within Flash, it is fine. But when I "test" the movie it's
not.
Why is this happening? What do I do?
Thanks for your help!
Sharlyn

if those are strokes I would convert them into fills
instead

Similar Messages

  • Initial postion of image changed but now image does not move

    hi can any one solve this problem please, i have been trying to change the initial position of my image when i run it 1st on java textpad......
    i seem to have moved the initial position of the image by the following >
    public void paint(Graphics g) {
              g.drawImage(CurrentImage,xPos = 10,yPos = 100,this);but now the image does not move when i press the keys in its new position
    does anyone one know how to solve this?? if you do please reply THANK you.
    the original code is below >
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.*;
    import javax.sound.midi.*;
    import javax.swing.*;
    import java.awt.Image.*;
    public class Man3 extends Applet implements KeyListener {
         int xPos, yPos;
         Image man1;
         Image man2;
         Image man3;
         Image man4;
         Image man5;
         Image man6;
         Image CurrentImage;
         Image offScreenBuffer;
         AudioClip tune;
         public void init() {
              setBackground(Color.white);
              xPos = this.getSize().width/2;
              yPos = this.getSize().height/2;
              man1 = getImage(getCodeBase(),"man1.gif"); // right hand up
              man2 = getImage(getCodeBase(),"man2.gif"); // straight
              man3 = getImage(getCodeBase(),"man3.gif"); // right hand down
              man4 = getImage(getCodeBase(),"man4.gif"); // left hand up
              man5 = getImage(getCodeBase(),"man5.gif"); // straight
              man6 = getImage(getCodeBase(),"man6.gif"); // left hand down
              CurrentImage = man2; // man facing right
              addKeyListener(this);
              requestFocus();
              tune = getAudioClip(getCodeBase(), "Track.wav");
         public void paint(Graphics g) {
              g.drawImage(CurrentImage,xPos,yPos,this);
         public  void checkXmin()
                   if (xPos == 0) xPos = 500;
         public  void checkXmax()
                   if (xPos == 500) xPos = 0;
         public void checkYmin()
                   if (yPos == 0) yPos = 350;
         public void checkYmax()
                   if (yPos == 350) yPos = 0;
         xPos+=1;
         if (xPos>500) xPos=0;
         if (xPos==0) tune.play();
         // man walks right
         public void checkCurrentImageRight()
                   if((CurrentImage == man6)||(CurrentImage == man5)||(CurrentImage == man4))
                        CurrentImage = man2;
                   if(CurrentImage == man3)          CurrentImage = man1;
                   else if (CurrentImage == man1)     CurrentImage = man3;
                   else if(CurrentImage == man2)     CurrentImage = man1;
         // man walks left
         public void checkCurrentImageLeft()
                   if((CurrentImage == man3)||(CurrentImage == man2)||(CurrentImage == man1))
                        CurrentImage = man5;
                   if(CurrentImage == man6)          CurrentImage = man4;
                   else if (CurrentImage == man4)     CurrentImage = man6;
                   else if(CurrentImage == man5)     CurrentImage = man4;
         public void keyPressed(KeyEvent evt) {
              int offset;
              int x = evt.getKeyCode();
              if (evt.isShiftDown()) {
                   offset = 20;
              else {
                   offset = 10;
              switch (x) {
                   case (KeyEvent.VK_UP):                     // man goes up
                             checkYmin();
                             //checkCurrentImage(2);
                             yPos -= offset;
                             break;
                   case (KeyEvent.VK_DOWN):
                             checkYmax();
                             //checkCurrentImage(2);          // man goes down
                             yPos += offset;
                             break;
                   case (KeyEvent.VK_LEFT):               // man walks left
                             checkXmin();
                             checkCurrentImageLeft();
                             xPos -= offset;
                             break;
                   case (KeyEvent.VK_RIGHT):               // man walks right
                             checkXmax();
                             checkCurrentImageRight();
                             xPos += offset;
                             break;
              repaint();  // display image
         public void keyTyped(KeyEvent evt) {
         public void keyReleased(KeyEvent evt) {
        public void update(Graphics g)
            // Will hold the graphics context from the offScreenBuffer.
            // We need to make sure we keep our offscreen buffer the same size
            // as the graphics context we're working with.
            if ((offScreenBuffer==null) || (offScreenBuffer.getWidth(this) != getWidth()) || (offScreenBuffer.getHeight(this) != getHeight()))
                xPos = getWidth()/2;
                yPos = getHeight()/2;
                offScreenBuffer = this.createImage(getWidth(), getHeight());
            // We need to use our buffer Image as a Graphics object:
            Graphics gr = offScreenBuffer.getGraphics();
            gr.setColor(getBackground());
            gr.fillRect(0, 0, getWidth(), getHeight());
            paint(gr); // Passes our off-screen buffer to our paint method, which,
            // unsuspecting, paints on it just as it would on the Graphics
            // passed by the browser or applet viewer.
            g.drawImage(offScreenBuffer, 0, 0, this);
            // And now we transfer the info in the buffer onto the
            // graphics context we got from the browser in one smooth
    }

    Not only is this your 7th or 8th posting on this topic, you can't even wait 15 minutes before bumping the posting.
    Your question is no more important than anyone elses on the forum and continually posting, starting new threads on the same topic is one sure way to get your posting ignored.

  • Images merging and movies merging

    Hello!
    I am new to Java Media Framework and I'm sorry about my English is really poor.
    I read articles , like :
    [Generating a Movie File from a List of (JPEG) Images|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/JpegImagesToMovie.html]
    [Merging Tracks from Multiple Inputs|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Merge.html]
    I'm at Unbuntu 9.04 i386 Desktop , using JDK 1.6.0_16 , and [JMF 2.1.1e Software|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/download.html].
    [ Question 1 ]
    I want to merge images into a mov file per 2 images
    $ java JpegImagesToMovie -w 320 -h 240 -f 1 -o file:1.mov file:foo1.jpg file:foo2.jpg
    $ java JpegImagesToMovie -w 320 -h 240 -f 1 -o file:2.mov file:foo3.jpg file:foo4.jpg
    $ ...
    the result of 1.mov and 2.mov is work correctly, and then, I want to merge 2 mov files into 1 mov file
    $ java Merge -o file:result.mov file:1.mov file:2.mov
    the file size of result.mov is almost the sum of the 1.mov and 2.mov , but i cannot play it correctly, the result.mov is only show the content of the 1.mov.
    the real cmd :
    $ java -classpath jmf.jar:. JpegImagesToMovie -w 691 -h 299 -f 1 -o file:a.mov /images/1.jpg /images/2.jpg
    $ java -classpath jmf.jar:. JpegImagesToMovie -w 691 -h 299 -f 1 -o file:b.mov /images/3.jpg /images/4.jpg
    $ java -classpath jmf.jar:. Merge -o file:result.mov file:a.mov file:b.mov
    [ Question 2 ]
    I use [Writing AVI videos using pure Java|http://blog.hslu.ch/rawcoder/2008/08/12/writing-avi-videos-using-pure-java/] to merge images(jpg) into a avi file, and it works correctly. the type is MJPG/MJPEG.
    like [Question 1] , 1.avi and 2.avi made, and then , I can use the avimerge tool to merge them into the result.avi , and it works correctly.
    but I cannot merge them by [Merging Tracks from Multiple Inputs|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Merge.html] even if I change the code of Merge.java :
    @49 : String videoEncoding = "MJPG";
    @51 : String outputType = FileTypeDescriptor.MSVIDEO;which is according to [Class VideoFormat|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/apidocs/javax/media/format/VideoFormat.html] and [Class FileTypeDescriptor|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/apidocs/javax/media/protocol/FileTypeDescriptor.html] .
    the real cmd :
    $ java -classpath jmf.jar:. Merge -o file:result.avi file:a.avi file:b.avi
    but I cannot play it correctly.
    Thanks for your help !!

    hello.there wrote:
    hi shadowLife ,
    I am also a newbie to this filed.Curently i am working on Video conference tool using JMF. I also need to merge the mulitple audio files and i found, it is possible.
    One of my friend tried to merge the two video files, but the problem is that when you play them it plays only first video. As these videos are stored as multiple tracks so only one trakc is played at a time. If you want to see the other video then there should be a option of seeing video track in your player like it is in VLC player.
    So i don't know whether merging of two video tracks as a single video track is possible or not (i feel it is not possible), because video stream is different from audio stream.Merging two video streams together doesn't make sense the way it does with an audio stream. Thus, if a video has more than one video stream running concurrently, it'd be for something like "alternate angles" on a DVD, or perhaps security camera software would combine all of the video feeds into a single file like that.
    The OP was wanting to concatinate video files, not merge them. One right after the other. This concept makes a lot more sense for most applications.
    One way to do this is to play both video on some panel and capture the screen ( i heard that is is possible in java) then create a video from this captured images.It is possible to do that, but you would never want to do something like that... There are more problems with that idea than I can count, just stemming from the fact that that is a very, very hacky solution.
    Certainly there are instances where this might be necessary, but anything like that would absolutely be a last-ditch effort and could never be included in any sort of publishable software...
    Hope this information will help you.
    May be, i can be wrong so hoping for others reply on that. this will help me also for making my fundamentals and knowledge strong.Can be wrong and mostly were ;-) But it's a learning experience for everyone, eh?

  • Discovering problem in image changing script

    Hello!
    I'm quite new to flash editing and am currently working on a pre-designed template for a friend.  I was in the midst of replacing the photo's and something went awry with the image changing script.  You can see exactly what I mean here:
    http://www.greenworknow.com/Test/2138/flash&html/main.swf
    http://www.greenworknow.com/Test/2138/flash&html/main2.swf
    The first link is a successful working change, I had edited it a few days before and everything worked just fine.  But in the second part you can see the same movie, but with the animations all choppy and broken.  To change the images, I simply viewed the properties of the image needing to be change and used "Update", selected the new image and saved.  But when following these same steps again I seem to get really choppy animations, any clues to what I'm doing wrong?
    I've made sure to crop the new images to the same size, I've also tried using Import instead of Update.  I can't seem to find a way to keep everything smooth.  Any help is much appreciated, thank you!
    [Also unfortunately I do not have the FLA file for the first movie, only the FLA file for the (broken) second one.]

    Both movies look approximately the same. There was some jerkiness to the photos showing up in each movie. The problem that you are seeing may be due to the first movie's images being cached and the second was not.

  • Change of movie art impossible

    Hi,
    I am currently importing my DVDs into iTunes (latest version) - all as *.m4v video. For some of the videos it is not possible to change the movie/cover art. I paste the cover in the information dialog, but after hitting okay the cover is lost and iTunes shows the first picture of the movie - very disappointing.
    any suggestions are much appreciated.
    Best regards,
    Dirk

    Mojo1970 wrote:
    Hi,
    I am currently importing my DVDs into iTunes (latest version) - all as *.m4v video. For some of the videos it is not possible to change the movie/cover art. I paste the cover in the information dialog, but after hitting okay the cover is lost and iTunes shows the first picture of the movie - very disappointing.
    any suggestions are much appreciated.
    Best regards,
    Dirk
    moin moin Dirk and welcome to the discussion area !
    try this:
    select the movie in iTunes and +get info+. go to the artwork tab, click on the artwork once to highlight it and click delete
    +get info+ again on the file. open and copy the image in preview or copy it in safari. go back to iTunes, click into the artwork box once and paste the image. click ok.
    alternatively, click add and navigate to the image on your HD.
    any joy ?

  • Imported image's position moves when updated in Indesign CS6. Why??

    After modifying an imported image from illustrator, the imported image's position moves within the frame of Indesign CS6 when the link is updated.

    You have not provided any relevant information, so nobody can know. you can simply have added content that expands the bounding box. Well, whatever, ask in the relevant forums and be much more specific.
    Mylenium

  • Why does the color and or tone of my image change?

    Why does the color and or tone of my image change after working in LR for a couple of hours? I open LR and everything looks fine - work for a couple of hours on the same shoot - but then the pictures start to look flat or greenish cast as time goes by. All the files get flat and the greenish cast after a couple of hours - the ones already worked on and the newer ones I'm pulling up to work on. RAW files downloaded from a Canon 30D. Also exporting to PSCS2 as PROPhoto results in a flat image. I switched back to export AdobeRGB.

    Hola - thanks for the reply - yep - closing and then opening LR helps - but can't do that all the time after processing 3 or 4 files.
    One reply was a corrupt monitor color profile - So I deleted that one and loaded a new adobeRGB profile. That helped a little also for a while - I then reloaded my monitor drivers and refreshed them - that help for a day - the greenish cast is back It works fine on my laptop for now. The same pictures that look greenish in LR look great in Canon DPP. So it probably wasn't the color profile or monitor drivers. My issue started with the small scale previews so I bumped that up. Still have the issue. I finished up a project and now going to uninstall and reinstall LR. Let's see what happens with a fresh install. andy.

  • PDF image changes when opening in photoshop

    sometimes when we open PDF files in photoshop the image changes. sometimes text disappears and other times fading occurs. Here is how it can be duplicated:
    1. First try downloading the file here http://www.m3printing.com/files/wierd.pdf
    2. open the file with acrobat. take note of the red NYN in the upper left
    3. open the file with photoshop. you will notice the YN becomes faded
    any clues as to why this is happening would be greatly appreciated
    ps. we use photoshop CS2

    This doc is unnecessarily complex in its color structure.
    It uses CMYK and seven spot colors. CMYK is DeviceCMYK,
    which means, the space is not defined in the doc by an ICC
    profile.
    A part of the red text vanishes if the doc is opened in Photo-
    shop in CMYK mode. I don't know why. Perhaps a trans-
    parency flattening problem.
    Analyzed by Acrobat > Tools > Print Production > Preflight.
    My suggestion: convert each page into a well specified CMYK
    space as recommended by the printer.
    The fastest solution:
    Open in PhS in Lab mode with reasonably high resolution,
    for instance 288ppi, convert into a specified CMYK space
    and save as TIFF.
    The correct solution:
    Go back to the source program (InDesign) and replace all
    Spots by process colors. Flatten and save by new name.
    Export as PDF.
    Flattening in advance to Export guarantees the appearance.
    Export with layers contains the risk that flattening at the
    receiver turns out to be wrong.
    Best regards --Gernot Hoffmann

  • TS3354 HOW TO CHANGE HD MOVIES INTO REGULAR MOVIE

    how to change hd movies on itunes to regular movies

    iTunes automatically syncs HD videos (if they exist in your library) unless you check "Prefer standard definition videos" in the iTunes iPad Summary tab.

  • Why does color of image change when imported to Photoshop

    When I import or edit my Lightroom image into Photoshop the color tones of the image change to a darker tone.
    I'm using the same screen.
    What can I do to correct this?

    Thanks for both responses .
    I tried changing the export settings but still get a different color image rom the one I get in Lightroom.
    Also, the monitor was recently callbrated, so could the answer be in PHOTOSHOP's color management settings?
    When I checked PS's Color Settings window the " Working Spaces" setting was at  "sRGB"...
    and
    Color Management Policies @ "Preserve Embedded Profiles
    My first export from LR was also @ sRGB.
    Any thoughts on some common settings that might put this right?
    Thanks again.

  • Rollover seperat image change

    I want to have 10 small images for navigation where you
    rollover one and the content image changes (not the image i
    rollover) how do i do this in dreamweaver?
    thanks,
    s

    Yeah.... 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:eni4n6$j2s$[email protected]..
    >> No topics found.
    >
    > Wow! Thanks. Next time I'll double-check before posting.
    >
    > Walt
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:enhn3b$5do$[email protected]..
    >> No topics found.
    >>
    >> But, here's a tut for you........
    >>
    >>
    http://www.dwfaq.com/tutorials/basics/disjointed.asp
    >>
    >>
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >> ==================
    >>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >> ==================
    >>
    >>
    >> "Walt F. Schaefer" <[email protected]>
    wrote in message
    >> news:enhfoe$qqj$[email protected]..
    >>> In Help search on "disjointed rollover"
    >>>
    >>> Walt
    >>>
    >>> "smbbell" <[email protected]>
    wrote in message
    >>> news:enhads$kqg$[email protected]..
    >>>>I want to have 10 small images for navigation
    where you rollover one and
    >>>>the content image changes (not the image i
    rollover) how do i do this in
    >>>>dreamweaver?
    >>>>
    >>>> thanks,
    >>>> s
    >>>
    >>>
    >>
    >>
    >
    >

  • Why won't image change in aperture once I've export to edit in photoshop?

    On going learning issue!
    I finally managed to edit in photoshop via aperture. I have to change the photo from 16 bit to 8 bit so I can edit it. I like to take the photo into Photoshop (elements 4) to fix some spots and such.
    It's supped to change in aperture when you are done editing in photoshop..right?
    What I see is a new version of the photo, but the changes have not been made.
    What am I doing wrong? I can see this becoming a problem when I try to export to print, burn a CD or even to web.
    How I fix it?
    Thanks!
    IMAC G5   Mac OS X (10.4.6)  

    <...>
    3) Execute a File > Save command in Elements. (NOT a
    Save As...).
    4) Close the file in Elements.
    The edited version will show up in Aperture
    automatically with all of your changes applied.
    <...>
    One note on that excellent summary - you do not have to close the file after saving, you can continue to work on the image and save multiple times. Each time you save Aperture will recognize the changes and update the Aperture thumbnail.
    As to the original problem, it sounds like possibly you were saving the image somewhere else? Converting to 8-bit should be fine, as is resizing the image - Aperture should adjust for any changes made to the image.
    Another possibility is that Elements does not have something called "compatibility mode" turned on for PSD saves - if you've turned that off to conserve space turn it on again, because that compatibility mode saves a flattened image which is what Aperture uses to recognize image changes.

  • Flattening image changes values of adjustment layers

    I'm working with CS3 on a Mac OS 10.4.9, 4.5 gb ram. My image consists of 6 adjustment layers and a background layer. 5 of the adjustment layers (all curves) are set to luminosity and 1 color balance layer is set to normal blending mode. When I flatten the image the tonality in part of the image changes. I also tried merging down the adjustment layers one by one into the background layer but the final result is the same. Any suggestions?

    Are you looking at the image at 100% of size (actual Pixels)?
    It make a difference to what you see on the monitor when you flatten Layers.

  • Why do images change position in preview mode?

    Everything looks perfect in my design mode - when i try to preview or publish the images and graphics move to different positions! Anyone know why this is?

    Thanks for your reply! The first image is the design mode where everything is in the correct place. As you can see in the second one the images and grey bar at the bottom goes wonky !! You can also see this here: http://qasystemstest.businesscatalyst.com/management-team.html
    Any idea why this happens??

  • Why does the quality of my images change after I click on Save For Web?

    After I click on "Save For Web" the quality of my images changes, how can I stop this?
    I use photoshop CC on a macbook.
    Thanks in advance!
    Bo

    Good day!
    Could you please post screenshots to illustrate the issue?
    Regards,
    Pfaffenbichler

Maybe you are looking for