Save Image to system's ClipBoard .PLEASE HELP!!!!!

Hi,
I'm trying to save an Image from my GUI to the System's ClipBoard but I just can't get it to work.
I've overriden a JPanel's paint() method where I draw my own stuff.
I've used the following code which I found in the forum :
class ImageSelection implements Transferable,ClipboardOwner
private DataFlavor ImageFlavor;
private DataFlavor[] flavors = new DataFlavor[1];
private Image image;
public ImageSelection(Image an_image)
this.image = an_image;
try
ImageFlavor = new DataFlavor(Class.forName("java.awt.Image"),"AWT Image");
flavors[0] = ImageFlavor;
catch(ClassNotFoundException e)
e.printStackTrace();
public synchronized DataFlavor[] getTransferDataFlavors()
return flavors;
public boolean isDataFlavorSupported(DataFlavor flavor)
return flavor.equals(ImageFlavor);
public synchronized Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
if(flavor.equals(ImageFlavor))
return image;
else throw new UnsupportedFlavorException(flavor);
public void lostOwnership(Clipboard c, Transferable t)
When I want to save my Graphics into the clipboard I do the following:
ImageSelection temp = new ImageSelection(my_graphics.offImage);
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(temp,temp);
You may also need the following :
class My_Stuff extends JPanel
Graphics2D offGraphics2D = null;
Image offImage = null;
void init_graphics()
offImage = this.createImage(100,100);
offGraphics2D = offImage.getGraphics();
void paint(Graphics g)
Graphics2D g2 = (Graphics2D)g;
offGraphics2D.fillRect(0,0,200,200);
// bla bla bla .........................
g2.drawImage(offImage,0,0,null);
and finally : My_Stuff my_graphics = new My_Stuff();
As you observe variable my_graphics is of type My_Stuff , so I pass its field : offImage , as the argument for the ImageSelection 's Constructor which in turn expects an Image...
I am "saving" the Image to the system's ClipBoard and I try to Paste it in MS Word but the 'Paste' feature is inactive ( I guess Clipboard is empty... )
Can you please help me out in this one???
I use JDK 1.4.0 and Win2000.
Thank you my friends!

If you use JDK1.4, simply use DataFlavor.imageFlavor insteads
of your own. Java will do the rest. Word cannot paste because
it does not recognise the flavor you put on the clipboard!
You can use this code that does it fine for me (JDK1.4.1)!
public class ImageSelection implements Transferable
private java.awt.Image image;
public ImageSelection(Image i) {
image = i;
public Object getTransferData(DataFlavor flavor)
throws UnsupportedFlavorException
if (flavor.equals(DataFlavor.imageFlavor)) {
return image;
throw new UnsupportedFlavorException(flavor);
public boolean isDataFlavorSupported(DataFlavor flavor) {
if (flavor.equals(DataFlavor.imageFlavor)) {
return true;
return false;
public DataFlavor[] getTransferDataFlavors() {
return new DataFlavor[] {DataFlavor.imageFlavor};
}

Similar Messages

  • Created PDF form in Acrobat XI Pro, but HELP fields disappear when I save FCDT file to PDF. Please help. Thanks!

    Created PDF form in Acrobat XI Pro, but HELP fields disappear when I save FCDT file to PDF. Please help. Thanks!

    I am not aware of a field type "Help" within a PDF form. I do not see it as a form field that can be added in the form edit mode.
    Forms Central forms do not support all the features of Acrobat forms.
    Are you talking about the "Tool Tips" or a hidden field that only shows when one enters a field and is hidden upon exiting the field.

  • I cant able to save Re-Corrected metadata in itunes,Please help me

    I cant able to save Re-Corrected metadata in itunes,Please help me

    The link you gave me leads to a feed which is properly constructed as far as it goes but as I say is empty. Looking at the coding the text 'mp3' dopes not appear anywhere in it. You've constructed your feed in Wordpress/Powerpress and I'm afraid I can't advise on those. What have you done since originally posting?
    You can see the text of your feed in the Feedvalidator report (you can ignore the two 'errors').
    As you will see there is no 'item' tag nor any reference to mp3. If you are seeing a media file I can't explain that unless you aren't actually looking at the feed. The associated web page, http://www.pluggingintolife.com/podcast-page/ , has an embedded player referencing an MP3 file with a suitable URL (e.g. http not https) but it's not made it into the feed.

  • System config problems please help!!!!

    I bought a windowns recovery disk for my toshiba satellite L450D and everything was okay until I reached theconfiguring system partI left it go for about 2 hours but nothing happened so I restarted and I still have the same problem can someone please help me with this because I don't wanna buy a new computer

    If the recovery disks are not working then it is either an issue with the disks or a hardware issue with the computer.  I would start with the disks.  Contact Toshiba (where you bought the disks) and tell them the disks are not working.  If possible, try and see if they will issue you the recovery media on flash drive as that seems to work better than the cds.  Another thing you can try is (if possible) swapping parts of your computer into a know working computer to ensure they are all in working order (hdd, ram).  It is also not a bad idea to wipe a hdd before attempting to do an install.  this can be accomplished using third party software which can usually be accessed via bootable cd. 
    L305-S5955, T9300 Intel Core 2 Duo, 4GB RAM, 60GB SSD, Win 7 Ultimate 64-bit

  • Refresh image in a ScrollingImagePanel. Please help me!

    Hello friends. I am new at the "Java World". At first, sorry for my bad English. Lets go:
    In my aplication I have to show a tiff image in a ScrollingImagePanel.I aplly some efects on the image, for example rotate the image, etc.
    It is working fine, but I have problem to refresh the image in the same ScrollingImagePanel.The code compiles but I have exceptions when I run the method:
    public void atualiza(){
    if (ziboro == false){ //no images displayed yet.
         ziboro = true;     
         JInternalFrame test = new JInternalFrame("Test",true,true,true,true);
    test.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    test.addInternalFrameListener(this);
    test.setLocation(10,10);
    test.setSize(new Dimension(200,200));
    ScrollingImagePanel FlipVPanel = new ScrollingImagePanel(imagemBufa, 800, 800);
    test.getContentPane().add(FlipVPanel);
    displayPanel.add(test);
    test.setVisible(true);
    test.moveToFront();
    return; }
    //This part is my problem.
    teste.getContentPane().remove(FlipVPanel);//it causes exception
    ScrollingImagePanel FlipVPanel = new ScrollingImagePanel(imagemBufa, 800, 800);
    teste.getContentPane().add(FlipVPanel);
    teste.setVisible(true);
    teste.moveToFront();
    I think tyhe problem is when I try to remove the ScrollingImagePanel, because when I add a ScrollingImagePanel and I remove imediatly after , the ScrollingImagePanel disapear.
    Please help me, you are my hope.
    Thanks a lot, lot, lot, ....!

    I can't either with my Treo700wx, and from what I see with my plan, it's definitely because of Alltel.  They have a seperately priced option for picture messaging that I had with my old (non-smart) phone that isn't even an option with the smart-choice packages.
    So...I'm also listening.  Having the only way to send pictures with the phone being through email is pretty dumb.  We pay enough for the plans, you'd think they could include it...or at least offer it as an option.
    Post relates to: Treo 700wx (Alltel)

  • Image Gallery issues with Lightbox2 - please help!

    Hello there,
    I am using Lightbox2 image gallery.  The loading.gif and close.gif aren't showing up and I think there's an issue with the path in the lightbox.js file.  The loading and close gifs are located in the Images gallery so I changed the path in the lightbox.js file accordingly - I've gone through this many many times but they are still not showing up.
    Can anyone please help me?
    My website is: www.labellepetraie.com
    Here's where I downloaded the script from: http://www.huddletogether.com/projects/lightbox2/#how
    I have tried all the path combinations mentioned in their forum but to no avail.  What am I doing wrong?
    Thank you for any help you can offer to me.
    Regards!

    Interesting.  I've just looked at your scripts, and it would appear that you have blended two versions of lightbox2 on your page,.  Is that possible?  The lightbox.js file has no function called initLightbox() in it, whereas older versions do.  So, try changing this:
    window.onload = function(){ // use this instead of <body onload …>
         MM_preloadImages('../3websites/home4.jpg','../3web sites/amenities1.jpg','../3websites/inquiry1.jpg','../3websites/rates1.jpg','../ 3websites/photos1.jpg');
            initLightbox();
    to this:
    window.onload = function(){ // use this instead of <body onload …>
         MM_preloadImages('../3websites/home4.jpg','../3web sites/amenities1.jpg','../3websites/inquiry1.jpg','../3websites/rates1.jpg','../ 3websites/photos1.jpg');
            //initLightbox();
    to see if that works.  I think so.  Turns out the initLightbox() function call that we activated by fixing the code before is no longer needed by the lightbox2 script as of v2.04!  I see that it still tells you to put that function call in the body tag, but i think that is wrong (which is very weird to say, can I really be right???).  If you look at the example page online you'll see that he uses this body tag:
    <body>
    and there are no onload's anywhere. 
    Let me know.
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Adjust image colors... Please Help!!!

    I shot an interview with two cameras and apparently I forgot to do the white balance on one of them. As a result, I now have one b-Roll with a cold image texture and the other one with a warmer/yellowish tone.
    I'm going to use the video with the cold texture, so what can I do to dimmish the yellowish feeling on the other video. I tried ALL the Video Filters options but there made no difference.
    Is there any bar in Final Cut Pro where I could manually manipulate the brightness, temperature, etc, so I can see in real time how is the image is changing? That way I'll be able to match the yellowish image to my cold temperature B-Roll.
    PLEASE HELP ME!! Thank you!!

    1) Use the Color Corrector 3-way.
    2) Use the Frame Viewer.
    3) Read the FCP documentation and the Apple Pro Training Series book to learn how to use these effectively.
    4) In the future, post Final Cut Pro questions to the Final Cut Pro forum (this is the Final Cut Server forum).

  • Canon Pro-100 13x19" Prints - Images suddently printing misaligned/slanted - Please help!

    Hi, I purchased a Canon Pro-100 printer about two weeks ago and I have been printing lots of 13x19 prints on Canon brand semi-gloss paper. I have successfully printed about 60 prints, but suddenly I have an issue. The images are printing misaligned/slanted on the paper, so that there is a sliver of blank paper on the bottom right and bottom left. Here is a picture of what is happening to the prints:
    http://i923.photobucket.com/albums/ad79/milligangames/101_22941_zpsf995dcd2.jpg
    I have tried cleaning the bottom plate, cleaning the roller, aligning the print head both manually and automatically, but nothing is helping. When I print on 8.5x11 or 4x6 paper I do not seem to encounter this issue. Does this mean the paper is feeding unevenly for some reason? Please help!

    Hi pmilligan,
    It is recommended that you contact live technical support . There is NO charge for this call. Real time feedback of a live technical support call would be very beneficial in this case.
    Please dial 1-866-261-9362, Monday - Friday 10:00 a.m. - 10:00 p.m. ET (excluding holidays). A Canon technical support representative will be able to resolve this issue faster.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Spry Image Slideshow not being nice, please help

    Ok, first off, web design novice so please keep it simple for me. I'm trying to set up a portfolio page for a photography website using the Spry Image Slideshow Widget with Film Strip in Dreamweaver CS5.5. The problem occurs when I try to set the width and height as a percentage. Width, no problem, but when I try to set up the height as a percentage, the slideshow disappears and I'm left with just the thumbnail film strip. To clarify here's what I'm doing - in Adobe Widget Browser in the "Frame & View Port" Tab, Change Frame Width to 70% and View Port Height to 70%. In the Live View pane of the Adobe Widget Browser, the slideshow frame changes size with the window as expected, but go to Dreamweaver, open up a blank HTML page,  Insert: widget.. and bam, no slideshow, just a row of thumbnails. Thrashing around in the dark here, please help...

    Wow, it's like a ghost town on here, think I find a different slideshow.......

  • Images Not Showing- Menu Bar- Please Help

    Hi, I have built a menu bar in fireworks cs4 and I have exported the file in html. I have a template all ready to go in dreamweaver and I am trying to add this menu bar to it. The html doc opens in dreamweaver fine when I right click on the file and open with dreamweaver. The issue is when I insert it into dreamweaver, the images are missing. In dreamweaver I go to insert and then Image Objects and then FIreworks HTML. It inserts the file but the images of the menu are not there. Can anyone please help? Thanks so much in advance!!
    Meegan
    ps.
    here is the html code for the doc:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Menu Bar.gif</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!--Fireworks CS3 Dreamweaver CS3 target.  Created Wed Mar 17 08:58:22 GMT-0700 (Pacific Daylight Time) 2010-->
    <script language="JavaScript1.2" type="text/javascript" src="mm_css_menu.js"></script>
    <style type="text/css" media="screen">
    @import url("./Menu Bar.css");
    </style>
    </head>
    <body bgcolor="#000000">
    <div id="FWTableContainer1314331000">
    <table border="0" cellpadding="0" cellspacing="0" width="710">
    <!-- fwtable fwsrc="Menu Bar.png" fwpage="Page 1" fwbase="Menu Bar.gif" fwstyle="Dreamweaver" fwdocid = "1314331000" fwnested="0" -->
      <tr>
       <td><img src="../spacer.gif" width="128" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="10" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="128" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="37" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="128" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="17" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="128" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="6" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="128" height="1" border="0" alt="" /></td>
       <td><img src="../spacer.gif" width="1" height="1" border="0" alt="" /></td>
      </tr>
      <tr>
       <td><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0317085449_0', 'MMMenu0317085449_0',0,25,'MenuBar_r1_c1');"><img name="MenuBar_r1_c1" src="../Menu%20Bar_r1_c1.gif" width="128" height="25" border="0" id="MenuBar_r1_c1" alt="" /></a></td>
       <td valign="top"><p style="margin:0px"></p></td>
       <td><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0317085449_1', 'MMMenu0317085449_1',0,25,'MenuBar_r1_c3');"><img name="MenuBar_r1_c3" src="../Menu%20Bar_r1_c3.gif" width="128" height="25" border="0" id="MenuBar_r1_c3" alt="" /></a></td>
       <td valign="top"><p style="margin:0px"></p></td>
       <td><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0317085449_2', 'MMMenu0317085449_2',0,25,'MenuBar_r1_c5');"><img name="MenuBar_r1_c5" src="../Menu%20Bar_r1_c5.gif" width="128" height="25" border="0" id="MenuBar_r1_c5" alt="" /></a></td>
       <td valign="top"><p style="margin:0px"></p></td>
       <td><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0317085448_3', 'MMMenu0317085448_3',0,25,'MenuBar_r1_c7');"><img name="MenuBar_r1_c7" src="../Menu%20Bar_r1_c7.gif" width="128" height="25" border="0" id="MenuBar_r1_c7" alt="" /></a></td>
       <td valign="top"><p style="margin:0px"></p></td>
       <td><a href="javascript:;" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuShowMenu('MMMenuContainer0317085448_4', 'MMMenu0317085448_4',0,25,'MenuBar_r1_c9');"><img name="MenuBar_r1_c9" src="../Menu%20Bar_r1_c9.gif" width="128" height="25" border="0" id="MenuBar_r1_c9" alt="" /></a></td>
       <td><img src="../spacer.gif" width="1" height="25" border="0" alt="" /></td>
      </tr>
    </table>
    <div id="MMMenuContainer0317085449_0">
    <div id="MMMenu0317085449_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
      <a href="shop art.html" id="MMMenu0317085449_0_Item_0" class="MMMIFVStyleMMMenu0317085449_0" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_0');">
       SHOP ART
      </a>
      <a href="originals by paris.html" id="MMMenu0317085449_0_Item_1" class="MMMIVStyleMMMenu0317085449_0" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_0');">
       ORIGINALS BY PARIS
      </a>
      <a href="prints by paris.html" id="MMMenu0317085449_0_Item_2" class="MMMIVStyleMMMenu0317085449_0" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_0');">
       PRINTS BY PARIS
      </a>
      <a href="order custom painting.html" id="MMMenu0317085449_0_Item_3" class="MMMIVStyleMMMenu0317085449_0" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_0');">
       ORDER CUSTOM PAINTING
      </a>
      <a href="greeting cards.html" id="MMMenu0317085449_0_Item_4" class="MMMIVStyleMMMenu0317085449_0" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_0');">
       GREETING CARDS
      </a>
    </div>
    </div>
    <div id="MMMenuContainer0317085449_1">
    <div id="MMMenu0317085449_1" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
      <a href="contact paris.php" id="MMMenu0317085449_1_Item_0" class="MMMIFVStyleMMMenu0317085449_1" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_1');">
       CONTACT PARIS
      </a>
    </div>
    </div>
    <div id="MMMenuContainer0317085449_2">
    <div id="MMMenu0317085449_2" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
      <a href="news & events.html" id="MMMenu0317085449_2_Item_0" class="MMMIFVStyleMMMenu0317085449_2" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_2');">
       NEWS &amp; EVENTS
      </a>
      <a href="newsletter.html" id="MMMenu0317085449_2_Item_1" class="MMMIVStyleMMMenu0317085449_2" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_2');">
       NEWSLETTER
      </a>
      <a href="blog.html" id="MMMenu0317085449_2_Item_2" class="MMMIVStyleMMMenu0317085449_2" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_2');">
       BLOG
      </a>
      <a href="upcoming shows.html" id="MMMenu0317085449_2_Item_3" class="MMMIVStyleMMMenu0317085449_2" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_2');">
       UPCOMING SHOWS
      </a>
      <a href="archived shows.html" id="MMMenu0317085449_2_Item_4" class="MMMIVStyleMMMenu0317085449_2" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_2');">
       ARCHIVED SHOWS
      </a>
      <a href="upcoming openings.html" id="MMMenu0317085449_2_Item_5" class="MMMIVStyleMMMenu0317085449_2" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_2');">
       UPCOMING OPENINGS
      </a>
      <a href="archived openings.html" id="MMMenu0317085449_2_Item_6" class="MMMIVStyleMMMenu0317085449_2" onmouseover="MM_menuOverMenuItem('MMMenu0317085449_2');">
       ARCHIVED OPENINGS
      </a>
    </div>
    </div>
    <div id="MMMenuContainer0317085448_3">
    <div id="MMMenu0317085448_3" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
      <a href="policies.html" id="MMMenu0317085448_3_Item_0" class="MMMIFVStyleMMMenu0317085448_3" onmouseover="MM_menuOverMenuItem('MMMenu0317085448_3');">
       POLICIES
      </a>
      <a href="return policy.html" id="MMMenu0317085448_3_Item_1" class="MMMIVStyleMMMenu0317085448_3" onmouseover="MM_menuOverMenuItem('MMMenu0317085448_3');">
       RETURN POLICY
      </a>
      <a href="shipping policy.html" id="MMMenu0317085448_3_Item_2" class="MMMIVStyleMMMenu0317085448_3" onmouseover="MM_menuOverMenuItem('MMMenu0317085448_3');">
       SHIPPING POLICY
      </a>
    </div>
    </div>
    <div id="MMMenuContainer0317085448_4">
    <div id="MMMenu0317085448_4" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();">
      <a href="about paris.html" target="q" id="MMMenu0317085448_4_Item_0" class="MMMIFVStyleMMMenu0317085448_4" onmouseover="MM_menuOverMenuItem('MMMenu0317085448_4');">
       ABOUT PARIS
      </a>
      <a href="biography.html" id="MMMenu0317085448_4_Item_1" class="MMMIVStyleMMMenu0317085448_4" onmouseover="MM_menuOverMenuItem('MMMenu0317085448_4');">
       BIOGRAPHY
      </a>
      <a href="galleries.html" id="MMMenu0317085448_4_Item_2" class="MMMIVStyleMMMenu0317085448_4" onmouseover="MM_menuOverMenuItem('MMMenu0317085448_4');">
       GALLERIES
      </a>
    </div>
    </div>
    </div>
    </body>
    </html>

    I figured it out.
    I just had to move the foler and exported it again and it works now.

  • File pulldown has vanished. Can't save my session....Please help...ASAP!!!

    I use Logic Pro 8.0.1.
    I pulled up a new template in Logic Pro and after making some adjustments I went to go save as template or just save it period and when I went to press File, all the drop down names are gone. Nothing happens. File highlights but nothing drops down. No new, save, open, nothing.
    Please help.
    Thanx
    Marc

    Press Command (the Apple Key) S. That's the universal Apple keystroke for save.

  • LaCie flash drive not recognized as a drive, but shows up in system profiler. Please help!!

    I recently got a LaCie RuggedKey 16 gb flash drive. The problem is that recently I plugged in the drive and I can't access the files, however, it shows up in system profiler. There are still files on the drive, and I really need them. Can you please help me recover them?

    If you're connecting the drive through a hub, connect it directly to a built-in port on the Mac.
    If you're connecting it directly, try a different port.
    Disconnect all other devices on the bus, or as many as possible.
    Test the drive with another Mac. Test another drive with this Mac.
    Boot into Recovery and launch Disk Utility. Is the drive recognized?
    Start up in Safe Mode and test.
    Reset the NVRAM.
    Reset the System Management Controller.
    If the drive doesn't work under any of the above conditions, and if another drive does work with the same Mac, then the drive has failed.

  • I want to purchased the photography plan,but i get the same result everytime i pay.SYSTEM UNAVAILABLE..please help.

    I wanted to buy a Photography plan but everytime i try to pay ,i get the same result SYSTEM UNAVAILABLE.I tried to go to customer support but it keeps bring me over again from the start.I am in Japan ,I tried to contact the number everyday but no one is answering.Please help,I cannot speak japanese so I need an english answer.

    SYSTEM UNAVAILABLE == under approval. I'm surprised you didn't know that.
    You need to contact Japanese support even they won't answer. Now this is your problem.

  • Deleting images already in iPod. Please Help.

    I uploaded some pictures into my iPod... but everytime I go on iTunes it keeps on adding more pictures. I figured how to disable that but I want to take off the pictures that I don't want. Please help if yeh may.

    Yes, it's nice to help people. It's also nice to know when your help is appreciated. But if you constantly ask for points, it really is obnoxious.
    It's like going to a restaurant, getting good service, then have the waitress remind you "don't forget to tip me". Personally, I would find that so annoying that my tip would decrease as a result, and my overall enjoyment of the meal and the restaurant would suffer.
    Anyway, as you say there is nothing I can do about it. Continue begging for points if it suits you. Just be aware that it has been discussed in the lounge several times and the moderators have indicated that they would prefer people don't.

  • Im trying to download itunes on a windows 8 laptop, everytime I click the download now button, nothing at all happens. Doesnt ask me to save or run or anything. Please help

    Im trying to download itunes on a windows 8 laptop, everytime I click the download now button, nothing at all happens. Doesnt ask me to save or run or anything. Please help

    Switch off your virus scanner and firewall and Download iTunes below:
                                Download iTunes Get the latest version of iTunes for Mac or Windows. Download now                         

Maybe you are looking for

  • Since 10.5.6 outgoing mail slow ??

    Since moving to 10.5.6 my outgoing mail is slower. Previously if I sent just a simple email with just a few lines of text it would go instantly. Now the same type of message seems to take anywhere up to 20 secs to go and during that time I get the sp

  • Document number of Planned cost booked on Project system

    Hi All, I have a requirement wherein i need to find out the document number of the cost booked in Project and WBSE. Like for eg in Report S_ALR_87013532, there is planned cost. also in the same report S_ALR_87013532, we have OVERALL VALUES and TOTAL

  • Changing a page name

    i want to change the name of one of my pages. i have tried double clicking the title on the lefthand sidebar and typing the name i want but it doesn't keep it. as soon as i hit enter or click out of it, it goes right back to what it was. i also tried

  • How can I speed up FCPX

    To all you frustrated FCPX users, I am a wedding videographer, I made the transiton from final cut studio to FCPX and find it to be an excelent programme.  That is until I started to produce a 90 minute complex wedding video with 500+ clips, 10 track

  • Unable to setup/mapping of XSQL Servlet

    We have installed Apache web server with Tomcat Servlet engine. We have downloaded XDK 9i for Java and we have done the setup of Classpath in tomcat.bat. When we try to run the XSQL file from the browser (IE5), it opens as a text file instead of runn