Clicking on a png image

I have a png file that I am using as a button. It is
basically a circle with a transparent egdes (hence why I'm using a
png format).
My problem is that when I use a mouseove behaviour, director
thinks the image is a square still. Is there a way that I can make
only a portion of the image active (ie the circular part)?

Change the sprite ink to Matte.

Similar Messages

  • Can't Alt+double click to open an image?

    hello:                                                                                                             Level: Newbie  Id:Cs6  Os:Win8
    i have read that Win8 is compatible with Id, Ps and Illy (i'm not sure about the other CC apps but i hope they are too)
    however, while following a vid tut by Terry White ~ he directed me to click on an image and to then hold the Alt key while double clicking to open it in full(er) view but when i did this the image opened in Windows Photo Gallery
    well, earlier i had gone to Default Programs and set Windows Photo Gallery as the default to open images ~ not knowing it would prevent Id from functioning or that it would override (apparently) everything else (yes, i am pretty new to OS's in general too) i did this b/c when i would go to my Pictures folders and click on an image to view it was opening in some AWEFUL program that depixelated (<is that a word?) /made my pics/images look just terrible.
    so, i called Microsoft and the man that was trying to help me said that i had to go to "Associate a File Type or Protocol with a Program" and then i had to choose Each and Every Single File Type (.png, .jpeg, .tiff etc etc) for Each and Every Application (Adobe or not) and "Associate" that File Type with the Application i need for it to open ... um ... caugh caugh ... just a moment .... SCREAM!! uh, what? Really?
    Dear goodness ... please say it ain't so!! please?? (lol)
    so, is this really the deal? or does anyone else think i may have been directed incorrectly?
    i went back to Default Programs to remove Windows Photo Gallery as the Default program but i am not seeing where that is an option.
    i totally understand this isn't help for Windows8 forum but IF anyone has experince w/it and is willing/able to help me out i would also greatly appreciate any advice you may be able to lend. i do plan to go run around the net after i'm done here to look for (a needle in a haystack) help in a Win8 forum (yikes & wo is me)
    oh, also the (nice) man at Microsoft couldn't tell me if i went ahead and did this rather Windows Photo Gallery would still open my Pictures or not or if it would return to that awful preview program i began with in the 1st place.
    this was my very 1st time using InDesign and i would really like to start learning it. does anyone know why i cannot Alt+2's click & then have the image open like it's suppose to? or even how i go about telling Windows8 to please let Id ALSO open the files the way it wants?
    sorry for such a long post. i have been through a nightmare episode just ordering my new laptop and now Win8 seems to be creating an entire season
    thanx so very much in advance for your time and efforts. i will also continue my quest for answers and should i find 'em i will certainly return to share and post links.

    hello peter
    thank you so much for asking as i am quite ready to send my laptop back to where it once came
    well, as i understand it there is a bug with the AMD Graphics card
    when i try to draw a shape, add a new layer, use the alt key to "cut" the line of the pen tool the canvas goes totally black and i cannot use the filters or the 3D tools. also, the bg area behind the canvas changes from dark grey to black to transparent
    all of the above are reasons why i saved for 3 yrs to buy a new laptop w/a decent graphics card and it's just totally bum'n me out
    if i understand correctly it's an issue between the AMD and Windows 8 ~ so as of now i am thinking i should either send it back or get rid of Win8 and install Win7 but actually now that i think of it i dunno if Win7 will correct the AMD issue or not but i think it would.
    at first i thought the issues were Adobe related and not as i seem to have found
    my laptop is a Satellite S875-S7376 the gpu is an AMD Radeon HD 7670M, the hard drive is 1TB, i7, and it has 8GB ram, 64bit, Windows 8
    i went to AMD's website and if i understand correctly there is a "fix" that is helping somewhat but NOT for Toshiba notebooks, Sony and Panasonic and AMD is no longer releasing updates every month but only when they feel they have good enough reason to do so.
    i've been unable to find an idea of when AMD thinks they'll have a fix for Toshiba and i've only got under 2 weeks to return this laptop
    i tried to install something called the AMD Catalyst or maybe it's ATI Catalyst Mobility but was told it could not be installed due to incompatible hardware/software on my computer
    i just wish i could get back to work and decide what would be the best thing for me to do
    i seem to be making some folks upset b/c i keep trying to chase down an answer/solution. for instance i didn't realize that the problem i am having is called Flickering and so i had posted again about it at photoshop.com and was given a lashing about how i was already told this and that.
    i was also told that the solution is to just set Photoshop to Basic Draw Mode ... but that is my whole point as i don't want to have to use Ps in Basic mode as the entire idea of investing in a better computer was to be able to enjoy the bells and whistles
    if you've got any ideas or you know of a solution or even if you've heard of one rolling on down the road i would greatly appreciate anything at all that you could share with me
    sorry if i ramble a bit much i'm just frustrated beyond the point of clarity
    thanx again so much for your time & efforts!!

  • Resizing JFrame on button click to show an image on the JFrame

    Dear All,
    I have a JFrame which has an empty label. On button click I want to set an icon for the label and want the JFrame to be resized to show that icon. I am using frame.pack() and I am not using any other sizing function. The code that I have right now, prints the image on the panel, but does not resize the frame to show the image. Pleae could someone help.package gui;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Font;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.ItemEvent;
    import java.awt.event.ItemListener;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class ComponentDemo extends JPanel implements ActionListener,
    ItemListener, MouseListener, KeyListener {
         private JTextArea textarea;
         private JButton button;
         private final static String newline = "\n";
         private JLabel imageIcon;
         public ComponentDemo() {
              button = new JButton("JButton welcomes you  to CO2001");
              button.addActionListener(this);
              add(button);
              textarea = new JTextArea(10, 50);
              textarea.setEditable(false);
              addMouseListener(this);
              textarea.addKeyListener(this);
              JScrollPane scrollPane = new JScrollPane(textarea);
              add(scrollPane);
              imageIcon = new JLabel();
              add(imageIcon);
              setBackground(Color.pink);
              new JScrollPane(this);
          * Create the GUI and show it. For thread safety, this method should be
          * invoked from the event-dispatching thread.
         private static void createAndShowGUI() {
              // Create and set up the window.
              JFrame frame = new JFrame("Simple FrameDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              frame.setLocation(700, 200);
              // get the content pane and set the background colour;
              frame.add(new ComponentDemo());
         //     frame.setSize(screenSize);
              // frame.getContentPane().setBackground(Color.cyan);
              // Display the window.
              frame.pack();
              frame.setVisible(true);
              frame.setResizable(true);
         public static void main(String[] args) {
              // Schedule a job for the event-dispatching thread:
              // creating and showing this application's GUI.
              javax.swing.SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        createAndShowGUI();
         @Override
         public void actionPerformed(ActionEvent e) {
              // TODO Auto-generated method stub
              if (e.getSource() instanceof JButton) {
                   // System.out.println(e.getSource());
                   String text = ((JButton) e.getSource()).getText();
                   textarea.append(text + newline);
                   textarea.setBackground(Color.cyan);
                   textarea.setForeground(Color.BLUE);
                   textarea.setCaretPosition(textarea.getDocument().getLength());
                   imageIcon.setIcon(createImageIcon("SwingingDuke.png",
                   "Image to be displayed"));
         @Override
         public void itemStateChanged(ItemEvent arg0) {
              // TODO Auto-generated method stub
         @Override
         public void mouseClicked(MouseEvent arg0) {
              textarea.append("A Mouse click welcomes you to CO2001" + newline);
              textarea.setBackground(Color.green);
              textarea.setCaretPosition(textarea.getDocument().getLength());
         @Override
         public void mouseEntered(MouseEvent arg0) {
              // TODO Auto-generated method stub
         @Override
         public void mouseExited(MouseEvent arg0) {
              // TODO Auto-generated method stub
         @Override
         public void mousePressed(MouseEvent arg0) {
              // TODO Auto-generated method stub
         @Override
         public void mouseReleased(MouseEvent arg0) {
              // TODO Auto-generated method stub
         @Override
         public void keyPressed(KeyEvent e) {
              System.out.println(e.getKeyChar());
              textarea.append("The key " + e.getKeyChar()
                        + " click welcomes you to CO2001" + newline);
              textarea.setBackground(Color.YELLOW);
              textarea.setFont(new Font("Arial", Font.ITALIC, 16));
              textarea.setCaretPosition(textarea.getDocument().getLength());
         @Override
         public void keyReleased(KeyEvent e) {
              System.out.println(e.getKeyChar());
              // textarea.append("The key "+
              // e.getKeyChar()+" click welcomes you to CO2001" + newline);
              // textarea.setBackground(Color.green);
              // textarea.setCaretPosition(textarea.getDocument().getLength());
         @Override
         public void keyTyped(KeyEvent e) {
              // TODO Auto-generated method stub
              System.out.println(e.getKeyChar());
              // textarea.append("The key "+
              // e.getKeyChar()+" click welcomes you to CO2001" + newline);
              // textarea.setBackground(Color.blue);
              // textarea.setCaretPosition(textarea.getDocument().getLength());
         /** Returns an ImageIcon, or null if the path was invalid. */
         protected ImageIcon createImageIcon(String path, String description) {
              java.net.URL imgURL = getClass().getResource(path);
              if (imgURL != null) {
                   System.out.println("found");
                   return new ImageIcon(imgURL, description);
              } else {
                   System.err.println("Couldn't find file: " + path);
                   return null;
    }

    myJPanel.setPerferredSize(new Dimension(new_width, new_hight));
    myJFrame.pack();

  • Firefox asks what to do with some PNG images instead of just displaying them

    Not sure what is going on here, but some PNG images seem to confuse Firefox, while others are fine. While some PNGs just display when clicked on (eg: when wanting to see a full size image from a thumbnail), others make Firefox ask what I want to do with it. When I select "Firefox 3.6.8" it ends with an error:
    /tmp/elementary_gtk_theme_by_DanRabbit-1.png could not be opened, because an unknown error occurred.
    Try saving to disk first and then opening the file.
    ... but when I manually made it open with "/usr/bin/firefox" (I'm in Ubuntu) the image opens fine. I was beginning to think this was now universal for PNGs, but I was opening offending ones from the same site, and going elsewhere showed that some PNGs will be displayed as usual. Does anyone have any idea why this would happen to some PNGs but not all? Here is a link to one of the problem PNGs:
    http://s.linux-mag.com/i/articles/7811/elementary_gtk_theme_by_DanRabbit.png
    It opens without issue in Opera. Hope someone can make sense of this. Cheers

    You can look at this extension:
    *Open in Browser: https://addons.mozilla.org/firefox/addon/8207

  • How to load external png image via xml?

    Can anyone help me with adding a png image to a mc with an instance name.
    I only want to display a single image (no gallery)
    I would like to get the url for the image via an xml.
    Here is a copy of my current action script which has already pulled in the xml data which includes the node with the url for the photo.
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    var myXML:XML;
    var myLoader:URLLoader = new URLLoader();
    myLoader.load(new URLRequest("links.xml"));
    myLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
        myXML = new XML(e.target.data);
        trace(myXML);
        menumv.carbtn.addEventListener(MouseEvent.CLICK, openCURL);
        menumv.edubtn.addEventListener(MouseEvent.CLICK, openEURL);
        menumv.psybtn.addEventListener(MouseEvent.CLICK, openPURL);
        menumv.stubtn.addEventListener(MouseEvent.CLICK, openSTURL);
        menumv.busbtn.addEventListener(MouseEvent.CLICK, openBURL);
        menumv.shabtn.addEventListener(MouseEvent.CLICK, openSURL);
        studentmv.stuname.text = myXML.student.name;
    function openCURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.car.url));
    function openEURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.edu.url));
    function openPURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.psy.url));
    function openSTURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.stu.url));
    function openBURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.bus.url));
    function openSURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.sha.url));
    And here is a copy of the node containing the url
    <menu>
        <student>
        <name>testnamehere</name>
        <photo>http://10.0.0.2/test/photos/testnamephoto.jpg</photo>
        </student>
    </menu>
    I did see this tutorial but it was for a gallery and I couldnt seem to hack and slash it to do what I want.
    http://tuts.flashmint.com/creating-a-simple-xml-gallery-in-actionscript3/
    Thanks again in advance for all the help.

    I have added that code but I think i have buggered up something else in the process.
    I get the following error
    ReferenceError: Error #1069: Property data not found on flash.display.LoaderInfo and there is no default value.
        at sdp_fla::MainTimeline/load_complete()
    Current AS
    import flash.events.Event;
    import flash.events.MouseEvent;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    var myXML:XML;
    var myLoader:URLLoader = new URLLoader();
    myLoader.load(new URLRequest("links.xml"));
    myLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
        myXML = new XML(e.target.data);
        trace(myXML);
        menumv.carbtn.addEventListener(MouseEvent.CLICK, openCURL);
        menumv.edubtn.addEventListener(MouseEvent.CLICK, openEURL);
        menumv.psybtn.addEventListener(MouseEvent.CLICK, openPURL);
        menumv.stubtn.addEventListener(MouseEvent.CLICK, openSTURL);
        menumv.busbtn.addEventListener(MouseEvent.CLICK, openBURL);
        menumv.shabtn.addEventListener(MouseEvent.CLICK, openSURL);
        studentmv.stuname.text = myXML.student.name;
    var _request:URLRequest = new URLRequest(myXML.student.photo);
    var _ldr = new Loader();
    studentmv.photo.addChild(_ldr);
    _ldr.load(_request);
    _ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, load_complete, false, 0, true);
    function openCURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.car.url));
    function openEURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.edu.url));
    function openPURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.psy.url));
    function openSTURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.stu.url));
    function openBURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.bus.url));
    function openSURL(e:MouseEvent):void
            navigateToURL(new URLRequest(myXML.sha.url));
    function load_complete(event):void
    var bitmap:Bitmap = Bitmap(event.currentTarget.data);
    bitmap.smoothing = true;
    bitmap.width = studentmv.photo.width
    bitmap.width = studentmv.photo.height
    studentmv.photo.addChild(bitmap)

  • Why aren't my FW (PNG) image are not showing up

    Hey guys.
    This is really bugging the hell out of me. I feel like I
    can't move on until i can figure out why my PNG images are not
    showing up in preview (F12). They did yesterday before I deleted
    some pages and renamed old pages I no longer needed.
    All my images that was done in FW are in my root folder in
    the file panel. i didn't move any of those. When I double click on
    the image to bring up the "select image source" in the URL it
    starts off with two periods then a slash and then the name of where
    it's located as well as the name of the image. The "relative to":
    is site root. i didn't change any of these setting before I deleted
    and renamed pages in my file panel.
    Oh, and my Ap Divs show up in light gray boxes.
    Please help!
    CS3 Mac

    I'm confused by the subject line! Is this like 'all of your
    base are belong
    to us?' 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Dooza" <[email protected]> wrote in message
    news:gki5he$3pu$[email protected]..
    > Why_ATL wrote:
    >> Hey Alan
    >> is the filename exactly what it should be? YES
    >> Are these .png files for web use, or are they PNG
    fireworks original
    >> files
    >> which are very large in file size because they
    contain all the info on
    >> layers and such? They are .png files for the web. I
    can't figure out why
    >> my Div is showing up in preview instead of my images
    There just Div's
    >> with the little blue question mark.
    >>
    >> This is getting harder and harder. I'm trying to
    laugh so i don't get a
    >> head ache over this. This is weird.
    >
    > Without a link we can only make wild stabs in the dark.
    >
    > Dooza

  • Transparency in png image not showing

    Hello,
    I have a Region, which needs a background and an image 'on top' of it.
    I can set the background using
    setStyle("-fx-background-color: #" + 123456 + ";");
    Or I can just use a Rectangle of that colour.
    Then I have an ImageView...   spiralImgView = new ImageView(new Image("images/spiral2.png"));
    The png image itself has some transparency in it.
    So when I add them to the region...
    this.getChildren().addAll(rect, spiralImgView);
    I just get a white background showing behind the image.
    Can anyone help me fix this?
    Thanks

    I didn't do any coding.  This will tell you if it is your image:
    1)  Download and start JavaFX Scene Builder
    2)  Without making any changes paste "-fx-background-color: #1d1d1d;" into the "Style" box of the "Properties" window
    3)  Drag and drop an Image View into the scene from the "Library" window.
    4)  Click on the ImageView in the "Hierarchy" window.
    5)  In the "Properties" window Use the "Image" selector to find your img on disk
    If your image is mostly transparent it's background will not be white but #1d1d1d

  • PNG images not displaying in Safari iPad

    Hi all,
    We have developed a webpage that loads PNG images in a div that can expand / reduce.
    The issue i cant seem to solve is why the PNG images do not load on Safari iPad. They just display as blue question marks. However not an issue with PC browsers.
    The link is here: http://bit.ly/yBDKl9
    Any ideas or suggestions will be welcomed.
    King regards,
    Matt

    Thanks for this.  Looks like I'm going to have to reduce the size of my image since I've noticed the same problem on an iPhone 3GS.  My original is big but only 2 colour. I don't like ragged edges so best make it 16 shades of grey first so the edges on the smaller image are a bit softer (PaintShop Pro can cope with this). I am certainly not going to degrade it with JPEG zits!
    This problem only appears with reduced images (eg. using the HTML style="width:50%;") - if I view source and click on the image link, the full sized image appears, but is far too big for the screen.
    Symptomatic of a not-very-good operating system/browser since even M$ got that bit right! BTW - llawjm's website still has the problem he described on my iPhone, but looks fine on a Tesco Hudl (Android) and Firefox on a PC.

  • After installing Fireworks CS3, IE shows the download dialog instead of opening PNG images

    After installing Fireworks CS3, when clicking a link to a PNG
    image, IE displays a download dialog instead of opening the image.
    I am not sure why Fireworks becomes the default file handlers of
    PNG and GIF without asking or notifying the user during
    installation, but I think this is the cause.
    Does anybody know how to fix the problem?
    Thanks,
    Franklin Tse

    Fireworks uses a form of .png as its native file format
    (which many people find unfortuante) The Fireworks format includes
    some additional information, allowed by the specification, so you
    want to make sure that, if you want a .png for the Web, you
    export from you Fireworks image, not just
    save.
    In any case you can re-associate the file types. Exactly how
    you re-associate file types depends on your OS.
    In Vista, right click on a .gif and select 'Properties.'
    Under 'Type of file', click on the 'Change'
    button and change the associate application. Make sure the
    checkbox next to 'Always use the selected program to open this kind
    of file' is checked.

  • Changing .PNG Images

    I just got my MacBook yesterday and I have been trying to change my application icons but have run into a problem: all .PNG images have the same default image (the one with the piece of paper behind a photo that simply says "PNG") Every time I click on the .PNG and go to "Get Info" the small image on the top is the default icon, so when I copy it and paste where I want to replace another icon it always ends up being the default "PNG" icon.
    Is there an easy way to show the actual .PNG I downloaded rather than the default one?
    Any help appreciated.

    When you download images from the internet, they do not have an icon. There is no way to automatically give them an icon either. Well, there is with a "Folder Action" but that is a pretty geeky solution.
    They COULD have the icon of your default PNG viewing application, but apparently it is not set in your OSX. Right-click on the icon and get the infowindow. Chick the "Open With" button and navigate to Preview.app. Now click the "Change All" button. That makes all PNGs have the review icon and when doubleclicked they will open in Preview.
    If you want more graphic manipulation features you should use a dedicated app like GraphicConverter: http://lemkesoft.de/

  • Using .png images as icons?

    Is there any reason why I can use a .png image as an icon when using a program like LiteIcon, but when I go to "get info" of an application and try to copy/paste the icon, the .png image reverts to a default preview icon?

    Not sure we're on the same page here:
    1. Double click the png file, it should open in Preview
    2. Go to the Edit menu and select Copy
    3. Select a folder you want to have that image as its icon
    4. Do GetInfo on the folder, click the wee little icon at the top of the GetInfo window of the folder
    5. Do a Paste--the folder now will have the image that is open in Preview as its icon
    The pngs will NOT preserve transparency doing this--they'll just be a regular picture. Same deal with layered tiffs. In order to keep the transparency you need to either convert to the icns format then use icns2icon, or just use Pic2Icon on the png file. You don't use it change pngs to anything: just drop the png in the image well of Pic2Icon and it will add a custom thumb to the png file. Anyway, it does for me. Then you do GetInfo on the png, copy the wee little icon at the top, and paste in the GetInfo box of some other file or folder.
    Francine
    Francine
    Schwieder

  • Opening .png image through Bridge

    Could not open .png image through Bridge CS-6Beta.  Message said there was a missing application.  Can open same file directly in Photoshop CS-6Beta.  Windows7.

    I have no problem opening Bridge CS-6 (x64) by itself.  In Bridge, I can see the .png image but when I double click on it, I get an error message that ImageReady.exe is missing.  However, If I right click on the image and select "Open with Adobe Photoshop CS-6", the file opens normally.

  • Resizing .png images

    Hi,
    I have many .png images in several files and I am unable to resize them using the resizing tool (click & drag to resize).  Does anyone have another way to resize these images, besides opening them and saving them in the correct size?  Some images are used in several places and while one image size works in one file, it does not work in another.  I'm afraid I'm going to have to maintain duplicate images.
    I thought about saving the .png file into a different format, but that degrades the image some.....
    thanks for your ideas.....!
    RH 8.0.2

    I generally work with jpg and gif formats so I was rather surprised to see the Resizer does not list PNGs as a supported format. Have you tried GIF format? It will depend on what the images are but screenshots seem to resize OK within limits.
    Please follow this link and submit PNG resizing as a feature request.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • .png images in Cap 7 course go to solid red when published to LMS

    I have a simple Cap 7 course, all text, simple objects, and images; no animations, video, etc.  When I preview the course including in web browser and in HTML5 in web browser, all is well.  When I publish to my LMS all of the .png images are solid red.  I've checked all the relevant preference settings, including the objects defaults and the publish settings.  Should I be going to my LMS provider, or does this seem like a Cap 7 issue?

    I've had this happen on several occasions, but usually only 1-2 images at a time will turn red.  Only solution I've found is to go into your library, right-click the image, and select "update" or "update resource path" and select the same file.
    No idea why it happens.
    Good luck.

  • Whenever I have a png image as the last saved filed in my camera roll, it overlaps a picture I've deleted a long time ago. What?

    Just as the title said. iPod touch 4th generation, 4.3.5, not jailbroken. Different png images have different, but specific to each image, pictures that they overlap. Could this be automatic inaccessable-file storing on that confusing extra space? I don't know. I just want them off there.

    ...In the meantime...
    If you can get one of these faulty pictures to display on your iPod Touch (that you don't mind sharing with us) take a screenshot of it. You may already know this, but to take a screenshot on your iPod Touch, press the Sleep/Wake button and the Home button at the same time. The screen should briefly flash white and a picture should be saved in the camera roll.
    To post that picture on this thread, once you have saved the picture onto your computer, simply click the camera icon at the menu bar that displays when you write a post and follow the prompt:
    and then perhaps someone may be able to throw some light on what's happening.
    Do you delete the pictures directly from the Camera Roll, or by using the file manager on your computer? I wonder if it's possible that a delete-on-iPod may not be doing the job properly.
    Usually, when I Sync my iPod, I delete the Camera Roll from the iPod using the computer.
    I have not seen any other posts on this issue, so I don't know if that's the problem, but at this time, I think you simply have to narrow down when and under what circumstances, this happens. Only then could anyone work out what the cause is.
    If I may offer you some advice of a personal nature for your future benefit:
    You're correct, I don't know the exact circumstances surrounding this or the other factors in your life, but neither I, nor anyone else here needs to. But the fact that you're able to afford - and have access to - an iPod makes your life better than many in the world.
    If you're seeking help or advice, in any sphere of your life, it's far more efficient to concentrate on the facts relevant to the issue than to attempt include into your narrative, any perceived slighting you may harbour or grievance you may have with other people. If you allow one person's effect on you to affect your judgemnent of other people, you will only make your own life more intolerable.

Maybe you are looking for

  • Transformations in BI

    Hi All, i have a transformation b/w two DSO's. i have changed the info objects of the DSO but now  iam not able to activate the transformations. the system is not allowing me into change mode of transformation.its giving a msg stating that say ' X ob

  • Gradient Issue iMac

    Since a couple of weeks I am experiencing problems with my iMac Display. From the bottom to the middle of my screen I am seeing a gradient. I have been searching this community and via Google but can't really find what the problem is and if it is eas

  • Cairngorm 3 Module Injection

    Hi, I'm using Cairngorm Module library in my application. While testing the debug version of my app, all modules are loaded correctly and all dependencies are successfully injected into these modules. However, after I export the release build and lau

  • XML processing (Input & Output)

    Hi All, I am developing a server application that needs to wrap and unwrap an XML document in an XML wrapper (envelope) The wrapper looks like this (very simplified): <Wrapper>     <Element_x>xxx</Element_x>     <Element_y>xxx</Element_y>     <Elemen

  • JDev 10.1.3 / addes File Types don't work

    I added 2 new File Types in JDeveloper 10.1.3 (Preview) by selecting Tools - Preferences - File Types - Add: Extension File Type .hta HTML Source .ico GIF Image When opening a .hta I see the code without syntax highlighting. The .ico image is display