Check printing - failed to load image

hello
i have an issue with printing checks. a long standing one.
my problems started when i put an image on a check. i wanted to add a signature image. once i did that, the popup that came up when i print a check did not come up. only for one user. i tried to solve the problem but it never got sorted out. so i created another username and removed the old one and it was working fine.
next i had an issue with the check not printing on blank pages for overruns only for one customer. to test why this was happening, i went to print preferences and and tried changing the maximum lines from 25 to 20. it popped a message saying 'failed to load image'. i ignored it. after that, i have now started to get the same problem of not getting the confirmation message when a check is printed.
why is this happening? is my only solution to delete this user and recreate one? any suggestions?

Hi,
For the image related issue:
+Since it is a User specific issue,we would require the difference in permissions and security settings for that particular user and for a user for which it is working.
+What is the format of the picture (.JPG, >GIF etc.)
+If this happens only for one super user then try to create a new super user and test.
Regards,
Abhinav Banerjee
SAP Business One Forums Team
Edited by: Abhinav Banerjee on Nov 22, 2008 3:20 AM

Similar Messages

  • Failed to load image file-manager

    Hello everybody,
    I've recently install ArchLinux (0.6) on my machine. Then do a pacman -Sy and pacman -Su and fresh install xfree86, gnome and gnome-extra but when I run into gnome a window error appears:
    error
    Failed to load image file-manager
    Details: file not found
    I can't see mostly of the icons, like the foot of gnome in applications, the icon of file browser, the show desktop ..
    what can it be?
    well, thanks in advance.
    Ps: xscreensaver should be added as a dependency when pacman -S gnome
    Ps2: sorry my poor english

    Blaasvis wrote:i am aware, this was caused by the gtk2 update
    Yes, you're right.
    To solve (until a next release) I done:
    pacman -Rcd gtk2
    pacman -A /var/cache/pacman/pkg/gtk2-2.4.0-1.pkg.tar.gz
    And avoid to do pacman -Su ...
    Thanks and bye.

  • Fbcondecor fails to load image

    I have installed fbsplah and fbcondecor.
    It works well if I use the themes "arch-black" and "arch-banner".
    However, when I change my own picture, it fails to load either silent or verbose mode.
    I've wonder whether the size of my picture is too large, but I replaced a small one, either.
    Anyone knows?

    As you mentioned you want to use this image which is 1280x720. I assume you have the same resolution in tty. If not, you have to scale the image to the right one and use that resolution to the steps I describe below.
    We'll go on the easy way and edit the arch-black theme in order not to create a new one. Browse in /etc/splash/arch-black/images, and rename silent-1280x720.png to silent-1280x720.png.bak and verbose-1280x720.png to verbose-1280x720.png.bak.
    As root
    cd /etc/splash/arch-black/images
    mv silent-1280x720.png silent-1280x720.png.bak
    mv verbose-1280x720.png verbose-1280x720.png.bak
    Then we'll copy your image (which is cool btw! ) to /etc/splash/arch-black/images. As root
    cp yourimage.png silent-1280x720.png
    cp yourimage.png verbose-1280x720.png
    Do a test to see if all went right.
    Last edited by maevius (2010-10-10 20:14:17)

  • Aperture fails to load images from CF card, now not able to open

    I have a new Canon 5D Mark III camera and was sold a  Lexar SD Professional 32 GB card and a Lexar Professional UDMA 7 Compact Flash 32 GB card.  Downloading the images from the camera is a problem.  I am using  a Mac Book Pro 15" with operating system OSX 10.6.8.   Aperture is on a Lacie external hard drive and now fails to open.  Yesterday, a message saying 'unreadable files' would show and a few images would be saved to Aperture.  Also, later, an 'unrecognizable format' message would appear. Before it stopped working, it would download one or two selected images but not a large number of images.
    Any solutions?  Any comments would be appreciated.  Thank you!

    Thanks Ernie!  The images would not load from the camera with the USB camera supplied cable.  Yes, the MBP has slot for the SD card and it downloads the images. 
    The Aperture library is on the LaCie external HD.  Don't know if the drive is formatted as OS X extended.
    After posting the entry, I went to the local Staples store and purchased a Verbatium card reader and lo and behold, the world is fine.  The Aperture has returned and I was able to download all the CF card images.  The card reader would not read the SD card despite having it listed as one of the cards it's able to read.  Don't know what's happening here but at least I can use the MBP slot.
    To me, it's strange!  It was all looking quite grim!  Thank you for your assistance!

  • ImageIcon fails to load image from known source

    Hello,
    I have tried multiple ways to use ImageIcon to place an image within a JFrame.
    I have tried to place directly on the JFrame using drawImage and within a JLabel.
    I have tried multiple sources such as fully qualified regular files to the root and filenames relative to the current project. I have also tried using URLs.
    I am executing this project from Eclipse and have used both Windows and the Mac.
    My debugging code tells me the load of the image is not successful.
    Thank you for your help with this problem.
    ====================================================================
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
       class Main extends JFrame implements ItemListener {
         Image image;
         Image imagecopy;
         String imagefile;
         URL imageurl;
         String strslnts = "Slavery notes";
         String strnsnts = "North & South notes";
         String strwpnts = "Weapons notes";
         String strbtnts = "Battle notes";
         int frwidth, frheight, il, it;
         List stuslist;
         Main() {
              super("The Civil War as Presented by Garrett Neuman");
              imagefile = "file:///Users/teacher/Desktop/garrett/CivilWar/flags.gif";       
              image = getToolkit().getImage(imagefile);
              setIconImage(image);
              frwidth = 1024;
              frheight = 735;   //leave room for task bar
               WindowEventHandler weh = new WindowEventHandler();
               addWindowListener(weh);
               Insets insets = getInsets();
              il = insets.left; it = insets.top;
               setSize(frwidth, frheight);
              setResizable(false);
              try {imageurl = (new URL("http://www.ariped.com/01-pat_metheny_01.jpg"));}
              catch (MalformedURLException e) {stuslist.add("malformed url");};
              ImageIcon icon = new ImageIcon(imageurl);
              int fstatus = icon.getImageLoadStatus();
    //         stuslist.add(String.valueOf(fstatus));
              JLabel iconLabel = new JLabel(icon);
              setContentPane(iconLabel);
              setVisible(true);

    Thanks for the advice on SSCCE. This cracked the case for me and will be useful in the future.
    One observation I gained from testing is that even regular files seem to need to go through the URL process for the image load to be successful.
    This may or may not be useful but the following code caused the image load to fail. I tried commenting out the code line by line from the bottom up but the mere presence of the definition caused failure of the image load.
            public void paint(Graphics g) {
                  int iwidth = image.getWidth(null);
                  int frmidd = (il + frwidth - iwidth) / 2;     
                  g.drawImage(image, frmidd , (it + 30), null);
                  g.drawRect(75, 175, 210, 230);
             }

  • IPhoto in 10.6.8 fails to load images

    I have iPhoto on two different hard disk boot disks. They both point to the exact same library on a different disk.
    One disk boots 10.6.8, the other boots in 10.7.4.
    I need both boot versions to retain the ability to use older legacy programs that will no longer work with 10.7.4.
    I keep the iPhoto up to date on both drives, but now the 10.6.8 version will NOT let me see that library, telling me that it was created by a newer version, but no newer version seems to be available on 10.6.8.
    It wants me to create a brand new Library out of everything it contains (mega). You know, for simplicity's sake. &^%$#@!!
    What to do?
    Can I get the two iPhotos to work hand in hand? Or is that a Gotcha that was never explained during an upgrade?

    What version of iPhoto do you have on each version? The OS version does not define the iPhoto version.
    I keep the iPhoto up to date on both drives, but now the 10.6.8 version will NOT let me see that library, telling me that it was created by a newer version, but no newer version seems to be available on 10.6.8.
    Have you ever opened this library with a newer version of iPhoto? If so you were told at the time that it had to be converted adn it would no longer be accessable by th eolder version - you had to choose continue or quit
    Can I get the two iPhotos to work hand in hand? Or is that a Gotcha that was never explained during an upgrade?
    Not if they are different versions - it all depends on the answer to question one
    LN

  • How to check width of loaded image

    Hi my script loads an image like this:
            image = new Sprite();
            imageLoader = new Loader;
            imageLoader.load(new URLRequest(imageList.image[1].imgURL));
            image.addChildAt(imageLoader, 0);
    how can i check the width of loaded image? trace(image.width) gives 0...

    You need to wait until the image is loaded before you can try to ffind its width.  To do that you need to use the contentLoaderInfo property of the Loader class
    imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, manageImage);
    The manageImage event handler function is where you can check things since it is triggered after the object is loaded.

  • FireFox images not loading in local folders (firebug error-Failed to load given URL)

    I am having difficulty when developing websites in local folders (Windows7 computer). The webpages I make are showing images in IE9 & Chrome but not FireFox (nor Safari nor Opera).
    In FireFox I get Firebug "Failed to load given URL" prompt.
    I am using html5 & external linked css stylesheet & the html/html5 & css code validates.
    I have tried using rel path ie images/image.gif & absolute path references ie C:/RPD_Programming/RPD WEB/amwcsnew/index.html
    and have tried using % to eliminate whitespace in references but I cannot get FireFox to display images!!
    This has been a problem for me for around 2 weeks now & is very frustrating. Some website code/templates I have downloaded from the internet display the websites properly (ie load images fine) when I open them locally in FireFox. Why does my code not allow the images to load in FireFox (paths/permissions/other issue??). How can I fix this?
    Here is example css & html5 not displaying images from local directory in FireFox (fine in IE9 & Chrome):
    style.css
    /* CSS Document */
    /*Basic Reset*/
    margin:0;
    padding:0;
    html{
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    body{
    width:1200px;
    margin:0 auto;
    header{
    height:450px;
    background:url("C:/RPD_Programming/RPD WEB/amwcsnew/images/header.gif");
    background-repeat:no-repeat;
    #mid{height:750px;
    background:url('C:/RPD_Programming/RPD_WEB/amwcsnew/images/mid.gif')no-repeat;
    footer{height:286px;
    background:url('C:/RPD_Programming/RPD WEB/amwcsnew/images/footer.gif')no-repeat;
    index.html
    <!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
    <!--html5 template from www.impressivewebs.com_modified by RPD-->
    <!-- Paul Irish's technique for targeting IE, modified to only target IE6, applied to the html element instead of body -->
    <!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
    <!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
    <head>
    <!-- simplified character encoding -->
    <meta charset="utf-8">
    <title>amwcs-new</title>
    <meta name="description" content="amwcs">
    <meta name="author" content="rpd">
    <!-- Delete these two icon references once you've placed them in the root directory with these file names -->
    <!-- favicon 16x16 -->
    <link rel="shortcut icon" href="/favicon.ico">
    <!-- apple touch icon 57x57 -->
    <link rel="apple-touch-icon" href="/apple-touch-icon.png">
    <!-- Main style sheet. Change version number in query string to force styles refresh -->
    <!-- Link element no longer needs type attribute -->
    <!-- <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />-->
    <link rel="stylesheet" href="css/style.css?v=2">
    <!-- Modernizr for feature detection of CSS3 and HTML5; must be placed in the "head" -->
    <!-- Script tag no longer needs type attribute -->
    <script src="js/modernizr-1.6.min.js"></script>
    <!-- Remove the script reference below if you're using Modernizr -->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <!-- If possible, use the body as the container -->
    <!-- The "home" class is an example of a dynamic class created on the server for page-specific targeting
    <body class="home">-->
    <body>
    <!-- ******************************************************************** -->
    <!-- The content below is for demonstration of some common HTML5 elements -->
    <!-- More than likely you'll rip out everything except header/section/footer and start fresh -->
    <!-- First header has an ID so you can give it individual styles, and target stuff inside it
    <header id="hd1"> No way Hosay-not by default! Default is <header> tag (RPD edit) -->
    <header>
    <!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
    <hgroup>
    <h1>amwcs</h1>
    <h2>tagline</h2>
    </hgroup>
    <!-- Main nav, styled by targeting "#hd1 nav"; you can have more than one nav element per page -->
    <nav>
    <ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Services</a></li>
    <li><a href="#">Contact</a></li>
    </ul>
    </nav>
    </header><!--End header & or #hd1 header div id if used-->
    <!-- This is the main "div" that wraps the content generically; don't use "section" for this -->
    <div id="mid">
    <!-- The first of two "section" elements for demo purposes; optional class added for styling (hs1 = "home section 1") -->
    <section class="hs1">
    <!-- Each section should begin with a new h1 (not h2), and optionally a header -->
    <!-- You can have more than one header/footer pair on a page
    <header>
    <h1>This is a Page Sub Title</h1>
    </header> -->
    <p>Some content...</p>
    <!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
    <h2>Demonstrating EM and STRONG</h2>
    <!-- "strong" is used for SEO and contextual hierarchy -->
    <p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
    <!-- "b" is used for stylistic offset of text that's NOT important contextually -->
    <p><b>This text has visual importance but has no contextual or SEO importance</b></p>
    <!-- "em" is used for colloquial-style emphasis -->
    <p>This is a <em>very</em> colloquial expression.</p>
    <!-- There can be multiple footers on each page -->
    <!-- Secondary headers and footers don't necesarily need ids; they can be targeted via context (i.e. ".hs1 footer")
    <footer>
    <!-- incite a riot: http://24ways.org/2009/incite-a-riot
    <p>Author: <cite>Louis Lazaris</cite></p>
    </footer> -->
    </section><!-- .hs1 -->
    <!-- This is another section; doesn't have header/footer because it's not required -->
    <section class="hs2">
    <h1>This is another section</h1>
    <p>This is some dummy content</p>
    </section><!-- .hs2 -->
    </div><!-- #mid -->
    <!-- The "aside" element could be a sidebar (outside an article or section) -->
    <!-- Or it could reference other tangentially-related content within an article or section
    <aside id="sidebar">
    <p>Sidebar content</p>
    </aside>-->
    <!-- The main footer has an ID for targeting, similar to the main header -->
    <footer >
    <p>copyright &copy; year</p>
    </footer>
    <!-- Remote jQuery with local fallback; taken from HTML5 Boilerplate http://html5boilerplate.com -->
    <!-- jQuery version might not be the latest; check jquery.com -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    <script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
    <!-- Below is your script file, which has a basic JavaScript design pattern that you can optionally use -->
    <!-- Keep this and plugin scripts at the bottom for faster page load; combining and minifying scripts is recommended -->
    <script src="js/general.js"></script>
    <!-- asynchronous analytics code by Mathias Bynens; change UA-XXXXX-X to your own code; http://mathiasbynens.be/notes/async-analytics-snippet -->
    <!-- this can also be placed in the <head> if you want page views to be tracked quicker -->
    <script>
    var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
    (function(d, t) {
    var g = d.createElement(t),
    s = d.getElementsByTagName(t)[0];
    g.async = true;
    g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    s.parentNode.insertBefore(g, s);
    })(document, 'script');
    </script>
    </body>
    </html>
    I am most grateful for help & look forward to replies & fixing this-thanks
    NB
    Is there a FireFox guide/manual in pdf format available anywhere? I have not found one yet & a FireFox reference might be useful!

    You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
    Where is the main HTML located ?
    Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
    See:
    *http://kb.mozillazine.org/Links_to_local_pages_do_not_work

  • Live Bookmark Feed failed to load. I cannot view any footage on BBC News site. Also I can no longer view images I have uploaded to a website. This has all materialised overnight. Please help.

    I have been uploading pictures of booksd to ABE.com for ages. I am able to view these images on the site. Today, without warning, I am unable to do this. Coincidentally, I note that I can no longer view film footage on the BBC news pages. The Latest Headlines column is also showing "Live Bookmark Feed failed to load". Please help.

    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images permissions.default.images
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    There are also extensions (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images.
    Try to remove the current Latest Headlines feed and create a new feed.<br />
    You can visit http://fxfeeds.mozilla.com/en-US/firefox/headlines.xml

  • Failed to load backgroud images after upgrade to 4.1.1 in Mozilla Firefox

    Hi,
    I have recently upgraded our test APEX environment from 3.2.1 to 4.1.1.00.23. Everything went smoothly - I have only one small but annoying problem. In both administration and administration services some background graphics are not displayed. This issue occurs only under Mozilla Firefox (in MS IE it OK). The application frontend is OK in both browsers.
    Under Firefox, I inspected the sourcecode in Firebug and the relative links to images. e.g.
    background: url("../apex/builder/bg-region-darkblue-r.gif") no-repeat scroll
    show message "Failed to load the given URL".
    I suppose that the issue might be somehow related to the fact that our application is accessed via apache proxy. Because when I open the administration and/or administration services page in FF directly on the server, it displays correctly (incl. images).
    But the network (Apache proxy) configuration is exactly the same as in the previous version of APEX where we had no problem. Something must have changed in the sourcecode of the new version...
    Does anybody know how to tackle such an issue? I'd like to have it solved before upgrading the production environment.
    Thank you.
    Zdenek

    I forgot to mention that we use EPG instead of Apache HTTPD.
    And, of course, I updated images following instructions in http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21673/otn_install.htm#BHAJIGDA
    >
    As you have mentioned earlier
    Because when I open the administration and/or administration services page in FF directly on the server, it displays correctly (incl. images).Which means the images are uploaded correctly in EPG.
    Maybe there is a virtual directory, or some other setup, on you Apache proxy that is still pointing to a folder has does not have the latest images.
    As you have rightly concluded earlier this is most probably something to do with your proxy setup. Not Apex.
    So, check you httpd file.
    Cheers,

  • Error -11003:Menu-Fail loading Image file

    HI:
    addMenus XML File:
    <Application>
      <Menus>
        <action type="add">
          <Menu Checked="0" Enabled="1" FatherUID="43520" Image="title.bmp" Position="14" String="Menus" Type="2" UniqueID="Menus">
            <Menus>
              <action type="add">
                <Menu Checked="0" Enabled="1" FatherUID="Menus" Image="" Position="0" String="Menu_1" Type="1" UniqueID="Menu_1" />
              </action>
            </Menus>
          </Menu>
        </action>
      </Menus>
    </Application>
    when add the Image property , but continue error  Error -11003:Menu-Fail loading Image file.
    <h2>How to add images by using XML inside a B1DE project ?  </h2>
    Hope it helps
    Jimmy.l

    Hi
    在你的xml文件中,image 属性设置错误,应该填写你所加的image的绝对路径
    比如:
    <Application>
    <Menus>
    <action type="add">
    <Menu Checked="0" Enabled="0" FatherUID="43520" String="MyMenu1" Type="2" UniqueID="MyMenu1" Image="C:/MyPic.bmp">
    <Menus>
    <action type="add">
    <Menu Checked="1" Enabled="0" FatherUID="MyMenu1" String="MySub1" Type="1" UniqueID="MySub1" />
    </action>
    </Menus>
    </Menu>
    <Menu Checked="0" Enabled="1" FatherUID="43520" String="MyMenu2" Type="2" UniqueID="MyMenu2" >
    <Menus>
    <action type="add">
    <Menu Checked="0" Enabled="0" Position="0" FatherUID="MyMenu2" String="MySub21" Type="1" UniqueID="MySub21" />
    </action>
    </Menus>
    </Menu>
    </action>
    </Menus>
    </Application>

  • When loading large number of images, images begin to fail to load in IE11 with DOM: 7009 error (unable to decode) in console

    When loading many images on a single page in IE (reproduced in IE11), some of them begin to fail to load, and have something similar to the following warning in the console:
    DOM7009: Unable to decode image at URL: '[some unique url]'.
    When I look at the network traffic, there does appear to valid responses received for each of these images from the server. It's not always the same images each time. If I use the dev tools to force the image to reload (example: I update the url to include some some extraneous url parameter "&test=1"), it loads/renders normally without error. I've reproduced this behavior with different types of images (jpegs/pngs; example png included below). Apologies for the cross-posting. I wasn't sure what the particular etiquette was for that - I've also posted this issue on StackOverflow and MS Connect under the same title. If one of those is a more appropriate place for this matter, please let me know and I'll close this issue.

    yup, i have encountered this problem as well. I'm loading an array of image frames for a movie, and i'm using preloadJS (javascript preloading library) and not displaying the images upfront. 

  • Error message "failed to load an application resource (internal error)" when checking form in LiveCycle preview PDF

    After creating a form, when I click on Preview PDF, I am now getting an error message "Failed to load an application resource (internal error)". Not sure why this has started recently, but it makes it impossible to check my forms for clients before I send them. I can open them outside of the program in Adobe Reader, but it is faster to check the form within LiveCycle and change them if necessary. Please help!

    I fixed mine! In Reader 9 and 10.0 I had disabled the ReadOutLoud feature as it kept popping up whenever it felt like it, and I don't need ReadOutLoud. What worked for me was first to purge the system of Reader 9 - the uninstall routine leaves stuff behind. Then I went into the Reader 10 program folder, located the plug_ins sub folder, and renamed it to oldplug_ins. Then I ran the repair routine which recreated the plug_ins subfoler.. All now works, except that the <expletive deleted> ReadOutLoud is up to its old tricks again, but I can live with that for now.
    Hope this helps.

  • Images fail to load completely

    I regularly visit a web site which displays many photographs. Often some of the images fail to load completely, I may see the top 30% of the image and the rest shows as a grey box. Pasting the same URL into Firefox, shows the whole image.
    Any ideas? This has been a long term problem with Safari, both on a MBP and PowerBook G4.
    MacBook Pro   Mac OS X (10.4.6)  

    Helpful if you post the web site so we can have a look.

  • When I go to my webpage it comes up blank I right click to get the page info and it is not showing the media and load images is checked

    I have an online business and when I go to my websites they come up blank. I went to the same site on my other pc and it loads just fine. When I checked the page info and compared the two the one that loads ok shows general, media, permissions and security and the other shows everything but media. How can I get this back? I've checked everything I can think of. Load images is checked

    According to http://en.wikipedia.org/wiki/IPhone_5
    the iPhone5 has 1GB of RAM, and internal storage of 16, 32, or 64GB.
    It does not use SD cards.
    Fake iphones are really Android phones using the skin of iOS6.
    Click on the App Store icon. If it takes you to Apple's App Store, then it's a real iPhone.
    But if you are directed to Google Play, then I'm afraid you've gotten a copy.

Maybe you are looking for

  • How can i transfer videos without losing the sound to my iPhone 3G?

    Hi I have bought my iPhone 3G yesterday. I have found out how to transfer music from iTunes however i can't transfer videos. I'm selecting the videos i want to transfer on the videos tab after i chose my iphone from the side menu and pressing apply.

  • How can I embed a Spotify playlist in my folio?

    I'm trying to figure out how to embed a spotify playlist with an article in my folio, using the widget they provide here: https://developer.spotify.com/technologies/widgets/spotify-play-button/ I tried using the web overlay option and pasting the ifr

  • Male to male dock for iphone 4 to ipad 4

    HEllo is there's a male to male dock for iphone 4 to ipad 4?

  • Will it run?

    Ok I've got it. Before I dump enough stuff to install it on my iMac G5 with a mere 768Mb of RAM and a pathetic 80Gb drive (but I have an external) do you guys reckon it will run OK or do I have to buy a new iMac before Leopard comes out! Mark

  • Most pages not loading when on new wifi connection

    I have recently connected to a new wifi network and while some pages will load, most of them will not. So, for example, I can get on to the NYtimes website but not onto the Washington Post website. And for the Facebook website, I can get onto the mai