Help - Importing Large Images Fails

Hi,
I use Flash primarily for animation.  The project I'm working on currently is a hefty 1920 X 1080 square pixel file and currently weighs in at 187mb because of all the sounds and jpg images.  It's 2 minutes long.
The problem occuring is new to me as I've never worked with projects this long or in this resolution.  Or with this much data (sound effects, jpgs, etc).
The problem is this: I'm trying to import a high resolution photograph (3500x2500) onto the stage or even just in the library.  I'm using the photos to get an idea on where the final animation will be placed (photo backgrounds, flash animation, composited in After Effects, think Roger Rabbit).
And it's been working until now.  I've imported, scaled, and animated a lot of jpgs, sounds, and photos without incident as well as drawn a lot of new frames using the brush tool.
I'm near the end of the project, and of course, Flash craps out on me, either crashing (closing automatically) on me every time I try to import the 20th of about 25 hi-rez photos, or giving me some error saying the file I'm trying to import is corrupted.  And when I try to import other files it gives me the same problem.
Here's the kicker though, when I open a new stage and close the project I'm working on and try to import the same files, I am able to import
those supopsedly corrupt images.  My theory is that Flash cannot deal with projects like mine, with lots of hi-rez photos in the timeline (though only one hi-rez photo on the stage at any given time.  It might be a RAM memory problem since Flash is vector based.  I have 2gigs of DDR RAM on my computer and it's a 2GHz Athlon processor.
I currently use Flash CS3 and Flash 5 and have experienced the same issues in both.
My question to those who have encountered similar problems in the past is how do you get around this?  What's your work flow?
Do you split the project up into smaller chunks so you can import onto the stage what you need to work on in that chunk so Flash doesn't crash?
Do you use another program to composite and cross your fingers in the hopes the animation will line up with the imported background?
This project requires animation synced to the sound, so syncing after animating is not an option.  Likewise, the animation has to appear in the right place on the screen, so importing photos to the stage is a must for placement issues.  And lastly, it has to be HD resolution, so the photos I use have to be hi-rez too, which means huge filesizes.
Since it's not for the web, it's not an issue for me what the filesize is, but it seems to be for Flash and that's why it keeps crashing now that's I've pushed it to its limits.
I'm curious if there are any solutions that will prevent it from crashing in the future or work-arounds that will allow me to avoid reaching Flash's limits as I finish laying in the photo bgs and begin animating.
Ideas welcome.

*bump*

Similar Messages

  • Adobe Premiere Pro Help | Importing still images

    This question was posted in response to the following article: http://helpx.adobe.com/premiere-pro/using/importing-still-images.html

    I might be incorrect in this, but think that there is a Ps Script, that will do what you want.
    I would ask in the Photoshop Forum: http://forums.adobe.com/community/photoshop
    and also in the Photoshop Scripting Forum: http://forums.adobe.com/community/photoshop/photoshop_scripting?view=discussions
    If my memory is not totally hosed, one of those should yield the Script (if it exists, as I claim to remember) for that task.
    Good luck,
    Hunt

  • Importing large image sequences takes too long

    ...in fact sometimes will even lock up our workstations completely. 
    Shorter sequences are no problem, but when we get to lengths of 10,000+ files it really slows down.  It doesn't seem to matter what the files are, where they are (local or SAN), or what machine I'm using.
    Is this normal?

    It sounds as if you might be running into the maximum number of images AE can import as a single footage item.  However, let's eliminate the obvious.  Can you confirm you're importing a sequence as a single footage item?
    http://help.adobe.com/en_US/aftereffects/cs/using/WS3878526689cb91655866c1103906c6dea-7f78 a.html#WS3878526689cb91655866c1103906c6dea-7f77a
    Unfortunately, the link above doesn't list the maximum number of images AE allows in a sequence; it would be helpful if it did.

  • Help importing CR2 images

    hi i'm new here ^_^
    well i need help on importing my pictures that are CR2 to lightroom 1.4. It tells me that my pics are damage or it doesn't support it. can anyone help me on this please

    The Canon Rebel XS was supported from LR 2.1 see this link.
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4072
    Your options to open your raw files in LR 1.4 is to use the latest Adobe DNG converter (present version is 6.3) to convert your CR2 files to DNG.
    Retain the CR2 files for use with your Canon software since that will not read the DNG files.
    The other option is to upgrade to LR 3.3 which has many new features including a more advanced raw processing engine, noise reduction and sharpening, and new Lens Correction feature.
    The link to the DNG converter is here. (sorry did not get the link to insert but if you go to the adobe dot com/support/downloads/ you should be able to find it.)

  • Help redrawing large image

    I have a 600x600 applet that redraws each pixel (drawing the mandelbrot set).
    Right now (just using a for loop and paint() method) it swipes down drawing the pixels and takes a couple seconds.
    I tried to draw an image offscreen and paint that on but it still took the same amount of time since it needed to still draw each pixel to the offscreen image.
    I was wondering what I need to do to make it faster. Would threads be the solution?
    Thanks

    Kurbz wrote:
    iterations = getIterations(real, imaginary);  //method that computes color for each pixel
    if (iterations == maxIterations)
         g.setColor(Color.BLACK);
    else {
         red = (iterations % 32) * 7;
         green = (iterations % 16) * 14;
         blue = (iterations % 128) * 2;
         g.setColor(new Color(red,green,blue));
    g.drawLine(x,y,x,y);
    My experiments show using the WritableRaster of a BufferedImage to be about 3 times faster than using setColor and drawLine (ignore hackish code):
    import java.awt.*;
    import java.awt.image.*;
    import java.util.*;
    import javax.swing.*;
    public class GraphicsTest1 {
       static volatile boolean isPainted = false;
       private static final Dimension dim = new Dimension(800, 800);
       public static void main(String[] args) {
          final JFrame frame = new JFrame();
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          final BufferedImage image = GraphicsEnvironment.getLocalGraphicsEnvironment()
             .getDefaultScreenDevice().getDefaultConfiguration().createCompatibleImage(
                   dim.width, dim.height, BufferedImage.OPAQUE);
          final JPanel panel = new JPanel() {
             @Override
             protected void paintComponent(Graphics g) {
                if ( isPainted ) {
                   g.drawImage(image, 0, 0, null);
                } else {
                   super.paintComponent(g);
          final Thread t = new Thread(new Runnable() {
             @Override
             public void run() {
                WritableRaster raster = image.getRaster();
                Graphics2D gr = image.createGraphics();
                Random rnd = new Random();
                long nanos = System.nanoTime();
                for ( int x = 0; x < dim.width; x++ ) {
                   for ( int y = 0; y < dim.height; y++ ) {
                      int r = rnd.nextInt(128)+128;
                      int g = rnd.nextInt(128)+128;
                      int b = rnd.nextInt(128)+128;
    //                  setPixel(raster, x, y, r, g, b);
    //                  setPixel(image, x, y, r, g, b);
                      setPixel(gr, x, y, r, g, b);
                System.out.printf("Seconds taken: %f%n", (System.nanoTime() - nanos) / 1000000000.0);
                gr.dispose();
                isPainted = true;
                panel.repaint();
          t.start();
          frame.setContentPane(panel);
          frame.setVisible(true);
          frame.setSize(dim.width, dim.height);
       private static void setPixel(WritableRaster raster, int x, int y, int r, int g, int b) {
          raster.setPixel(x, y, new int[] {r, g, b});
       private static void setPixel(BufferedImage image, int x, int y, int r, int g, int b) {
          image.setRGB(x, y, r << 16 | g << 8 | b );
       private static void setPixel(Graphics2D gr, int x, int y, int r, int g, int b) {
          gr.setColor(new Color(r, g, b));
          gr.drawLine(x, y, x, y);
    }

  • Help: import iphoto images into FCE

    Hi, Jake here. Hope you're all doing well....
    I just bumped up from iMovie 06 to FCE. Loving it so far, but still overwhlemed by the learning curve.
    Today's big question is how to best import a series of photos from iPhoto into FCE. I will be mixing photos & videos for most of my projects. I have tried these two things so far:
    1) Dragged & dropped from iphoto directly onto the FCE timeline. Image looks very blurry.
    2) Exported at max JPEG quality from iphoto to a location on my hard drive. Then imported file into FCE, then placed on timeline. It's every bit as blurry.
    Both images have a green line above them, indicating a preview render?? I don't get it, but I just know photos weren't blurry in the store when the Mac guys showed this to me a couple weeks ago.
    So what is the easiest way to do this? I want to import photos quickly & easily, then add effects & movement, but I can't believe that Apple has made it so cumbersome. I imagine I am missing something here. Please advise.
    Thanks!
    Jake

    I think Jake did everything correctly but is expecting too much from a DV format.
    I repeated the same with a 2304 × 1736 (4 megapixel) image and I got the same:
    - dragging a Photo JPEG image (square pixels) to a DV (PAL or NTSC) sequence requires rendering: I get the same green render bar on top
    - in addition the resolution loss from 2304 × 1736 to 720x480 (or 720x576) makes the image blurry
    If you compare the iPhoto image and the imported image in the viewer (not in the timeline) you see basically the same quality; but the same image already converted into the timeline is blurry.
    I'm afraid Jake has to live with this or move to HD. In any case iMovie could do no better than FCE.
    My suggestion in any case is always to check the final quality of the movie, during editing, on an interlaced monitor (TV) connected through firewire and a D/A converter (e.g. camcorder): mostly for still images.
    Piero

  • Need help importing large word document into CS2

    I am using ID CS2. I am putting together a document that has 120 pages that's 11.625 wide by 21.25 tall (newspaper) and will be in 8 columns. I want to place a text document using the autoflow method. My problem is, there are so many words, characters, etc. that my ID freezes up. I have changed the original document to a Word Doc, Excel file and a text document. Changing the type document seemed to make a difference. What is the best way to place the text and format it?

    Technically, you don't need to draw the text box first. If you already have your margins and columns correct (which I assume you have set up on the master so it automatically applies to all pages), ID will create the textbox when you autoflow (shift click or alt click with a loaded curser). Just click with your loaded curser in the top left of the first column.  Another way to do this is to create an 8 column text box on your master and click over it on the actual page.  The advantage to this is that you don't have 8 text boxes across your page, but one single text box divided into eight columns.  There are pros and cons to both work flows, though it appears that the new CS5 has more pros to the single text box with columns than the eight text boxes.
    You should only remove the styles and formatting if you want all the formatting stripped from the file as you place it. Otherwise, you can actually map the styles in the placed document to the ones in the ID file from that dialog box, and that might save you a lot of formatting time with such a large document--assuming that the file you are placing is correctly styled and formatted (which is not always the case).
    Since I'm now not sure what you meant by ID "freezing" in your original post--if ID actually crashes (closes itself with or without an error message) when you try this import, you might try opening the final text doc and breaking it up into smaller segments to place. However, there should be no problem placing a text document of that length into ID. If ID is just pausing for a while, do give it time to actually process all those pages.

  • Horizontal scrolling. Help with large images.

    Putting together a .pdf publication for iPad.
    I have content that fits a standard iPad format BUT I also have these very long timelines (170cm x 21 cm). These need to be displayed zoomed in -  with the reader swiping right to accessing the remainder of the content. So a horizontal scroll! Whenever I test it on the iPad it display the full image (so zoomed out and tiny). The other images are displaying fine.
    So how do I make sure I view them as I require?
    Thanks!

    I also need this feature, to view and mark up street plans that are long narrow landscape format pages with "match lines" at the left and right sides.  What I want is similar to Acrobat's existing "Enable Scrolling" -- but in the horizontal direction.  Planners need this for road and path plans.  Musicians and composers need this for viewing multi-page sheet music so they can browse the entire "timeline" of the piece.  And as the OP notes, schedule planners need this for reviewing timelines such as Gantt charts.
    Adobe, please add this feature.  I'll gladly pay for an upgrade (currently using Acrobat Pro XI Mac).

  • Troubles with Large Images in CS4

    I am having a problem with importing larger images in InDesign CS4.  I need to be able to put a full page image in my product.  Smaller images are not a problem at all.  Actually, I am having a couple issues. 
    First, my ID doc is 1024x768.  When I resize an image in Photoshop to those dimensions and then import it into ID, all I get is a little tiny box.  What am I doing wrong?  I have tried mixing the image size up a bit with several different configurations, but then all I get is a little bit bigger box. 
    My main problem is when I do get an image that is large enough, it is very blurry, almost pixelated.  I have no idea what is the cause of this and would greatly appreciate a response.  Thanks in advance.

    Well, your resolution in Photoshop has only some relation to the size of your document in InDesign. Perhaps CS4 has something new that CS3 doesn't, but I can't set an Indy doc to 1027 x 768 pixels; the only measurements I get are things like picas, inches, and other non-screen measurements.
    When working in Photoshop (really not my strong point), you have control over both the image size and the canvas size, right? And one of the values you're working with is going to be pixels per inch, no? I'm guessing that a Photoshop image with a size of 1024 x 768 pixels at 72 ppi (screen resolution) is what you are placing in an InDesign document, which is simply not going to display that information at 72 ppi. It'll probably display it at 300 ppi, or something similar, no?
    This just shows you my basic ignorance of Photoshop. However, even someone as PS-impaired as myself knows that you can set the image size and canvas size in Photoshop, and this will control your number of pixels per inch. If you save a PSD or a TIFF out of PS, and you have your canvas and image settings correct, then you'll get a good idea onscreen of how large your image is inside your ID document, and what your resolution will be. In fact, InDesign will merrily let you place PSDs at whatever resolution you set up in PS. So, to sum up:
    1) Your image is being placed at a print-level resolution, which is why it's so small
    2) You determine the resolution of your image in Photoshop
    3) Bob's question bears repeating: 1024 whats?

  • When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?

    When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?
    This is happening even with photos that were taken on another camera, not just mine.  My daughter told me that the laptop recently fell.  The yellow streak is not anywhere else on the laptop, just on the photos in LR.

    I have had this problem on my desktop.  I have been attempting to reproduce it where it can be debugged. Here are some observations/facts in my environment--no conclusions:
    1. I do not import from camera or memory stick directly into LR.  I copy all images (using Explorer) from camera to two different locations (backup location first); and then my working area. In both cases, after files are copied I mark them Read-only.
    2. Poor observation, but in any event: the issue has only occurred when I do a large number of images. Its a poor observation as I have no exact number.  I suspect when I do less than 50 always works well every time.  However, I have also done some very large imports without issue.
    3. Error only occurs with my RAW images--for me that's NEF.  I have multiple cameras--those that only capture jpg images have never had an issue in LR.
    4. Even if the file is marked Read Only issues can still occur.  I then remove the image from the disk using LR -- and then manually (Explorer) copy in my backup image -- re import again and all is well.  I think one time I exited LR and replaced the bad file with a backup and restarted LR and all was well again.
    5. When it occurs I have performed a HASH value on the broken file and on the backed up file to determine if the file contents has changed--and each time the file contents has changed.
    6. I have had this occur immediately after import, but most often it occurs like this... import large number of images; Make changes in Development Module on random image, export jpg of changes--exit LR. Open up LR and file is corrupted.
    7. I have had this issue on multiple USB drives ( okay just 2 different drives have been tested ).
    What next--fire up Process Monitor and monitor the system (specifically LR) to see if it reports any file open for write access when this occurs.  So, far I have not had process monitor actually running when it occurs--one of these days.

  • Cisco Prime Infra 2.1 fails to import an image from file

    We have a standard Cisco Prime Infrastructure 2.1 install. The software repository has been built up by importing the IOS images from the discovered network devices. To implement netflow capabilities on some 3750X switches we need to upgrade the IOS on the chassis and the NM card C3KX-SM10G. I was able to download from Cisco Support the 3750X IOS .tar file and import it from my machines local file system. However, the modules tar file c3kx-sm10g-tar.150-2.SE6.tar fails on the upload from my local file system. When I look at the import rob results they are as follows:
      Image collection from source     SUCCESS
      Copying Image to Staging Location     SUCCESS
      Copying Image to Repository     FAILURE
    I've tried to import just the .bin file but this also fails at the same stage as above.
    I've also tried to scp the file directly into the backend file structure with no success into the folder /opt/CSCOlumos/conf/ifm/swim/jobs with the other images (oddly noticed the above .tar file for the 3750X isn't listed with the other .bin files - although is available through the webGUI).
    I need to distribute the NM .tar file across multiple switches and I'd prefer to use Cisco Prime for the job. Any help would be gratefully received.
    Thanks.

    I had (still have?) the same problem with it not copying the image over. I put in a ticket and they told me to upgrade to Prime Infrastructure 2.1-Device Pack 4  pi_2.1device_packs_4-40.ubf which helped but it still fails sometimes.
    I had read a post from another thread about going through software image management to distribute and that seems to work a little better, but still fails sometimes. 
    So I think that there are still quite a few issues in Prime that need worked out.
    We have over many switches that need software upgrades and I was hoping to do it quickly through Prime but I don't want to send out more then one image at a time to switch because I don't want it to fail. So it's a drawback right now, just doing one at a time to make sure it takes.

  • How to import PDF image into Pages manuscript that is larger than the text bed margins

    How do I import a PDF image into a Pages book manuscript, whose dimensions are larger than the global text bed margins? Any imported PDF image is automatically shrunk to fit within the text bed. I know I can set up a single page with wider margins and a text bed within it, but I want the image to import to a page already within the manuscript sequence, where the text bed margins are set and constant.
    Larry Kettelkamp
    [email protected]

    By default it should be dragging in as a floating image and not part of the text.
    What version of Pages are you using?
    In Pages 5 this is:
    Format > Arrange > Object Placement > Stay on Page > Size > Original size
    Peter

  • Need Help - Can't Import ANY Images into LR4.4 Since OS Upgrade

    I can't import ANY images to LR 4.4 since upgrading my Mac OS to Mountain Lion 10.8.3 this past week. I downloaded LR5 Beta and all works well. I deleted LR5 Beta to see if it was conflicting with LR4.4 somehow and rebooted. Still no change. I can't import from my card reader (that says it can't even read the files) or from a location on my hard drive. I am beyond lost and frustrated.
    The error message for importing is "Could not copy a file to requested location."
    I need ideas. I am afraid to deleted and reinstall as I don't want to lose all my folders within. I looked all over the web and can't figure it out.
    If you need any other info, please let me know. I am hopeful that someone can help me.

    I added LR5 again and that works perfectly, but LR4 is still not working properly. I opened the preferences and catalog settings to compare...and they all look the same. I am beyond baffled. I don't plan on dropping more money for LR5, so I need LR4 to get back to working properly.

  • HELP! How do I link small thumbnail to larger image on same page?

    hello, everyone! I'm working in dreamweaver cs4 and am having no luck!
    see below - I'm trying to link the small thumbnails to the larger image on the left. in other words, when a thumbnail is chosen it's corresponding image would open on the left. I have tried mouse-over effects and image swap behaviors but still no luck. either the larger image replaces the thumbnail or a brand new window opens up with the larger image.
    I want all effects to stay on the same page. any help would be greatly appreciated!

    Hi There:
    Not sure how you have designed your page but here is a simple sample code on how you can do this with javascript and on mouseover event:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    div#left {
    display:none;
    </style>
    <script language="javascript" type="text/javascript">
    <!--
    function showImage(obj) { //v2.0
    //alert(obj);
    document.getElementById(obj).style.display='block';
    //  return eval(obj)
    function hideImage(obj) { //v2.0
    //alert(obj);
    document.getElementById(obj).style.display='none';
    //  return eval(obj)
    //-->
    </script>
    </head>
    <body>
    <div id="left" style="float:left;width:200px;"><img src="left.jpg" width="180" height="273" alt="large" /></div>
    <div id="right" style="float:right;width:200px;"><img src="thumbnail.jpg" alt="small" style="cursor:pointer;" width="57" height="228" onmouseover="showImage('left');" onmouseout="hideImage('left');"/></div>
    </body>
    </html>
    By default the bigger image is initally not there so I have added a display:none style in the head.
    The above code will show the bigger image on left when you do a mouseover on the smaller left thumbnail image. Vice-versa when you move out the mouse the image goes away (you may not need this part). So on each thumbnail image simlarly pass the id of the image you want to show via the javascript showImage function.
    Note: You can use onclick or other event per your preference.
    Regards,
    Vinay

  • Need to read/paint large images fast. Help!

    Hello Java community,
    I am having trouble writing a program which can read large image files from disk (~ 1-2 MB) and paint them to the screen while maintaining a frame rate of 15 or 20 fps. Right now I am doing this through a Producer/Consumer scheme. I have one thread which constantly creates ImageIcons (using the constructor which accepts a String file path), and places them on a blocking queue (production) with a maximum capacity of 5 or 10. I have a second thread which removes an image from the queue (consumption) and paints it to the JFrame every so many milliseconds to honor the frame rate.
    My problem is that this approach is not fast enough or smooth enough. With smaller images it works fine, but with larger images it cannot maintain a high frame rate. It also seems to consume more memory than it should. I am assuming that once I paint a new ImageIcon, the old one goes out of scope and is freed from memory by the Garbage Collector. However, even with a queue capacity of 5 or 10, I am getting out-of-memory exceptions. I plan on trying the flush() method of the Image class to see if that helps to recover resources. After searching around a bit, I see that there are many different ways to read/load an image, but giving a local path to an ImageIcon and letting it load the image seems to be a safe way to go, especially because in the documentation for ImageIcon, it says that it pre-loads the image using Media Tracker.
    Any help, ideas, or links would be appreciated!
    Thanks,
    Elliot

    Thanks for another insightful response.
    I've played a bit more, so let me update you. I am preloading images, the blocking queue (FIFO) is full when the animation begins. Right now, the queue capacity is 10, but for smaller images it can be closer to 40 or 50. The image reader queue reads images and places them in this queue. Oddly, the problem does not seem to be that the reader thread can't keep up. I added a print statement which displays the size of the queue before each removal and it remains very close to the capacity, at least for the my test images which are only 400 x 400, approximately 100 KB each.
    I've tried animating the images in two distinct ways. My first approach, as I mentioned in the original question, was to animate the images using purely swing components and no manual painting of any kind. This is always nice because it frames the image perfectly and the code is minimal. To accomplish this I simply had the image reader thread pass in the image path to the constructor of ImageIcon and put the resulting ImageIcon in the queue. The animator thread had a simple swing timer which fired an ActionEvent every so-many milliseconds (in the event dispatch thread). In the actionPerformed method I simply wrote a few lines to remove the head of the queue and I used the JLabel setIcon(ImageIcon) to update the display. The code for this was very nice, however the animation was choppy (not flickering).
    In my second approach, which was a bit longer, I created a class called AnimationPanel which extended JPanel and implemented Runnable. I simply overrode paintComponent and inside I painted a member Image which was set in the thread loop. Rather than storing ImageIcons, the queue stored Images. The reader thread used ImageIO.read(...) to generate an Image. I used simple logic in the thread loop to monitor the fps and to fire repaints. This approach suffered from the same problem as the one above. The animation was choppy.
    I found the following things to be true:
    - the reader can keep up with the animator
    - if I run the image reader and perform a basic polygon animation, both of my approaches animate smoothly at high frame rates. In other words, it's not the work (disk reads) being done by the reader that is causing the lag
    - I believe the slowness can be attributed to the following calls: label.setIcon(imageIcon) or g.drawImage(image, 0, 0, this). This leads me to believe that the images are not fully processed as they are being placed on the queue. Perhaps Java is waiting until they are being used to fully read/process the images.
    - I need to find a way to process the images fully before trying to paint them, but the I felt that my approaches above were doing that. I considered have the reader frame actually generate a JLabel or some object that can be displayed without additional processing.
    - your idea about AWT components is a good one and I plan on trying that.
    Elliot

Maybe you are looking for

  • Display of image in rtf template

    Hi, I have a tag in my xml file like <ImageDistributeur>IMAGE:D:\EXPLOIT_UNPMF\Edition\Image\L29004G.tif</ImageDistributeur> and the image is stored in the particular location specified inside the tag. The xml file doesnt contain the image... My ques

  • Time Machine will not start (code -43)

    After getting a new 1TB external usb drive and changing format for use with time machine the program no longer launches producing unexpected error (code -43) instead. I had hoped to have three of four partitions on this drive for use with old windows

  • Create a Behavior for Calendar in a WPF UserControl to Select and Unselect dates with one click

    Hi to everyone, I am developing an application with a WPF Client. This Client use the MVVM pattern. In an UserControl the application must show some Calendars, so the user can select one or multiple dates. For that use, I should implement some behavi

  • Naming huge amounts of files after "undelete" / photorec / etc?

    Hello! Does someone already have a neat little script to automatically name a huge amount of files in multiple fuzzy sorts of ways? Like with id3-tags, exif tags, the first line / header of text documents of various formats... sort by file extension,

  • ITunes File Sharing question

    I really like the reader, mainly because it's uncomplicated an uncluttered, but I'm having a problem with importing files into it. I opened a .pdf from an eMail with the option open with Adobe Reader and the file is now on the list in the iPad app. W