Time stamp changes when exporting...

Hi,
I sometimes want to export an Aperture album to iPhoto so I can then send it to iDVD as a slide-show. I sometimes use Photoshopped jpeg diagrams (not photos) mixed in with my raw originals in the Aperture album as well. I've altered their time stamps so they everything is sorted chronologically as I'd like them.
When I export to a folder I'm finding that the time stamps are being altered and I have to tweak the order in iPhoto - or export with new filenames and sort by title afterwards. This behavious is very puzzling, is it a bug or a feature???

I have the same problem using Photoshop Elements as the editor. The time is changed by 1 hour. Why....? Has anyone found out how this can be stopped?

Similar Messages

  • How to remove time stamp on query export?? HELP

    I am runnning SQl Developer 2.1 and built a query which returns dates that letters were mailed and or correspondence received. My Query Results show normal date format (02-Mar-12) within Developer. When I export the results to Excel it includes the time stamp (02-MAR-12 06.13.20.000000000 PM). I had a coworker with an older version run the same query, when she exported the results the time stamps weren't exported, just the date. How can I change the export to remove the time stamp? Any help would be great. Thanks.
    Nate

    Hi,
    Clearly a bug. You can try changing your Tools|Preferences|Database|NLS|Timestamp Format to match the Date Format as a workaround. Otherwise why not upgrade to the lastest production SQL Developer release (3.1.07.42)? The bug does not occur there.
    Regards,
    Gary
    SQL Developer Team

  • Format Changes when Exporting to PDF

    I'm using Crystal 12.0 and have an issue very similar to these threads listed below. 
    While viewing a report on my development machine, all is fine.  I can export to PDF and the formatting is OK. 
    However, when the report is exported to PDF on the web server, the spacing between some of the text is off.  The spacing is used for a CrossTab cell in a "Display String" that I changed using "Format Field."   All that's supposed to happen here is several spaces are used to move the text under the proper column. 
    When exporting to PDF on the web, the text moves over to the left like it's missing some of the spaces.  I wondering if the below threads apply to Crystal 12.0. 
    Thread:1220516 and
    Format Changes when Exporting to PDF
    Thanks kindly for your assistance,
    -Marty

    I'm having a very similar problem using Crystal Reports for Visual Studio 2008. Everything is perfect when running in VS 2008, it takes the report and exports it to PDF format via VB code. The PDF file is idenitcal to the report. However, when run on the server the one page report (when exported to PDF) gets chopped into ten 4x4 chunks. So the PDF file is 10 pages....its like puzzle pieces of the original.
    I've drawn a bunch of lines on the report to look like boxes - perhaps this is causing issues? The font on the report is Arial.
    The server has the 10_5 runtime installed and it is set to the same default printer as the development PC. I have been stuck on this for days and would really appreciate any advice you may have.
    Thanks!
    Edited by: WanderingEye on Sep 18, 2009 4:54 PM

  • FileMonitor issue for date time stamp change.

    Hi I have an app that runs with a minor issue and I am looking for some insight for a workaround or code change.
    I have a File Monitor that checks a specific directory every second.
    Users send a batch run to this directory throughout the day. There are two types of files, .ZIPs and .DONEs.
    So for each .ZIP a .DONE is sent to notify the app it can begin to process the file.
    Here is what I receive
    /elements/process/File1.ZIP     Oct 15 08:19
    /elements/process/File1.DONE     Oct 15 08:19
    The problem I am encountering is sometimes the .DONE and. ZIP are sent and the date time stamp of both files are the same so when the monitor reads the directory it looks like there is no change so both files sit in the directory and do not process. To make this work, I usually go in and touch a file to change the date time stamp.
    This is a java app that runs on an AIX box.
    Here is my code, is there anything any once can suggest to help me out. Thanks in advance.
       * Subclass of FileMonitor, Handles the timer event
       * @param none
      private class FileMonitorNotifier extends TimerTask
        public void run()
          // Loop over the registered files and see which have changed.
          // Uses the Modifed DateTimeStamp to determine if there was a change.
          // Use a copy of the list in case listener wants to alter the
          // list within its fileChanged method.
            try
                Collection files = new ArrayList (hmFiles.keySet());
                for (Iterator i = files.iterator(); i.hasNext(); )
                    File file = (File) i.next();
                    long lastModifiedTime = ((Long) hmFiles.get (file)).longValue();
                    long newModifiedTime  = file.exists() ? file.lastModified() : -1;
                    //      Check if file has changed
                    if (newModifiedTime != lastModifiedTime)
                        //      Register new modified time
                        hmFiles.put(file, new Long (newModifiedTime));
                        // Notify listeners
                        for (Iterator j = colListeners.iterator(); j.hasNext(); )
                            WeakReference reference = (WeakReference) j.next();
                            FileListener listener = (FileListener) reference.get();
                            // Remove from list if the back-end object has been GC'd
                            if (listener == null)
                                j.remove();
                            else
                                listener.fileChanged (file);
            catch(Exception ex)
                 m_odLaunch.logError(OdIntegrationConstants.ERROR_LEVEL_MIDLEVEL, ex);
         }

    Yes, I guess you are right, I don't care what time each file came, as long as I have both I can being to unzip and process and delete the .DONE.
    The code itself was based on if a filechanged then do work.... I could just take this out. Thanks!
    * This is the main entry point when there is a change to the modified date/time
    *  of the monitor directory
    * @param file directory we are monitoring
         public void fileChanged (File file)
              StringBuffer sbMessage;
              try
                   sbMessage = new StringBuffer();
                   //Make sure this is a Directory
                   if(file.isDirectory())
                        //Return list of files with extension we are looking for
                        File[] arFiles = file.listFiles((FilenameFilter)new FileSuffixMonitor(m_odLauncher));
                        for(int i=0;i < arFiles.length;i++)
                             sbMessage.append("Found file association to move-" );
                             sbMessage.append(arFiles.toString());
                             m_odLauncher.logInstance(sbMessage.toString());
                             processMoveFile(arFiles[i]);
              catch(Exception ex)
              sbMessage = null;

  • Time Stamp on MAXL Export File

    I use MAXL to export data from our Essbase cube. Is there a way to add a time stamp to the filename?

    I've never been able to do this directly through MaxL. If someone out there knows a way, please share.<BR><BR>The way I do this is by using DOS to rename the file after MaxL has exported it.<BR><BR>So assume you have a MaxL script 'test.mxl' with the following code in it:<BR><BR>login user password on 'localhost';<BR>export database zTest.PandL all data to data_file 'zTestX.txt';<BR>exit;<BR><BR>Then you have your .bat file that calls your MaxL script and in the .bat file you have the following code:<BR><BR>essmsh D:\\MaxL\Test\Test.mxl<BR>ren D:\Hyperion\Essbase\App\zTestX.txt zTest%date:~4,2%-%date:~7,2%-%date:~10%.txt<BR><BR><BR>''The first line calls the MaxL script and upon completion runs the second line which renames the file and adds the date stamp to it.<BR><BR>Don't ask me how to change the date format, I picked up the rename code from someone else. Although, by playing around with it, You can probably get it to look the way you want.<BR><BR>Of course all of this assumes you are using Windows 2000 server. It should work the same in 2003, not sure about NT. You're on your own if it's UNIX, but the same principles should apply, you just need to figure out the code for a Unix command line to do a file rename.<BR><BR><BR>Best of luck.

  • Time stamp changes

    When I copy my photos from my camera to my computer, the time stamp on them change. The actual time I created the photo becomes the photo's "date modified" property and the actual time I copied the files to my computer becomes the file's "Date Created" property. I don't like this. How do I get the actual date created property to copy over correctly?

    In Started Workflow screen...
    just click on any one of the activity on the workflow log..
    In Menu option click goto->technical workitem display
    Then again in menu optios click edit--> change
    Now you can change the container value.
    Edited by: Swaminathan PJ on Nov 19, 2009 2:21 PM

  • Format changing when exporting from InDesign to PDF

    I am using Acrobat 8 version 8.1.2, and InDesign version 5.0.2.
    I am noticing a very specific problem when exporting some files to PDF from InDesign.
    We often have a format where we have a numbered list of right-aligned number, followed by some text, a leader line, and then another number at the end of the line. This is set up with a left indent and a first line left indent (rather than using the numbered list options), and then the necessary tabs later in the lines.
    I am finding since we switched to IDCS3, that when I export to PDF, lines containing this format change in the PDF. The text that appears after the number in the front of the line is pushed over on top of the leader line, leaving a huge white space. On rarer occasions, it will move things in lines that have no indents, but contain tabs that aren't being used.
    I have been able to get the files to export correctly by removing the left indent and first-line left indent and using tabs instead (or by removing unused tabs). But we have hundreds of files set up in this manner so going in and changing how they are all set up is problematic to say the least.
    Is this a known issue? Does anyone know why this might happen and how I can prevent it?

    I haven't tried printing to PDF. I will try that and see what happens. Unfortunetly, where I work we are required to export to PDF rather than print to PDF, so if it works it will only be a clue for me rather than a solution.
    Thanks for the reply. I'll try a cross post to the InDesign forms.

  • Width and height changes when exporting

    When I export a vector design from Illustrator to raster (.jpg in this case), I am given the opportunity to select the "Use Artboards" feature. Once clicked, I assume my dimensions will not change. Here are my selected options:
    "Use artboards" option is selected
    Image quality: 10
    Format method: Baseline (Standard)
    Resolution: Depth: Screen
    Custom: 72 DPI (grayed out)
    However, when importing the .jpg file into Photoshop, the "Image Size" information reveals that one (1) pixel is added to the height and width.
    Why does this occur? How can I be sure Illustrator's artboard size will remain the same when exporting?

    mrgloop wrote:
    Why does this occur? How can I be sure Illustrator's artboard size will remain the same when exporting?
    Are you using "crooked" sizes? In that case sometimes the dimensions get adjusted to accomodated the compression algorithm, which is course based on blocks of a given size. also make sure to explicitly setup everything with units set to pixels. Rasterization of stuff based on other units can lead to inconsistent results. Also always define your artboards and slices at 100% zoom. You may accidentally create slightly too large stuff where the actual dimensions do not coincide with full pixels at other resolutions.
    Mylenium

  • Time code changes when reconnecting  media

    I have been working on a project for over year. Recently my computer was stolen when shooting abroad and now I had to buy a new one (leopard op sys) and reinstall my software to continue working. As I recapture the lost media a warning window pops out: "you are about to capture non drop frame media to a drop frame clip......". My media was shot with a panasonic 100a (24p), and since I started the project I have been capturing with the DV NTSC setting (it captures 29.97 drop frame). When I recapture, the clips in the browser appear as reconnected but the TIME CODE changes, and clips on the timeline referencing that media still appear offline (others don't even if the referenced clip is the same). If I try to reconnect from the timeline it tells me that media start and end do not match. I will appreciate any suggestions.

    Are you using a different camera/deck to capture this time than you used the last time?

  • Opacity level changing when exporting text with alpha

    Hello,
    I am hoping someone can shed some light on what is happening with my opacity levels when exporting text with an alpha.  I have animated text where some words are black at 50% opacity and some words are white at full opacity.  They are on a textured background.  I need to give the other editors a version of the text married to the background and one that is just text with an alpha.  When I export it and bring it into Premiere, the "married" version looks fine, but the black in the version of the text with alpha appears more transparent.  I can fix this by changing the blend mode to Hard Light or Luminosity, but this alters the color of the white text slightly (and I should note that the blend mode in AE was normal).  I can of course work around this by exporting my black and white text separately, but I was hoping someone might know why this is happening.
    I am working on AE CC (ver12) and Premiere CC (ver7)
    Thank you!

    Rick, I am judging visually.
    I have since taken the cue from Mylenium, and I think the problem has to do with the fact that AE's default opacity is not linear and Premiere's is.  When I change the sequence settings of Premiere and uncheck "Composite in Linear Color" the blacks of my clips match.  Similarly when I change my Project Settings in AE and check "Linearize Working Space" the blacks appear lighter as they did when with the text only clip in Premiere.  Since I am working with other editors that are using Premiere, I assume I should change the settings in After Effects to match Premiere (linear).  Unless there is any reason I shouldn't do that?
    Thank you,
    -Keri

  • Reducing Time of Rendering when Exporting to Encore

    Does anyone know how to reduce the rendering time when exporting from Premiere Pro CS3 to Encore? I'm trying to create a DVD of a 90 minute event using VBR 1 Pass and is taking 22 hours to get the job done! I have a 5 GB Mac Pro with 2 X 3 GHz Dual Core Intel Xeon Processors running on OS 10.4.11. Will "Forcing CBR" help? Will it compromise image quality? Any thoughts?

    With your machine the encoding to MPEG should be better then real time: a 90 minutes timeline should take about 90 minutes or less. However the effects and transitions rendering can greatly add to this time. Some effects can take "forever" to render. If you provide the effects you are using, we may be able to tell you which ones are time consuming to render.

  • Time Data Type when Exporting to Excel

    Hello,
    I have a report I wrote using crystal reports XI. There is a datetime field which I converted to a time field through the use of a formula and the time function.  When I right click on the field and view the data type it says time.
    However, when I export to excel the field comes up as a custom field.  How do I get it so that the exported field will appear as a time field in excel?
    Thank you for your help.

    >
    Vitaly Izmaylov wrote:
    > As far as I know, Crystal Reports does not export field type - only data.
    >
    > MS Excel defines the type by reviewing first top records and there is a knowledge base article on Microsoft website on this subject.
    >
    > Could you please give us an example how your time fields look like in Crystal Reports?
    The time looks like this:
    21:38
    10:53
    00:14
    Thanks,
    Athalia

  • How do I keep the "display time" from changing when I change the "appear after" time?

    Hello,
    I am having the the problem that the "Display For" time for my text captions changes from "Rest of Slide" to "Specific Time" when I drag the "Appear After" time in the time line.
    In other words, when I try to change when a text caption appears by dragging its Appear After point on the timeline from the very the start of the slide to e.g. 3 seconds after the slide starts, it automatically changes when it "disappears"... By that I mean the Display For time in "Timing" switches by itself from "Rest of Slide" to "Specific Time"...
    Can anyone help?
    Thank you!
    Ryan

    Hi there
    It's a feature!
    Aside from making Ctrl+E your new best friend, the best you can do is report to Adobe and hope it gets fixed in a future release.
    Click here to file a bug report
    Cheers... Rick

  • Date/time stamp issue when transferring vids/pics to computer. Help please.

    Hi, i am having an issue when transferring my vids/pics from my Z2 to my PC.
    On all my previous phones when transferring media to my PC it would be copied and labelled with a date stamp followed by a picture number- an example being 2014-01-13- 0123. This has always made organising and finding my pics/vids in there relavent folders an eay task.
    The problem i am now faced with is when i transfer pics/vids from my Z2.  The pictures are stamped with DSC_0001 for example and the videos with MOV_0001. This means when on my PC i have to examine each file individually to find out its date and time of origin.
    Even more of an headache is everytime i have transferred files from my Z2 and then take more pics/vids and then try to transfer them to my PC the computer will not allow transfer as the stamp on the file i am transferring from my Z2 eg - DSC_0001 is already present on the PC from a previous transfer. This means i have to rename all the PC files first.
    I hope this makes sense and hopefully there is an easy fix.
    I am new to Android and overall i am very happy with the operating system, being a massive improvement generally over my previous phones. Fingers crossed this is down to my lack of knowledge and just involves a settings change somewhere.
    Thanks in advance for any help.

    Hi.
    The case you described is right. But it´s not a bug.
    Why don´t you organise your pics/vids on your desktop with picasa for example. There you have many tools, also to rename your files, so that the filename contains the creation date.
    Or you use a cloud solution like dropbox, google+ or amazon clouddrive to sync pics/vids from your phone automatically.
    But never use the built-in sony playmemories. It´s really slow, pics are down-scaled to 1280x720 and vids are not synced. It´s the worst cloud-service for pics I´ve seen.
    Best
    arni

  • Color change when exported

    Using Lr4.1 on PC w/ win7pro laptop with external NEC multisync mmonitor-calibrated,  I've taken Raws made LR adjustments, then imported 3-10 images into photoshop layers for masking, merges, few if any color changes.  Then save as all layers as a psd, then flatten the psd and save as a tiff.  When I open in LR for any other minor tweaks, sharpening, dust spots, and do an export into SRGB or Adobe rgb, the colors are terrible.  Look nothing like what I see in LR.  I've heard people have minimal issues, but I am having major changes,  many times the collors will become dull and flat or very saturated when viewed.  As an architectural photographer I need these colors close to what I took.   If I edit in CR into PS I don't have this problem.  I assume its related to the prophoto RGB color changing, but I really don't know what's going on with the color space.  The color will appear different from my laptop monitor to the NEC by a lot which I understand a pro monitor will show more colors, but the color space shift is making a lot of work done in LR useless if I have to redo it all in CR.  How can I get LR to export the colors I see in LR into a srgb jpg and Adobe tiff?
    Thanks

    Lots of steps here:
    "Using Lr4.1 on PC w/ win7pro laptop with external NEC multisync mmonitor-calibrated,  I've taken Raws made LR adjustments, then imported 3-10 images into photoshop layers for masking, merges, few if any color changes."
    How do you get them into PS?  What do you mean by "imported 3-10 images into photoshop"?  Do you mean you use "Edit in.." from LR, and choose "Open as layers in Photoshop..."?
    "Then save as all layers as a psd, then flatten the psd and save as a tiff."
    How does it look in PS?
    "When I open in LR for any other minor tweaks, sharpening, dust spots"
    How do you open in LR?  The normal process, after "Edit in..." is that you save in PS, and the image is automatically stacked in LR against the original (or one of the originals, if you open several by "Open as layers in Photoshop...").  How does it look now?
    "and do an export into SRGB or Adobe rgb, the colors are terrible.  Look nothing like what I see in LR." 
    Only now they look terrible?  They looked OK in LR originally, OK in PS, OK when back in LR, but when you export they look bad - is that right?  And as Victoria says, how are you viewing the exported images? 
    "I assume its related to the prophoto RGB color changing, but I really don't know what's going on with the color space." 
    It certainly shouldn't be due to colour space changing.  The whole point of colour management is that it deals with this. 
    Final points:  you say your monitor is calibrated.  You do mean calibrated and profiled with a hardware instrument (Spyder, Colormunki etc)?
    And, color settings in Photoshop, they should look something like this:
    Choice of working space should be ProPhoto RGB, Adobe RGB or sRGB, but not a monitor or printer profile.  Policies should all be "Preserve" and I recommend all the "Ask When" boxed be checked (so you are warned of mismatches). 

Maybe you are looking for