Would a 347 MB file be slow? Auto save and auto type turn off?

I am doing an art inventory and add jpegs of the art. I don't resize them they range from 750k to 3MB. I guess if it is slowing the program down i should? It currently is 267 rows by about 18 columns.
Thanks in advance.
Oh can I turn off auto save and auto type? That may help. How do I do that?

Done.
Enter Scrip Editor
paste the posted script
File > Save > as Script  on the Desktop
Move the script to the folder :
Macintosh HD:Library:Scripts:Folder Action Scripts:
CAUTION, you will be asked to enter your pasword.
Create a folder to do the job. I named mine Normalized. I created mine on the Desktop where it's easy to reach.
Go to :
Macintosh HD:Library:Scripts:Folder Actions:
Double click the alias :  Configure Folder Actions
Below the left column, click
navigate to select your new folder
Below the right column, click
select the script image - normalize400.scpt
After that, drag and drop a picture file onto your folder.
The original will be move in the folder Originals (isn’t it original ?)
and a reduced copy  400 x height will be stored in the folder Normalized images.
And now, here is the script :
--{code}
Image - Normalize
This Folder Action handler is triggered whenever items are added to the attached folder.
The script rotates the image counter-clockwise (left).
Copyright © 2002–2007 Apple Inc.
You may incorporate this Apple sample code into your program(s) without
restriction.  This Apple sample code has been provided "AS IS" and the
responsibility for its operation is yours.  You are not permitted to
redistribute this Apple sample code as "Apple sample code" after having
made changes.  If you're going to redistribute the code, we require
that you make it clear that the code was descended from Apple sample
code, but that you've made changes.
modified by Yvan KOENIG (VALLAURIS, France)
2011/12/08
This version normalize pictures so that
(1) the greater dimension become the width one (rotate left if needed)
(2) this greater dimension is ruled by the property maxWidth defined below.
property maxWidth : 400
-- set it to fit your needs
property done_foldername : "Normalized Images"
property originals_foldername : "Original Images"
property newimage_extension : "jpg"
-- the list of file types which will be processed
-- eg: {"PICT", "JPEG", "TIFF", "GIFf"}
property type_list : {"TIFF", "GIFf", "PNGf", "PICT", "JPEG"}
-- since file types are optional in Mac OS X,
-- check the name extension if there is no file type
-- NOTE: do not use periods (.) with the items in the name extensions list
-- eg: {"txt", "text", "jpg", "jpeg"}, NOT: {".txt", ".text", ".jpg", ".jpeg"}
property extension_list : {"tif", "tiff", "gif", "png", "pict", "pct", "jpeg", "jpg"}
on adding folder items to this_folder after receiving these_items
          tell application "Finder"
                    if not (exists folder done_foldername of this_folder) then
  make new folder at this_folder with properties {name:done_foldername}
                    end if
                    set the results_folder to (folder done_foldername of this_folder) as alias
                    if not (exists folder originals_foldername of this_folder) then
  make new folder at this_folder with properties {name:originals_foldername}
                              set current view of container window of this_folder to list view
                    end if
                    set the originals_folder to folder originals_foldername of this_folder
          end tell
          try
                    repeat with i from 1 to number of items in these_items
                              set this_item to item i of these_items
                              set the item_info to the info for this_item
                              if (alias of the item_info is false and the file type of the item_info is in the type_list) or (the name extension of the item_info is in the extension_list) then
                                        tell application "Finder"
  --set name of this_item to "YK#" & (text -4 thru -1 of ("0000" & i))
                                                  my resolve_conflicts(this_item, originals_folder, "")
                                                  set the new_name to my resolve_conflicts(this_item, results_folder, newimage_extension)
                                                  set the source_file to (move this_item to the originals_folder with replacing) as alias
                                        end tell
  process_item(source_file, new_name, results_folder)
                              end if
                    end repeat
          on error error_message number error_number
                    if the error_number is not -128 then
                              tell application "Finder"
  activate
  display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                              end tell
                    end if
          end try
end adding folder items to
on resolve_conflicts(this_item, target_folder, new_extension)
          tell application "Finder"
                    set the file_name to the name of this_item
                    set file_extension to the name extension of this_item
                    if the file_extension is "" then
                              set the trimmed_name to the file_name
                    else
                              set the trimmed_name to text 1 thru -((length of file_extension) + 2) of the file_name
                    end if
                    if the new_extension is "" then
                              set target_name to file_name
                              set target_extension to file_extension
                    else
                              set target_extension to new_extension
                              set target_name to (the trimmed_name & "." & target_extension) as string
                    end if
                    if (exists document file target_name of target_folder) then
                              set the name_increment to 1
                              repeat
                                        set the new_name to (the trimmed_name & "." & (name_increment as string) & "." & target_extension) as string
                                        if not (exists document file new_name of the target_folder) then
  -- rename to conflicting file
                                                  set the name of document file target_name of the target_folder to the new_name
                                                  exit repeat
                                        else
                                                  set the name_increment to the name_increment + 1
                                        end if
                              end repeat
                    end if
          end tell
          return the target_name
end resolve_conflicts
-- this sub-routine processes files
on process_item(source_file, new_name, results_folder)
  -- NOTE that the variable this_item is a file reference in alias format
  -- FILE PROCESSING STATEMENTS GOES HERE
          try
  -- the target path is the destination folder and the new file name
                    set the target_path to ((results_folder as string) & new_name) as string
                    with timeout of 900 seconds
                              tell application "Image Events"
  launch -- always use with Folder Actions
                                        set this_image to open file (source_file as string)
                                        set {oldW, oldH} to dimensions of this_image
                                        if oldH > oldW then
                                                  set {oldW, oldH} to {oldH, oldW}
  rotate this_image to angle 270.0
                                        end if
                                        set |échelle| to maxWidth / oldW
                                        if |échelle| < 1 then scale this_image by factor |échelle|
  save this_image as JPEG in file target_path with icon
  close this_image
                              end tell
                    end timeout
          on error error_message
                    tell application "Finder"
  activate
  display dialog error_message buttons {"Cancel"} default button 1 giving up after 120
                    end tell
          end try
end process_item
--{code}
Yvan KOENIG (VALLAURIS, France)  jeudi 8 décembre 2011 21:25:33
iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
My iDisk is : <http://public.me.com/koenigyvan>
Please : Search for questions similar to your own before submitting them to the community

Similar Messages

  • How can I continuously auto-save and auto-name the JPEG files with a controlled time interval

    Hi,
    I am newly involved in some Labview projects that out of my knowledge. I am trying to save multiple JPEG images from a live imaging task to a folder in the computer hard disk every certain minutes. I'd like to name these files with the date and time (eg. Img_06012011_1635. jpg).Then, after hours long image capturing, I can have all the image files in a neat order.
    My goal is to have the jpg files auto saved and auto-named with the data and time at that moment. I also need to control this waiting time between each savings.
    Could you please show me some hints about this? See the vi attached, I know I need to do something on the "write path" part on the up right corner. Thanks!
    Solved!
    Go to Solution.
    Attachments:
    capture.vi ‏28 KB

    Thanks, Steve. When I built up a path with the date and time info and send them to the WriteJPEG File.vi like you mentioned, it stopped saving any files into the folder. Do you think this is the problem from my while loop?Could you show me if there is any other secret functions that restrains the file saving?
    I am planning to save the image files every 30 secs,for example, and then I can have a bunch of jpg files with their unique names after hours long image acquisition.
    I appreciate you kindly help!
    Attachments:
    capture(updated).vi ‏29 KB

  • The auto save function will not turn off.

    While opening some files, I get- "This document was not closed properly, and some of your changes weren't saved. Do you want to recover these changes or discard them?
    Niel helped me to figure out that this was happening because the save option and recent items option was checked in the appleworks preferences. I unchecked the "auto save" and "recent Items" options in appleworks preferences>General>files settings window and It seamed to work for awhile but now the problem is back.
    I don't know why, but the "Auto Save" folder inside the appleworks User Data folder, which is inside the Documents folder is still saving data.
    Can someone please help?
    Marco

    Greetings Peggy,
    Nice write up link! I deleted "appleworks 6 preferences" in home file>library>Preferences>Appleworks folder (and the com.apple.appleworks.plist). Then turned appleworks back on and went to preferences>general settings and unchecked the "auto save" and "recent Items" options in appleworks preferences. I noticed the "make default" option button didn't light up. Do you think that is a problem?
    The "document was not closed properly" problem happens about every two days or so. I haven't been able to duplicate what ever I'm doing. I'll wait and see, and let you know.
    Thank you very much.
    Marco

  • Auto-Save and Auto-Recovery

    I hope the is a differnence between auto-save (as listed in you document properties) and Auto-Recovery (as set in Prefs). I would like some "protection" but I don't want flash saving over my file unless I tell it to save. I got burn last night while "experimenting" and and did a "revert" only to find that flash had saved over my file, what a pain.  I went to find the "recovery" file only to not find one anywhere. My search on the net are conflicted with wheather or not these 2 features are the same. In my case both items where checked and both set to 10min (the default). soooo....
    Please tell me that Auto-Recovery is different, is that it doesn't save over my file, ie it keeps a real back-up someplace, AND where i can find this "recovery" file. ?
    This feature seems strange, why not do a std auto back-up to a user selected number of versions in a user selected location ?
    Thanks
    Joel

    Thanks. After poking around for a while I kinda figured this out. I was just glad to find out I could get some kind of "back-up" function from Auto Recovery, because "Auto Save" is a nightmare. I can't understand where anyone would want to use this feature at all. Anything that saves over what your working on before your ask for the file to be saved is looking for trouble. I found it out the hard way. I had "auto Save" on and after messing around trying a few different things, none of which worked or I liked, I thought I would simply close and re-open the original file only to find "auto save" had saved over my original file. I can't see any place where this feature would be anything but a pitb. If they want a auto save feature it should be saving versions of the original (up to a user specified number of instances) in the seperate folder. Never under any curcumstances should the original file be saved over unless the users presses SAVE. Auto recovery would be more useful if it didn't erase everytime you restarted the app. Flash needs to look at the back-up and versioning systems that AE and PPro use.
    It's one of those things that bother you about the whole "suite" concept. Adobe owns all these apps and while some of them do play well together to an extent, for the most part it is still a collection of indiviuals. While there have been some changes to get the "look" of the apps to be close, the actual functioning of the UI in the differnt apps isn't where it needs to be. There needs to be a Suite "czar" that makes all the apps do std UI things the same using the same keys etc. for example AE, PPro, Flash, Photoshop, fireworks, all use different keys to zoom in/out or of your image/stage/comp/viewer/monitor window ie main workspace or to enable the mouse "wheel" for zooming.  PPro still refuses to use the spacebar to toggle the hand tool like every other "suite app". anyway. a std system for back-up and versioning is need across the suite.
    thanks
    Joel

  • Auto save and auto recover of front panel controls/indicators values

    i just want that when i exit from the VI's front panel all controls and indicators current values get saved automatically and when i get back into this vi,those values get recovered automatically.
    Like if i incremented numeric control value from 1 to 5 , when i exit from the vi the value 5 get saved automatically and when i get back into the vi ,it shows the recovered value 5 to me automatically.
    best regards

    I'm Back
    I was mistaken when I said the you could select to save either the controls or indicators or both in the Open G Vi's, They are hard wired for both. I made minor changes to these VI's for my app.,  because I only needed the controls to be saved. The example I am providing uses the Modified VI's, but I've also included the originals.
    Modified
    Read Panel from INI.vi
    Write Panel to INI.vi
    Originals
    Read Panel from INI.vi
    Read Panel from INI__ogtk.vi
    The ability to select either or both could easily be implimented into these Vi's using a case selector and an enum wired as an input
    Controls only
    Indicators Only
    Both
    Incase you don't have the OpenG toolkit I've provided the necessary files for this example to function
    Extract the zip file to your User.lib directory then open Usage.vi
    Hope this helps you
    Georges Janveau
    Attachments:
    Config File Usage.zip ‏861 KB

  • After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    Try using one of these video players. VLC usually works with most files.
    Video Player - Divx
    Video Player – Flip4Mac
    Video Player - VLC

  • My IMac 21.5 mid 2010's HD is going bad on it, after upgrading to mavericks it slowed way down and after it shut off and now won't come back on, would Seagate Barracuda ST2000DM001 2TB Serial ATA Hard Drive - 7200RPM, 64MB, SATA 6Gb/s worked?

    My IMac 21.5 mid 2010's HD is going bad on it, after upgrading to mavericks it slowed way down and after it shut off and now won't come back on, I call apple support and they told me to bring it in but the nearest store is about two hours away. They said I need it to erase my hard drive but I have too many family pics on it.
    would Seagate Barracuda ST2000DM001 2TB Serial ATA Hard Drive - 7200RPM, 64MB, SATA 6Gb/s worked on it? I could replace the internal and get an enclosure for the original until I get the pics out of it?
    Please advise, it's like five years of family pics I don't wanna loose them and I am worried.
    Thanks
    Al Florez

    A Brody,
    I really apprecate your very quick respond, Its too late to back up as of now, my hard drive wont load at all so I cannot follow your instruction to back it up. Learn a hard lesson but I will from now on following your link.
    Also my hard drive it is not available to do the free exchange program.
    I read the OWC instruction on how to replace the drive I was just wondering if the 2TB would work on it instead of the 1 TB they offer, I specifically asked for the Seage Barracuda because I had great experiences with it on PCs.
    Again, Thank you

  • Auto Save and Versions not working

    Auto Save and Versions are not working in pages or numbers.  I've worked on a project for over five minutes when I "Xed" out the drop down box opened up and asked if I wanted to save.  Any ideas why?  Also, how do you open up versions?

    There is the problem with that sentiment. I don't like the loss of "save as" either. I think the new save/duplicate paradigm has more steps and is poorly implemented to boot. Yet, people complain far more about Versions and Autosave than they do about "save as"? Why on earth would anyone complain about Autosave? There is no user interface change involved with Autosave. It is entirely in the background. If you don't like Autosave, you are free to randomly delete files from your machine and from Time Machine if you want. I don't see what the point of that would be, but it would give you the same effect of not having Autosave. There is more a user impact to Versions, but it still a really cool feature. Why would you not want to have access to old versions of your document? It isn't going to eat much disk space. The last time someone complained about disk space usage by versions I calculated that it would take 38 years for them to run out of space due to Versions. If you don't want to use Versions, don't click on the Versions tools. Problem solved.
    I don't want people lumping clear losers (like no more "save as") with clear winners like Autosave and Versions.

  • Auto Save and Versions

    Where can I control Auto Save and Versions? I can't find it in System Settings.
    Can I control it by terminal commands?
    On http://www.apple.com/macosx/what-is/ Apple claims:
    Versions creates a new version of a document each time you open it and every hour while you’re working.
    While here http://www.apple.com/macosx/whats-new/auto-save.html Apple claims:
    Forget about manual saving and forge ahead with confidence. Auto Save in OS X Lion automatically saves your work, while you work, during pauses and every five minutes. And Lion saves changes in the background so you're never interrupted with progress bars.
    So I wonder every five minutes or every hour? Would be nice to make sure on each Mac itself whether it auto-saves every five minutes or every hour and to actually allow its user o set the frequency.

    It does both. It saves your work in the current version every 5 minutes. Every hour, it creates a new version of the document.
    I haven't searched for any version settings, yet.

  • After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recordings

    After I upgraded to OSX Mountain Lion, QuickTime no longer auto names and auto saves, my recorded files.

    HI,
    In Message Menu > Preference > Accounts you should at least have the iMessage Account (Which is Enabled) and th Bonjour one that most likely is not.
    After that if you had iChat type AIM valid Screen Names or Jabber IDs in an earlier OS then the System Preferences > Mail, Contacts and Calendars should list them and have them set to be used with Messages.
    There is a vague chance that you have not set these up yet (you can do it in Messages or Mail, Contacts and Calendars)
    Once you have a t least one other "Account" other than th iMessage one in Messages then the Buddy List option will appear next to CMD and 1 in the Window menu list.
    NEXT
    If you go to the General Section of the Messages Preferences you can unlink several Buddy lists if you have them (By default they are shown as one gathered Buddy list)
    I Have several Accounts logged in (AIM valid and Jabber ones)
    Uploaded with Skitch!
    And I separate them in to individual lists which then gives me this in the Window Menu
    Uploaded with Skitch!
    8:06 PM      Thursday; August 2, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Auto Save and Open

    I am using Windows 7 with Adobe Reader XI. I'm building a website that has help documents that I would like to Auto save and open with Adobe Reader XI. I am unsure if this is a user feature or a publisher feature. I want to have these documents auto open and run in Internet Explorer 11 specifically. I've tried to add the site as a trusted site and just about all the other steps.
    Thank you for your help!

    Depending on the IE configuration, clicking on a PDF link will either
    save the PDF to a temp folder, then open it in the Adobe Reader add-on
    save the PDF to a temp folder, then open it in the Adobe Reader application

  • Difference Between Auto Lockbox and Auto Receipts......

    Hello All,
    Please expain me, What is the Difference Between Auto Lockbox and Auto Receipts?
    Regards,
    Muthu

    We would appreciate if you can add apps version ? and module name before posting in forum.
    Please check below links for you queries:
    Auto lockbox
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/ar/lokbox.htm
    automatic receipts
    http://docs.oracle.com/cd/A60725_05/html/comnls/us/ar/autorc04.htm
    thanks

  • BBPSC04_ Disable auto conf and auto inv from SC check status

    Hello,
    I would like to disable the auto confirmation and auto inv buttons from the shopping cart check status only and the user should be able to do confirmation from Confirm goods/services.
    kindly suggest how can we acheive this?
    Thanks & Regards,
    James

    Hi
    you can try ith BADI
    BBP_SCREENVARIANT ( BUS2121) .
    You can replace screen variant bbp_search_sc with your user defined screen variant YBBP_SEARCH_SC in the method of get_screenvariant_search.
    Hope that you got it.
    regards
    Muthu

  • Auto keyframe and auto transition not working

    auto keyframe and auto transition not working and I have a creative cloud, in addition the auto keyframe works in the getting startel lessons....

    In order to use these you need to have the autokey frame and transition selected
    OFF   ON
    and have the first key checked then move the playhead to the new position and it should add the transition.
    Did you try this and it is not working?.

  • Files and font sync turn off working with InDesign..

    Hi
    Files and font sync turns off when I work with InDesign directly on the CC disctop files folder. It use to be ok to work directly in sync mode, but apparently not any more. I guess the problem is the backup file that InDesign creates, that consist of signs behaps not allowed (?). It use to work for me, but not any more..?
    Do anyone els have the same problem?
    Jørgen

    Hi again
    Thanks for your reply. In the Creative Cloud Help page I get, it says: "Save and close the file when you're done editing it and the error goes away.", but I actually have to reconnect. The bad thing about this is that it turns off the font sync as well when I was working.
    I have temporarely solved the problem, simply be changing the name of the file I'm working on. I have tryed to reproduce it with a different name - all with leagal signs according to the page mensioned above - with no success (which is positive). Then I tryed to move the file to a new folder within the folder I was working on, and then it  worked without problem. Strange.
    I guess, if I run in to the same problem again, I will just try to change the name.
    Thanks
    J

Maybe you are looking for

  • My macbook air camera does not work

    I have a macbook air 11" mid 2011   running OSX Yosemite 10.10.1   I need to use the facetime camera, but it says no camera is available.  what I have done (6 hours or research and grief later): After reading a plethora of forums,  I have tried: Migr

  • How to Send iPhone Email in Languages Other than English

    Those who need the ability to send email in various languages may wish to check out this online app: http://pointatme.com/keyboards/ Currently it covers French, German, Italian, Spanish, Russian, Czech, Greek, Brazilian, and Swedish.

  • Viewing options in Application Library

    I'm sorry if this is nothing new, but I didn't find anything good on it. Probably because there are so much threads here and the search doesn't help that much.. Anyway, I'm a little annoyed by the limited viewing option in the application library. Yo

  • Cannot use external Display with MacBook Pro 13

    i bought new mac pro 13 , i bought new macbook pro 13 & tried to connect to external Samsung screen (Sync Master SA300) but failed ihave VGA adapter & VGA cable please can any body help me with detailed steps how i can solve this problem

  • Microsoft Access, Netbeans & Java... Strange IO runtime error.

    Hello, Im using java to interface an Access database. From Netbeans, everything compiles, and runs perfectly. However, when I build the project and run the jar, it cant find the database. I diagnosed it and found that it it is something to do with th