How do I export exif data in Aperture?

It seems that Aperture exports very little data that is of use (i.e., minimal IPTC metadata). Is there a work around to export EXIF metadata? If not, is there a feature request mechanism within Apple?
Thanks much,
Tim

Tim,
for the GPS info you may look at this sample code from another script of mine:
try
                              tell application "Aperture"
  activate
                                        tell im -- any Aperture image
                                                  set longi to value of EXIF tag "Longitude"
                                                  set lati to value of EXIF tag "Latitude"
                                                  try -- remove this "try" if you want a warning if the altitude tag is empty
                                                            set alti to value of EXIF tag "Altitude"
                                                  end try
                                                  try -- remove this "try" if you want a warning if the location tag is empty
  --          set plce to "unknown"
                                                            set plce to value of IPTC tag "Image City" as rich text
                                                  end try
                                        end tell
                              end tell
                    on error
-- whatever you want to do in case of an error
                    end try
Regards
Léonie

Similar Messages

  • This is how to add extra Exif data to Aperture :-)

    Folks
    Often I need additional Exif data in Aperture - which is not available in the standard install.
    For example - exactly which lens did I use - not just a focal lenght - which might be any one of various lenses I have.
    Or - which focus point was used?
    The list is endless...
    If you are interested - go to this thread in dpreview
    http://forums.dpreview.com/forums/read.asp?forum=1017&message=22939488
    A neat combination of an AppleScript and ExifTool
    Go for it
    Brian

    Hi,
    I'm the "author", if you can call it that, since most of the script is, as someone earlier mentioned, Brett Gross' work. I was the one that glued exiftool to it and got it working with my Aperture setup. I am looking at the various problems that have popped up on dpreview and with personal correspondence and trying to find solutions.
    But it isn't easy. As Charles said, the Aperture dictionary isn't helpful in that regard. And with the flexibility that Aperture provides in naming is the curse here. And all the variables with versions, external edits, etc. It gets very complicated. But if you look at the thread on dpreview, someone has possibly found a way to query the SQL database to make it all work smoothly.
    It is very easy to do this stuff at import. I am just putting the finishing touches on an Automator action to import the files and add the EXIF data (it will even query GeoNames and add the city, state & country IPTC data if there is GPS data present in the file).

  • How can I export slideshows created in Aperture v3.3.2 from Mid-2009 MacBook Pro-17 to blank DVDs?

    (Fifth futile attempt in two hours, before I learned there was a Post webpage – I’m new to ApSuppCom - and after I learned that I am not allowed to update previous content, so I had to back out, make a few changes, and start over.)  How can I export slideshows created in Aperture v3.3.2 (complete with superimposed captions and music tracks) from Mid-2009 MacBook Pro-17 to blank DVDs ?  (Some other specs: Mac OS Lion 10.7.5; Capacity 499.5 GB;  Processor 2.8 GHz Intel Core  2 Duo; Memory 4GB 1067 MHz DDR3; Graphics NVIDIA GeForce 9400M 256MB)
    I cannot do a copy (export) without various error messages appearing and the inevitable stoppage occurring.  Always with the DVD Video Player final message reading, “Supported disc not available.” Advisors and Mac Geniuses at local Apple Stores have told me to try Roxio Toast.  When I visited the Roxio website, and found numerous other company products, the descriptions all seemed to suggest that most of the apps shown can easily export videos to DVDs, but nothing was said about finished digital slide shows being exported.  At future events soon,  I hope to be handing out these finished DVDs (free) to the people in them.   Any help will be greatly appreciated. A.Z.

    How can I export slideshows created in Aperture v3.3.2 (complete with superimposed captions and music tracks) from Mid-2009 MacBook Pro-17 to blank DVDs ?
    Aperture cannot burn slideshows to a DVD.  It only can export a video of your slideshow.
    In Aperture 3 you use the "Export" button in Aperture's slideshow project to render a video to a folder on your disk.
    Then you use iDVD or another program to burn a video DVD.
    I cannot do a copy (export) without various error messages appearing and the inevitable stoppage occurring.  Always with the DVD Video Player final message reading, “Supported disc not available.”
    Could you please describe the exact steps that are causing these error messages?
    How are you exporting your slideshow from Aperture? Which settings are you using? And how are you importing the video to iDVD or Toast to burn a video DVD?
    For more suggestions see Karsten Schlüter's user tip: How to create a video-DVD? (Macs without iDVD)

  • How can we export the data from OAF Page to Excel instead of .csv or .txt

    Hello,
    How can we export the data from OAF Page to Excel instead of .csv or .txt
    When i click on the export button it is exporting to txt file, But i need to export the data into Excel by default
    Please help me
    Thanks in advance
    Thanks,
    Raju
    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju
    Edited by: 1006649 on May 21, 2013 10:55 AM

    We have changed the below profile option to get the data in excel by default
    Profile Name Export MIME type
    Profile Code FND_EXPORT_MIME_TYPE+
    Existing Value: text/tab-separated-values+
    Change as: Excel
    Thank you,
    Raju

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem.
    After trying a lot to do it myself, finally decided to post here..
    I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet.
    It is working fine with a single table. The problem now is that i am unable to do the same with 2 tables.
    Because both the tables have same number of columns & column names.
    Below are 2 tables with column names:
    Table-1 (MONTHLY_PART_1)
    Table-2 (MONTHLY_PART_2)
    SL_NO
    SL_NO
    COMP
    COMP
    DUE_DATE
    DUE_DATE
    U-1
    U-1
    U-2
    U-2
    U-4
    U-4
    U-20
    U-20
    U-25
    U-25
    Since both the tables have same column names, I'm getting the following error :
    Error 402 at line 103, column 4
      alias required in SELECT list of cursor to avoid duplicate column names.
    So How can i export the data to excel which has 2 tables with same number of columns & column names?
    Should i paste the code? Should i post this query in 'SQL and PL/SQL' Forum?
    Help me with this please.
    Thank You.

    You'll have to *alias* your columns, not prefix it with the table names:
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id, b.id, a.val1, b.val1, a.val2, b.val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
      for rData in cData loop
    ERROR at line 18:
    ORA-06550: line 18, column 3:
    PLS-00402: alias required in SELECT list of cursor to avoid duplicate column names
    ORA-06550: line 18, column 3:
    PL/SQL: Statement ignored
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id a_id, b.id b_id, a.val1 a_val1, b.val1 b_val1, a.val2 a_val2, b.val2 b_val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
    PL/SQL procedure successfully completed.
    cheers

  • From Bridge To PS To Export - EXIF Data Lost

    Hi all,
    I'm wondering what happens to my EXIF data when I import a Canon RAW file via ACR from Bridge to PS. When I export the file as a JPG and then right-click the jpg properties, none of the camera data is recorded. Perhaps there is a tick-box I've just not ticked?
    Also, if I add keywords in Bridge, should they carry through the export process? I'm interested to know if it's possible to auto complete the keyword field in flickr when uploading an image.
    CS5 with W7 and Canon 5Dii RAW.
    Thanks in advance.

    Can you be a little more explicit about the exact steps you're taking?
    I just opened an image from Bridge into Photoshop by right-clicking a CR2 file, choosing Open In Camera Raw, then hitting the [Open] button in the Camera Raw dialog.  Then I did File - Save As - JPEG, and all the camera metadata was retained (per Explorer's Properties, Details tab).
    When you say "export", exactly how are you saving the file?  With File - Save For Web & Devices, there's a Metadata field that allows you to specify how little or how much to keep.
    -Noel

  • 3.4RC not exporting Exif data in jpegs?

    I just checked and there seems to be no Exif data in my exported jpegs, even though Minimize Metadata is not checked. Anybody else experiencing this? DId I miss some new setting or way of specifying this? Win 7 64-bit, 64-bit LR.

    In terms of the XMP standard, the EXIF schema properties have been omitted from the LR 3.4RC version of the image.  For example, the 3.3 version has the property XMP:DateTimeOriginal, while the 3.4RC version does not.  See below for all differences in the metadata.
    I think this may be a bug. The XMP standard was designed to encapsulate legacy metadata such as EXIF, and it was intended that the XMP metadata contain duplicates of the EXIF properties.  Unlike the EXIF standard, XMP allows multi-byte characters and time zones, so not exporting the XMP EXIF properties means that it won't be possible to export multi-byte characters and time zones.
    Differences in metadata:
    8d7
    < [Composite]     Date/Time Created               : 2011:04:09 13:03:22
    10d8
    < [Composite]     Digital Creation Date/Time      : 2011:04:09 13:03:22
    18c16
    < [Composite]     Thumbnail Image                 : (Binary data 12845 bytes, use -b option to extract)
    > [Composite]     Thumbnail Image                 : (Binary data 12854 bytes, use -b option to extract)
    22c20
    < [EXIF]          Copyright                       : ©2011 Eulogio Garcia / Dhananjaya
    > [EXIF]          Copyright                       : (C)2011 Eulogio Garcia / Dhananjaya
    26c24
    < [EXIF]          Exif Version                    : 0230
    > [EXIF]          Exif Version                    : 0221
    43c41
    < [EXIF]          Modify Date                     : 2011:04:25 20:34:48
    > [EXIF]          Modify Date                     : 2011:04:25 20:38:26
    50d47
    < [EXIF]          Software                        : Adobe Photoshop Lightroom 3.4
    53,54c50,51
    < [EXIF]          Thumbnail Length                : 12845
    < [EXIF]          Thumbnail Offset                : 870
    > [EXIF]          Thumbnail Length                : 12854
    > [EXIF]          Thumbnail Offset                : 828
    63c60
    < [File]          Current IPTC Digest             : f6e139c9a1abb4f443dbcad907844238
    > [File]          Current IPTC Digest             : c620bc8bc4f36f55110ec1c719189bf7
    67,68c64,65
    < [File]          File Modification Date/Time     : 2011:04:26 00:32:58-07:00
    < [File]          File Name                       : image_pjpeg.jpg
    > [File]          File Modification Date/Time     : 2011:04:26 00:33:13-07:00
    > [File]          File Name                       : image_pjpeg.good.jpg
    70c67
    < [File]          File Size                       : 143 kB
    > [File]          File Size                       : 144 kB
    102,103c99
    < [IPTC]          Application Record Version      : 4
    < [IPTC]          Coded Character Set             : UTF8
    > [IPTC]          Application Record Version      : 2
    106,108d101
    < [IPTC]          Digital Creation Date           : 2011:04:09
    < [IPTC]          Digital Creation Time           : 13:03:22
    < [IPTC]          Time Created                    : 13:03:22
    112,113c105,106
    < [Photoshop]     IPTC Digest                     : f6e139c9a1abb4f443dbcad907844238
    < [Photoshop]     Photoshop Thumbnail             : (Binary data 12845 bytes, use -b option to extract)
    > [Photoshop]     IPTC Digest                     : c620bc8bc4f36f55110ec1c719189bf7
    > [Photoshop]     Photoshop Thumbnail             : (Binary data 12854 bytes, use -b option to extract)
    116a110
    > [XMP]           Aperture Value                  : 16.0
    119a114
    > [XMP]           Camera Model Name               : Canon EOS-1Ds Mark III
    130c125,126
    < [XMP]           Creator Tool                    : Adobe Photoshop Lightroom 3.4
    > [XMP]           Creator Tool                    : Adobe Photoshop Lightroom 3.3
    > [XMP]           Custom Rendered                 : Normal
    131a128,129
    > [XMP]           Date/Time Digitized             : 2011:04:09 13:03:22.00-04:00
    > [XMP]           Date/Time Original              : 2011:04:09 13:03:22.00
    132a131,133
    > [XMP]           Exif Image Height               : 800
    > [XMP]           Exif Image Width                : 1200
    > [XMP]           Exif Version                    : 0221
    133a135,139
    > [XMP]           Exposure Compensation           : -1
    > [XMP]           Exposure Mode                   : Auto
    > [XMP]           Exposure Program                : Aperture-priority AE
    > [XMP]           Exposure Time                   : 2
    > [XMP]           F Number                        : 16.0
    136a143,151
    > [XMP]           Flash Fired                     : False
    > [XMP]           Flash Function                  : False
    > [XMP]           Flash Mode                      : Unknown
    > [XMP]           Flash Red Eye Mode              : False
    > [XMP]           Flash Return                    : No return detection
    > [XMP]           Focal Length                    : 21.0 mm
    > [XMP]           Focal Plane Resolution Unit     : inches
    > [XMP]           Focal Plane X Resolution        : 3957.71670190275
    > [XMP]           Focal Plane Y Resolution        : 3961.90476190476
    150a166,167
    > [XMP]           ISO                             : 100
    > [XMP]           Image Height                    : 800
    151a169
    > [XMP]           Image Width                     : 1200
    152a171
    > [XMP]           Legacy IPTC Digest              : C620BC8BC4F36F55110EC1C719189BF7
    167a187
    > [XMP]           Make                            : Canon
    169,170c189,192
    < [XMP]           Metadata Date                   : 2011:04:25 20:34:48-04:00
    < [XMP]           Modify Date                     : 2011:04:25 20:34:48-04:00
    > [XMP]           Max Aperture Value              : 2.8
    > [XMP]           Metadata Date                   : 2011:04:25 20:34:19.329+04:00
    > [XMP]           Metering Mode                   : Spot
    > [XMP]           Modify Date                     : 2011:04:25 20:38:26-04:00
    185a208
    > [XMP]           Resolution Unit                 : inches
    196a220
    > [XMP]           Scene Capture Type              : Standard
    203a228
    > [XMP]           Shutter Speed Value             : 2
    213c238
    < [XMP]           Version                         : 6.4
    > [XMP]           Version                         : 6.3
    217c242,245
    < [XMP]           XMP Toolkit                     : Adobe XMP Core 5.2-c004 1.136881, 2010/06/10-18:11:35
    > [XMP]           White Balance                   : Manual
    > [XMP]           X Resolution                    : 240
    > [XMP]           XMP Toolkit                     : Adobe XMP Core 4.2-c020 1.124078, Tue Sep 11 2007 23:21:40
    > [XMP]           Y Resolution                    : 240

  • How can we export table data to a CSV file??

    Hi,
    I have the following requirement. Initially business agreed upon, exporting the table data to Excel file. But now, they would like to export the table data to a CSV file, which is not being supported by af:exportCollectionActionListener component.
    Because, when i opened the exported CSV file, i can see the exported data sorrounded with HTML tags. Hence the issue.
    Does someone has any solution for this ... Like, how can we export the table data to csv format. And it should work similar to exporting the data to excel sheet.
    For youre reference here is the code which i have used to export the table data..
    ><f:facet name="menus">
    ><af:menu text="Menu" id="m1">
    ><af:commandMenuItem text="Print" id="cmi1">
    ><af:exportCollectionActionListener exportedId="t1"
    >title="CommunicationDistributionList"
    >filename="CommunicationDistributionList"
    >type="excelHTML"/> ---- I tried with removing value for this attribute. With no value, it did not worked at all.
    ></af:commandMenuItem>
    ></af:menu>
    ></f:facet>
    Thanks & Regards,
    Kiran Konjeti

    Hi Alex,
    I have already visited that POST and it works only in 10g. Not in 11g.
    I got the solution for this. The solution is :
    Use the following code in jsff
    ==================
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="text/csv; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    OR
    <af:commandButton text="Export Data" id="ctb1">><af:fileDownloadActionListener contentType="application/vnd.ms-excel; charset=utf-8"
    >filename="test.csv"
    >method="#{pageFlowScope.pageFlowScopeDemoAppMB.test}"/>
    ></af:commandButton>
    And place this code in ManagedBean
    ======================
    > public void test(FacesContext facesContext, OutputStream outputStream) throws IOException {
    > DCBindingContainer dcBindings = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    >DCIteratorBinding itrBinding = (DCIteratorBinding)dcBindings.get("fetchDataIterator");
    >tableRows = itrBinding.getAllRowsInRange();
    preparaing column headers
    >PrintWriter out = new PrintWriter(outputStream);
    >out.print(" ID");
    >out.print(",");
    >out.print("Name");
    >out.print(",");
    >out.print("Designation");
    >out.print(",");
    >out.print("Salary");
    >out.println();
    preparing column data
    > for(Row row : tableRows){
    >DCDataRow dataRow = (DCDataRow)row;
    > DataLoaderDTO dto = (DataLoaderDTO)dataRow.getDataProvider();
    >out.print(dto.getId());
    >out.print(",");
    >out.print(dto.getName());
    >out.print(",");
    >out.print(dto.getDesgntn());
    >out.print(",");
    >out.print(dto.getSalary());
    >out.println();
    >}
    >out.flush();
    >out.close();
    > }
    And do the following settings(*OPTIONAL*) for your browser - Only in case, if the file is being blocked by IE
    ==================================================================
    http://ais-ss.usc.edu/helpdoc/main/browser/bris004b.html
    This resolves implementation of exporting table data to CSV file in 11g.
    Thanks & Regards,
    Kiran Konjeti

  • How can I export my data to a 3D-CAD IGES-File?

    Is it posible to export my data from an array to an IGES-File? I want to show my Data in an Unix-Catia 4.2.2 System.

    > Is it posible to export my data from an array to an IGES-File? I want
    > to show my Data in an Unix-Catia 4.2.2 System.
    do you really need IGES ? if you are happy enough with polygons I recommend
    the STL format whihc is much simpler.
    How is your data "array" organized ? If you have only points, you'll need to
    mesh them first. Have a look to http://www.dynabits.com/sw/point_cloud.htm
    for a free software that does it.
    If you already have a triangular mesh, I suggest STL format instead of IGES.
    If you have 3D surfaces, I was considering doing this one of these days.
    I can help you on this, for free if it remains simple and general purpose...
    Philippe Guglielmetti - www.dynabits.com

  • Lightroom 4 Export - EXIF data missing

    I noticed that the EXIF data did not seem to be included in the jpeg file resulting from EXPORT.
    I have double checked to make sure that under the METADATA section to select "ALL" and have both boxes (Remove Location Info & Write Keyword as Lightroom Hierarchy) unchecked.
    Doing the same export in Lightroom 3 has no problem to include EXIF data in the JPEG file.
    I am running the MAC version of the released Lightroom 4. Thank you in advance.

    Hi Dorin, thank you for your reply. After reading your reply, I went back and checked my jpeg files carefully. You are correct that all the EXIF metadata are there.
    My statement of 'missing' EXIF data was based on my EXIF data did not show up after I uploaded my JPG files to pBase, while all still worked well with Lightroom 3. Uploading the same set of jpeg files to other photo site like Picasa, the EXIF information is all there. Also, when I import those jpeg files in Lightroom 4, t=all the EXIF metadat are there too. It implies that it is a problem with pBase having probelm reading the EXIF of jpeg file from Lightrrom 4. Not sure what is the difference in Lightroom preparing the jpeg files, but I believe this 'missing EXIF' problem is site specific (i.e. pBase).
    I will modfify the Topis to show pBase problem only if I can. Thank you.

  • How can I export the data that consultant have configured?

    I have installed the same systems at two server machine. The consultant have configured something in one server and the developers have developed some projects at the same server, after that, I want to export the data that the consultants configured without the developed projects and import it to another server. How?

    Certain objects can be put into an application designer project, and then exported to file or migrated to another environment. Examples include process scheduler server definitions, integration broken setup, security, and trees. Basically anything you can add through application designer using the Insert > Definitions into Project list. This is the better way but doesn't work for everything.
    Do you know specifically what was configured and what you need to export? There's a DMS script that lives under PS_HOME/script called mvprdexp.dms that lists the core PeopleTools tables, which might be useful if you do have write your own DMS.

  • Exporting EXIF data

    I just imported a batch of vacation photos with the EXIF location embedded in the photos. However, the info disappears when I export the photos.
    Is there any way to export photos and retain the EXIF info in the photo? I would like to share the photos with the other people who were on the trip with me. Thanks.

    How are you exporting?
    File -> Export: Kind: Jpeg and tick the box at 'Location Information'.
    Regards
    TD

  • How to batch change a date in aperture

    Is it possible to batch change a date in aperture the way I do it in iphoto (command option B)?  I dont want relative dates, I want a group of scanned pictures (negatives) to have the same date, but separated by one second.

    Dale,
    Aperture does not support this. I wrote a little Apple Script to adjust the data and time like iPhoto and posted it on my web page. You may have a look and take this as a starting point. I wrote the script last year; so it has only been tested with Aperture 3.2.4 and Lion, not with the current version: The script is here: Adjust Date and Time in fixed increments
    But no guarantees given for the current Aperture version 3.4.3.
    Regards
    Léonie

  • Export EXIF data

    Hello,
    I have just started using Lightroom to convert RAW images. Although this is a bit of a "nit", one of the frustrating issues with any
    of the various RAW image processors is the manor in which EXIF data is handled. It appears that Lightroom handles EXIF data
    somewhat differently when compared to other image processors.
    The issue is the application I use to generate photo albums (JAlbum)not picking up "Resolution" from JPG images
    produced by Lightroom. As an example please take a look at
    http://www.wideeye-photo.com/Just%20Things/Sand%20Frogs/slides/IMG_0031.html
    and
    http://www.wideeye-photo.com/Just%20Things/Sand%20Frogs/slides/IMG_0031-a.html
    IMG_0031 is produced with Lightroom. IMG_00031-a is produced with Canon DPP. You will notice that "resolution" is missing
    for the Lightroom image and is present for the DPP image. Also notice that for the Lightroom image, "Photographer" present
    but missing for DPP.
    I had not had a problem with EXIF data until I started using Lightroom to develop my RAW images. Is there a parameter or setting I'm missing somewhere?
    Thanks,
    Ron

    I have seen that Lightroom moves some information from standard EXIF fields to XMP. I don't remember if this is the case with resolution, but it may be the explanation if jAlbum does not read XMP.
    Henrik

  • How do you remove EXIF data from a video shot on an iPhone5s?

    I'm trying to remove location metadata from a video of my daughter before posting to YouTube and can't figure it out.  I tried opening the video in Adobe Premiere and Bridge and both don't display the location data for some reason, they fields are just blank.  But I can see the locaction data if opened in Quicktime or iPhoto, but neither program allows you to edit the EXIF data for some reason.  And any app I find seems to only work on photos and not videos.  Any thoughts?  I'd love to upload this video without revealing our exact location.  Thanks.

    Check out A Better Finder Attributes 5: Mac OS X Batch Date Changer for EXIF Photos, Files and Folders. It may do what you want.
    OT

Maybe you are looking for

  • Throwing custom faults

    Hi, I'm trying to catch timeouts and throwing a fault myself, so I can generify all kinds of exceptions into one fault. The problem is, even though I specify my throw as follows : <throw name="Throw_Fault" faultName="client:InvocationException" fault

  • Confirming allowing several dialog box permanently for an plug in.

    I'm using the InTranslator 4.0 plug-in. But can't find any way to permanently confirm to Firefox to allow all the necessary dialog windows. Now I have to manual allow them every time i run an translation whit spell check activated. I have an print sc

  • Blank Username and Password

    Hi, We have a compnay and users can login with a blank user name and password.  How can we resolve this please because of security reasons? Thanks.

  • Need to download drivers for canon MP 280 for macbook pro

    I need to download drivers for canon MP 280 for macbook pro how do i go ...

  • Illustrator layers not cropped

    Usually when I import a layer from Illustrator (CS4), that layer comes into AE (CS4) cropped to the exact dimensions of the element. Lately, no matter what I do, the element keeps importing as the size of the artboard. Even if I choose, "import > com