Animated Gif - Problem with Frame Delay

Mac OS X 10.5.8 
PSE 6.0
I just created an animated gif by following the steps in PSE Help.  It says that I should be able to adjust the rate at which the images rotate by changing the Frame Delay measurement but I am unable to change it.  In fact I am unable to change anything in the Animation section of the dialog box. 
When I check Animation, the options appear to become active (they're no longer greyed out) but I can neither uncheck the Loop option nor change the Frame Delay option.  All other sections of the dialog box work fine.
Your help would be most appreciated!
Beth

Unfortunately this is broken in PSE 6 and PSE 8. You can tab into the frame delay box if you start above it someplace on that side of the screen, and it appears to let you change the rate, but your choice doesn't really affect the actual frame rate. The only workaround is to duplicate frame layers that you want to stay onscreen longer (so it will be changing just as fast, but not visibly).

Similar Messages

  • Problem to create animated gif using transparent frames

    Hi, everyone:
    My name is Edison, I am playing with Gif89Encoder utility classes to make an animated gif which is a requirement for my course work.
    I got some problem about the transparent frames. I used the png image as the frame to create the animated gif,
    those pngs have transparent colors and the background is totally transparent, when i create the animated the gif with those
    frames, the animated gif display the colors but without transparency for those colors, but the background is transparent as expected.
    I am not sure if I should IndexGif89Frame or DirectGif89Frame for the colors from the Gif89encoder package.
    Is there anyone got the same problem and knows how to fix it?
    The following is how i setup the colors in my png file, the alpha channel is 80.
    Color[] colours = new Color[7];
              colours[0] = new Color(255, 255, 255, 0);
              colours[1] = new Color(128, 128, 255, 80);
              colours[2] = new Color(128, 0, 128, 80);
              colours[3] = new Color(0, 128, 128, 80);
              colours[4] = new Color(128, 128, 0, 80);
              colours[5] = new Color(204,102,255,80);
              colours[6] = new Color(255, 0, 0, 80);The code i did to generate gif:
    public void run89Gif()
            Image[] images = new Image[4];    
            try{
                images[0] = ImageIO.read(new File("D:/temp/0.png"));
                images[1] = ImageIO.read(new File("D:/temp/1.png"));
                images[2] = ImageIO.read(new File("D:/temp/2.png"));
                images[3] = ImageIO.read(new File("D:/temp/3.png"));
                OutputStream out = new FileOutputStream("D:/temp/output.gif");
                writeAnimatedGIF(images,"Empty annotation", true, 1, out);         
                images = null;
            }catch(IOException er){ }
    static void writeAnimatedGIF(
            Image[] still_images,
                String annotation,
                boolean looped,
                double frames_per_second,
                OutputStream out) throws IOException
            Gif89Encoder gifenc = new Gif89Encoder();
            for (int i = 0; i < still_images.length; ++i){
               gifenc.addFrame(still_images);
    gifenc.setComments(annotation);
    gifenc.setLoopCount(looped ? 0 : 1);
    gifenc.setUniformDelay((int) Math.round(100 / frames_per_second));
    gifenc.encode(out);
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi, everyone:
    My name is Edison, I am playing with Gif89Encoder utility classes to make an animated gif which is a requirement for my course work.
    I got some problem about the transparent frames. I used the png image as the frame to create the animated gif,
    those pngs have transparent colors and the background is totally transparent, when i create the animated the gif with those
    frames, the animated gif display the colors but without transparency for those colors, but the background is transparent as expected.
    I am not sure if I should IndexGif89Frame or DirectGif89Frame for the colors from the Gif89encoder package.
    Is there anyone got the same problem and knows how to fix it?
    The following is how i setup the colors in my png file, the alpha channel is 80.
    Color[] colours = new Color[7];
              colours[0] = new Color(255, 255, 255, 0);
              colours[1] = new Color(128, 128, 255, 80);
              colours[2] = new Color(128, 0, 128, 80);
              colours[3] = new Color(0, 128, 128, 80);
              colours[4] = new Color(128, 128, 0, 80);
              colours[5] = new Color(204,102,255,80);
              colours[6] = new Color(255, 0, 0, 80);The code i did to generate gif:
    public void run89Gif()
            Image[] images = new Image[4];    
            try{
                images[0] = ImageIO.read(new File("D:/temp/0.png"));
                images[1] = ImageIO.read(new File("D:/temp/1.png"));
                images[2] = ImageIO.read(new File("D:/temp/2.png"));
                images[3] = ImageIO.read(new File("D:/temp/3.png"));
                OutputStream out = new FileOutputStream("D:/temp/output.gif");
                writeAnimatedGIF(images,"Empty annotation", true, 1, out);         
                images = null;
            }catch(IOException er){ }
    static void writeAnimatedGIF(
            Image[] still_images,
                String annotation,
                boolean looped,
                double frames_per_second,
                OutputStream out) throws IOException
            Gif89Encoder gifenc = new Gif89Encoder();
            for (int i = 0; i < still_images.length; ++i){
               gifenc.addFrame(still_images);
    gifenc.setComments(annotation);
    gifenc.setLoopCount(looped ? 0 : 1);
    gifenc.setUniformDelay((int) Math.round(100 / frames_per_second));
    gifenc.encode(out);
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Open and edit animated .gif while preserving frame timing

    CS4 Premium Design Edition, Win XP
    I was disappointed with the removal of Image Ready from CS3 because although some of the functionality was placed into Photoshop 10, there was no way to open and edit an existing animated .gif while preserving the timing of each individual frame. I was told on the PS forum at the time that I really needed to use Fireworks. I resented that, because I was very happy with Image Ready and I didn't want to have to learn a new application just to gain functionality that had been included in previous versions of PS/IM.
    I've now got CS4 Premium Design Edition which of course includs Fireworks... and here's what Help has to say on the subject of imported .gifs.
    "Note: When you import an animated GIF, the state delay setting defaults to 0.07 seconds. If necessary, use the States panel to restore the original timing."
    This is no use to me. What if I don't know the individual frame timings? What if there are 200 frames with varying timings?
    Simple question: which current Adobe product is capable of importing a .gif while retaining the frame timings? If anyone knows, or if I've misunderstood the nature of the Fireworks Help quote above, I'd really appreciate some input here. Thanks :)
    Not so simple question: why was an excellent gif-editing application thrown out to have its functionality partially replaced by a bunch of scripts and half-effective workarounds cooked up by desperate users ("import a gif by using the video import and typing *.* into the filename box..")? It's a fair question I think.
    Mark

    Hi Bob, that's not glib at all, it's a reasonable question.
    I uninstalled it along with everything else when I installed CS3, in the reasonable expectation that whatever replaced IR would be at least equal in functionality.
    Perhaps I should just dig out CS2 and install IM from there, but I have some serious reservations about doing so, because I don't know if/how a partial install of CS2 will impact upon my installation of CS4, and I'm not confident of getting support.
    I am also curious to know if/why Adobe actually removed basic functionality without replicating or replacing it in their other software. I really want to know: which recent, currently supported Adobe product
    should I be using in order to regain this functionality? Or do Adobe no longer produce a geniuinely comprehensive .gif-editing application?
    Mark

  • Keynote 3: Transparent Animated GIF Problems

    I've been trying to get an animated GIF with a transparent background to run in Keynote, but it's giving some disastrous results.
    I produce the animation by rendering the frames as PNG (with alpha channel) in MegaPOV 1.2.1. Then I use the convert utility from ImageMagick 6.2.9 to make them into an animated GIF.
    When I drop the animated GIF into Keynote 3.0.2, the first frame shows fine (with transparency and all). But when I animate it, the background goes red (the main color in this particular movie) and some trace of the previous frames stays. It seems like:
    1. Rather than displaying the GIF frame-by-frame, each frame is getting layered onto the previous frames.
    2. Keynote doesn't like the alpha channel for some reason.
    Problem 1 is also present if I open the GIF in Preview (is that supposed to be the correct behavior of an animated GIF?). Problem 2 seems to be Keynote-specific.
    Any suggestions for a work-around on this? The animated GIFs work fine if rendered without the alpha channel, but it'd look so much better with transparency!
    iMac 2GHz Intel Core 2 Duo   Mac OS X (10.4.9)  

    MegaPOV doesn't have a GIF output option. The choices are PNG, Targa, PPM, and hdr (not familiar with that last one). I don't know if PPM even has alpha-capability.
    So in some way, I have to convert PNG to GIF. The tools I have to do this are ImageMagick and Gimp. I tried them both, then viewed the results using several programs. Results are tabulated below -- (1) means that problem 1 from above was apparent (ie, parts of the previous frames were visible under the current frame); (2) means that problem 2 was visible (ie, the transparent parts took on some background color).
    If I didn't know how to change the default white background in the program, I couldn't tell whether problem (2) occurred, since the movie made with Gimp had a white background in Keynote.
    Using ImageMagick 6.2.9 to convert PNG->GIF and animate GIF:
    * viewing with Safari 2.0.4 : (1), can't tell for (2)
    * viewing with Preview 3.0.9 : (1), can't tell for (2)
    * viewing with Firefox 2.0.0.3 : (1)
    * viewing with Keynote 3.0.2 : (1), (2) -- alpha goes red
    Using Gimp 2.2.11 to convert PNG->GIF and animate GIF:
    * viewing with Safari : (1), can't tell for (2)
    * viewing with Preview : (1), can't tell for (2)
    * viewing with Firefox : (1)
    * viewing with Keynote : (1), (2) -- alpha goes white
    I only converted the first few frames using Gimp, since I was doing it by hand.
    All of this makes me wonder whether I'm dreaming the impossible, since problem (1) is universally present. It also makes me pretty sure that problem (2) is Keynote-specific.
    If there are any other tools that will convert/animate GIFs on a modern Mac, I'd love to hear about them. My UNIX-y tools seem to be failing me here. The Mac tools I remember from "back in the day" -- GIFBuilder and GIFConverter -- seem to have been abandoned around the beginning of Mac OS X. GIFBuilder won't even load my files, and GIFConverter still lacks alpha support in PNG.

  • Animated Gif Problem

    Greetings
    I would appreciate some help.
    I am new at creating animated gif's, and am experiencing a
    problem with them when I try to view them in a browser.
    I am working in Fireworks 2004, the following is what I do.
    Create first frame.
    Insert simple arrow.
    Create second frame
    Insert simple arrow with diffrent color
    Third frame same but diffrent image.
    Set the Optimize Panel to Animated Gif, transparency set to
    No tranparency.
    Click on File, Export.
    Type the name of the file in File Name box.
    Select "Frames to Files" option for Save as type option.
    In my folder where I saved the files there are now three gif
    files.
    When I open the file into the following browsers IE 7, 6.0 or
    Firefox it remains as a static image in the browser with no
    animation, the same is for viewing it in Window Explorer Preview
    Pane.
    In Fireworks however the animation plays perfectly.
    I would really appreciate it if someone could tell me what I
    am doing wrong or why they created animated gifs are not playing in
    the browser.
    Regards
    Dave

    Instead of Frames to files on export, select Images only.
    that should do it -
    alex
    revbear wrote:
    > Greetings
    >
    > I would appreciate some help.
    >
    > I am new at creating animated gif's, and am experiencing
    a problem with them
    > when I try to view them in a browser.
    >
    > I am working in Fireworks 2004, the following is what I
    do.
    >
    > Create first frame.
    > Insert simple arrow.
    > Create second frame
    > Insert simple arrow with diffrent color
    > Third frame same but diffrent image.
    >
    > Set the Optimize Panel to Animated Gif, transparency set
    to No tranparency.
    >
    > Click on File, Export.
    > Type the name of the file in File Name box.
    > Select "Frames to Files" option for Save as type option.
    >
    > In my folder where I saved the files there are now three
    gif files.
    >
    > When I open the file into the following browsers IE 7,
    6.0 or Firefox it
    > remains as a static image in the browser with no
    animation, the same is for
    > viewing it in Window Explorer Preview Pane.
    >
    > In Fireworks however the animation plays perfectly.
    >
    > I would really appreciate it if someone could tell me
    what I am doing wrong or
    > why they created animated gifs are not playing in the
    browser.
    >
    > Regards
    > Dave
    >
    >

  • Animated GIF not cycling frames in Tomcat

    I have pages that use animated gif files to get across a point.
    In the IDE, they cycle the images as they should
    SunAppserver cycles them properly.
    I only get the first frame in Tomcat (5.5.7)
    Over on the java.net, I saw this on a page concerning JAI:
    GIF
    The decoder supports animated GIF files and GIF files with transparent background. Only the first frame of an animated GIF file may be loaded via JAI; subsequent frames must be obtained via direct use of the ancillary codec classes.
    Um, am I missing something, or is this a Tomcat problem ?

    You just need transparency in your file. Not sure if it has to be pre-multiplied. In graphic converter you need to remove the backgrounds. Haven't used GC in years so can't say how you can be sure it's gone but in Photoshop, Illustrator and After Effects you can choose to have a checkerboard background to tell you when you are seeing 'thru' the image and by how much (the overall opacity or mask of the whole image if that doesn't confuse the issue).
    If you are using PS images they will almost certainly generated with a set of rectangles including a perimeter cropping box and white background and these need to go either before it's bitmapped in a vector base app or the relevant pixels erased after it has been bit mapped in GC. As previously mentioned, if you have a unique bkgd colour, colour selecting/keying are some ways to do this). Much faster for >10 images to generate the plots without the bkgd but this may not be possible, what software is source material coming from?
    I regularly bring in vector based moving art-work into keynote with alpha from Adobe AE, Apple Quartz and rendered .mov files. Some codecs (H.264) don't support a separate alpha channel (RGBA) but PNG (slow to render) and animation and a bunch of others do. Pre-multiplying removes the A channel in the RGBA (by multiplying the R/G/B by the A values) thereby speeding and making compatible with some GPUs/render pipelines.

  • Animated GIF problems

    I've recently implemented an extension of IconView to animate gifs correctly in editor panes. I am just haveing two problems with it that I can't figure out.
    Firstly, when an animated gif is added it animates fine. The next time the same gif is added, it doesn't animate, just shows the last image of the animation. I assume that something is trying to be clever by caching the image somewhere, is there any way around this?
    Secondly some of the gifs do not animate very well. I believe that they may be using transparency to leave the contents of previous frames behind, but I guess that java does not support this. Any thoughts on how I could solve this?
    Here is the simple code for my view:
    class AnimatedIconView extends IconView implements ImageObserver
         private Container container = null;
         private Rectangle bounds = null;
         public AnimatedIconView(Element e)
              super(e);
              Icon icon = StyleConstants.getIcon(getAttributes());
              if (icon instanceof ImageIcon)
                   ((ImageIcon)icon).setImageObserver(this);
         public void setParent(View parent)
              super.setParent(parent);
              container=getContainer();
         public void paint(Graphics g, Shape s)
              super.paint(g,s);
              bounds=s.getBounds();
         public boolean imageUpdate(Image img,int infoflags,int x,int y,int width,int height)
              if (((infoflags & ImageObserver.FRAMEBITS)>0)&&(container!=null)&&(bounds!=null))
                   container.repaint((int)bounds.getX(),(int)bounds.getY(),(int)bounds.getWidth(),(int)bounds.getHeight());
              return true;
    }Dave

    I just can point you the bug which is probably related to your problem:
    http://developer.java.sun.com/developer/bugParade/bugs/4725530.html

  • Can't open animated GIF, even with secret trick (psd cs3)

    Hi
    I know a lot of people have had trouble with opening animated .gifs in photoshop cs3. I had that problem until I learned the little "trick" you could do (type *.* in "import video frames to layers") and then simply open the gif. This has worked one my computer for some time, but then all of a sudden it stopped working. I thought it was odd and then I formatted my computer and installed a few windows updates and then installed adobe photoshop cs3 and then quicktime. But it still won't open GIF as it used to do. And it's very odd, as my laptop can do it (and it has just been newly reformatted too). I know Adobe's own solution, which is to use fireworks, but I find it to be a crappy program, so I'm not going to use that. I want to be able to import GIFs into photoshop as I used to :/
    Hope someone has encountered this problem too. I know a lot of people had been able to use the trick, but I havn't been able to find anyone who has the crash problem.
    Know of this?

    sounds like you might have a conflict with QuickTime, seeing as the error is in MODNAME quicktime.qts
    first, try resetting the PS prefs. hold CTRL+ALT+SHIFT on launch and then click Yes when prompted. if you have any preferences that you would prefer not to reset, close PS, move the preference files, then launch PS to create new ones. if it's not the problem, you can put them back later. Use the info in kb401600 if you don't know where the preference files are.
    http://www.adobe.com/go/kb401600
    if resetting the prefs doesn't fix it, make sure you have the latest version of QuickTime installed (7.4.5) and that it can launch without problems. if you have problems using QT, let us know or post on Apple discussions to find a solution.
    if you do have the latest version and the problem recently started, it may be that Apple broke something that PS uses in a recent update. uninstall the version you have, delete /program files/quicktime/ folder if it still exists, reboot, download an older version (apple has archived installers; search for "download quicktime 7.3.1 windows" OR "download quicktime 7.1.6 windows" on google to find it), then install it and reboot before trying PS.

  • Animated GIF problem saving for web in CS6

    I made an animated gif in CS6 and trying to save it for the web. The duration of the animation is pretty long, about 44 seconds. After 17 seconds the animation stops while the saving was completed. How can I solve this problem? The file is too large to attach (725 x 225 px) unfortunately.
    Please give me some advice;-)

    Yopu probably exceed the GIF specs and generate too many frames.
    How many frames are possible?

  • Animated GIF. problems in Captivate

    I have been trying to bring in an Animated GIF. into my
    Captivate presentation.
    When I import the animation using Insert> Animation it
    converts the animated gif to a swf file.
    In the preview screen it shows my animated gif with multiple
    colors flashing over and over. It is doing this to all of the
    animated gifs that I am bringing in. My fps is set to 10 within
    Captivate.
    Is there frame restrictions or file size restrictions that is
    causing this error when bringing in an animated gif. Any
    suggestions?

    Hi mikeygilbert23_nap and welcome to our community
    Unfortunately, there are a few different methods used to
    create animated .GIFs. One would think all of them would be created
    simply using different images. Largely this is true. But some
    animation programs allow you to choose different methods for the
    way the screen is painted between frames. Sounds like you may be
    seeing this behavior.
    Not sure what to advise as to how to work past it though.
    Sorry. Hopefully one of the others has a clue.
    Cheers... Rick

  • Animated GIF starts with rollover

    Hello! I want an animated gif to start when I roll over it. I
    tried this with a swap image, using the "still" version of the
    first frame and then setting the swap image to be an animated gif
    file (set directly under the still image. Doesn't seem to work..
    should I be able to do this?
    -- Don

    Donok wrote:
    > Hello! I want an animated gif to start when I roll over
    it. I tried this with
    > a swap image, using the "still" version of the first
    frame and then setting the
    > swap image to be an animated gif file (set directly
    under the still image.
    > Doesn't seem to work.. should I be able to do this?
    Export the animation first, and then use it as the image you
    swap in.
    Uncheck the preload images function in the swap image editor
    to force
    the animation to begin playing onMouseOver.
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

  • Save for web - animated gif problem PSE (Mac)

    Trying to save an animated gif using Save for Web dialogue box...
    works fine, except checkbox "Loop" and delay rate drop down box are highlighted (active) but can't be changed
    anyone know reason /  fix?

    No fix, alas. This has been a problem in the mac version since PSE 6. If your gif is small, you can duplicate layers so that they appear to stay onscreen longer, but the best advice is to not use PSE/mac for this, unfortunately.

  • Fireworks MX animated gif problem

    I am creating a rotating banner with fireworks and I have
    changed all the frame rates from default ( 7 ) to ( 100 ).
    Everytime I go to optimize and change to animated gif. the frame
    rates change back to ( 7 ). Somebody please help.

    quote:
    Originally posted by:
    r_cronier
    I am creating a rotating banner with fireworks and I have
    changed all the frame rates from default ( 7 ) to ( 100 ).
    Everytime I go to optimize and change to animated gif. the frame
    rates change back to ( 7 ). Somebody please help.
    What happened is that you picked a factory preset from the
    Saved Settings dropdown menu. If you don't want to use presets,
    just ignore that top-most dropdown menu. Use the rest of the
    options to set your values: as long as you specify Animated GIF in
    the upper left dropdown menu and pick a palette, the Optimize
    function still works as intended.
    Btw, If you need to use your values regularly, it's a good
    idea to save them as a custom preset so that will show up in the
    Saved Settings menu, along with the factory presets.
    Hope that helps. :-)
    SiamJai
    ~~~~
    http://design.thaiwonders.com
    - Innovative Fireworks & Game Art Community

  • Safari Animated Gif problem

    Hi,
    I'm having a little problem, I have a gif, that only has one play and doesn't loop, If I load the page there is no problem i does the animation, if i then refresh the page it doesn't play the animation only leaves it on the final frame, the same happens if i go to another page in the site that has the same animated gif on it.
    I'm hoping its just a setting in the css or html that can tell it to load gif animation again but that the moment its just confusing me.
    Any help would be greatly appreciated.

    Hi, carta mundi-
    CSS Filters are currently only supported by WebKit browsers, and Firefox is not a WebKit browser.
    Hope that helps,
    -Elaine

  • More problems with frames DOH!

    Hokay, so, here is my program:
    import java.awt.*;
    public class ShowAFrame
         public static void main(String args[])
              Frame f;
              String myTitle;
              myTitle = "Test";
              f = new Frame();
              f.setTitle(myTitle);
              f.setSize(500,500);
              f.setIconImage(new ImageIcon("c:/javaprograms/book2.gif").getImage());
              f.show();
    and here is my error message:
    C:\JavaPrograms>javac ShowAFrame.java
    ShowAFrame.java:13: cannot resolve symbol
    symbol : class ImageIcon
    location: class ShowAFrame
    f.setIconImage(new ImageIcon("c:/javaprograms/book2.gif").getImage());
    ................................................... ^
    1 error
    I feel really stupid asking, but since this is a beginners forum, what am i doing wrong?
    btw, the dots are added to manually move the carrot
    Thanks

    hint #1:
    1) When it tells you: "ShowAFrame.java:13: cannot resolve symbol" it's saying that there's a problem with line #13, specifically, that there's a symbol that it doesn't understand.
    2) Look at the carot. What's it pointing to?
    Now, put 1 and 2 together. The compiler is telling you that there's a word on line 13 that it doesn't understand, and then it shows an arrow pointing to a word on line 13. Any guesses as to the culprit?
    hint #2:
    learn about import statments and their purpose

Maybe you are looking for

  • Null offset from calibration not being applied to output

    I am measuring some load cells using a I 9237.  I am setting the null offset using Device > Bridge Calibration in the DAQ Assistant.  I measure the offet and hit calibrate.  It says "Calibration successful" and I hit finish, but the offset value is n

  • Error message when downloading apps from Creative Cloud

    Error Message: This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance. I need this software NOW!

  • Base unit of measure

    Dear Expert my query is whenever i add new base unit of measure what are the effect it had on the system , i mean how base unit effect in the back end ...how system process base unit of measurement . Regards

  • ERM role generation

    Hi all, i have GRC 5.2 installed. Did the post installation steps. In ERM when i try to create a role without any conflicting tcodes the role is getting generated, but when i include any  2 tcodes risk is showing up, i have mitigated the risk, when g

  • My photos come ALIVE when i zoom in

    fce, making a huge slide show. when i zoom in (kens burn effect) any sharp edge, blinds..edges of desks etc become really wavy to the point of ugly distraction to photo. so i tried to reproduce this by taking the original photo in iphoto altered it i