Can I rename items sequentially using applescript?

I have hundrends of photos in a desktop folder that I would like to rename with part of the name being a numerical sequence. Is there a way to automate this, perhaps using applescript? Thanks.
PowerBook G4   Mac OS X (10.3.9)  

Yes, but it would be a lot easier to download a freeware utility called Renamer4Mac (www.macupdate.com or www.versiontracker.com.)
Why reward points?(Quoted from Discussions Terms of Use.)
The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

Similar Messages

  • Can I chart in Numbers using AppleScript

    I have just started learning AppleScript so that I can automate some business processes and save myself some time. Because of better design and ease of use I use the latest version of iWork and don't even have Office installed on my Mac, nor do I want to install it. However, one area I cannot work out is how to automate the creation of a chart in Numbers using AppleScript.
    Is this possible? If so, how, and if not, why not?

    Answering questions like : how may we do this or that, is what we are supposed to try to achieve in this forum.
    Answering questions like yours : why this or that, can't be seriously done here.
    Here you ask to end users like you. We don't belong to the teams designing the apps.
    We just may try to guess.
    To build tables and charts Pages and Numbers share the same pieces of code so there is no technical reasons able to explain the omission.
    So I guess that, as Pages is in its 4th version, designers had more time available to embed features in the AppleScript support than those working upon Numbers.
    What's funny is that there is a minimal support for charts in Pages (as well as a microscopic support for tables) but there is a correct support for tables (which may be enhanced) in Numbers but nothing for charts.
    Honestly, I really don't think that the difference is huge.
    I posted my script too fast.
    I forgot to insert the handler allowing us to bring a sheet at front which is required to apply GUIScripting.
    It's probably the main drawback of the need to use GUIScripting here.
    I don't waste time trying to apply some edit tasks to the charts.
    I just wanted to fill the gap between Pages and Numbers about scripting charts.
    Here is an enhanced version.
    --{code}
    --[SCRIPT add_charts]
    Yvan KOENIG (VALLAURIS, France)
    2011/08/27
    on run
              my activateGUIscripting()
              tell application "Numbers" to tell document 1
                        set dName to its name
                        set sName1 to name of sheet 1
                        set sName2 to name of sheet 2
    Select sheet 1 of document 1
    The doc name may be passed by a number but the sheet must be identified by its name .
    As it's just a sample, in the first call I reference the doc by its index *)
                        my selectSheet(1, sName1)
                        tell sheet sName1 to tell table 1
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 2 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 9) -- Scatter chart
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 2 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 3) -- Bars
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 2 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 4) -- Stacked Bars
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 3 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 20) -- 3D Pie
                        end tell
    Select sheet 2 of document 1
    This time, I reference the document by its name *)
                        my selectSheet(dName, sName2)
                        tell sheet sName2 to tell table 1
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 2 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 9) -- Scatter chart
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 2 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 3) -- Bars
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 2 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 4) -- Stacked Bars
    Always define the selection before creating a chart *)
                                  set selection range to range (name of cell 4 of column 3 & " : " & name of cell 8 of column 3)
                                  my selectSubMenu("Numbers", 5, 4, 20) -- 3D Pie
                        end tell --sheet 2…
              end tell -- Numbers…
    end run
    --=====
    on parleAnglais()
              local z
              try
                        tell application "Numbers" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    on activateGUIscripting()
      (* to be sure than GUI scripting will be active *)
              tell application "System Events"
                        if not (UI elements enabled) then set (UI elements enabled) to true
              end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    on selectSheet(theDoc, theSheet)
              script myScript
                        property listeObjets : {}
                        local maybe, targetSheetRow
                        tell application "Numbers"
      activate
                                  set theDoc to name of document theDoc (* useful if the passed value is a number *)
                                  tell document theDoc to set my listeObjets to name of sheets
                        end tell -- "Numbers"…
                        set maybe to theSheet is in my listeObjets
                        set my listeObjets to {} -- So it will not be saved in the script *)
                        if not maybe then
                                  if my parleAnglais() then
                                            error "The sheet “" & theSheet & "” is unavailable in the spreadsheet “" & theDoc & "” !"
                                  else
                                            error "La feuille « " & theSheet & " » n’existe pas dans le tableur « " & theDoc & " » ! "
                                  end if -- my parleAnglais
                        end if -- not maybe
                        set maybe to 5 > (system attribute "sys2")
                        tell application "System Events" to tell application process "Numbers"
                                  tell outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of window theDoc
                                            if maybe then (* macOS X 10.4.x
    '(value of attributes contains 0)': '(value of attribute "AXDisclosureLevel" is 0)' sometimes works in Tiger, sometimes not.
    The only possible instances of 0 amongst the attributes are the disclosure level of a sheet row and the index of the first row, which represents a sheet anyway.
    Another possibility is '(value of attribute -1 is 0)', which makes me uneasy. *)
                                                      set targetSheetRow to first row where ((value of attributes contains 0) and (value of first static text is theSheet))
                                            else (* macOS X 10.5.x or higher *)
                                                      set targetSheetRow to first row where ((value of attribute "AXDisclosureLevel" is 0) and ((groups is {}) and (value of first static text is theSheet)) or (value of first group's first static text is theSheet))
                                            end if -- maybe…
    Handler modified to accomodate sheets requiring a lot of time to get the focus
                                            tell targetSheetRow to set value of attribute "AXSelected" to true
                                            set cnt to 0
                                            repeat (*
    Must way that Numbers becomes ready to receive the value *)
                                                      try
                                                                tell targetSheetRow to set value of attribute "AXDisclosing" to true
                                                                exit repeat
                                                      on error
                                                                set cnt to cnt + 1
      delay 0.5 -- half a second
                                                      end try
                                            end repeat
                                  end tell -- outline…
                        end tell -- "System Events"…
                        tell application "Numbers" to tell document theDoc to tell sheet theSheet to tell table 1
                                  with timeout of 20 * 60 seconds (*
    WITH this setting, the script will be able to wait 20 minutes for the asked value.
    I hope that the document will not be so huge that this delay prove to be too short. *)
                                            value of cell "A1"
                                  end timeout
                        end tell -- "Numbers"…
                        tell application "System Events" to tell application process "Numbers" (*
    Do the trick one more time to be sure that the sheet is open *)
                                  tell targetSheetRow to set value of attribute "AXDisclosing" to true
                        end tell -- "System Events"…
    End of the modified piece of code
              end script
      run myScript
    end selectSheet
    --=====
    my selectSubMenu("Pages",6, 4, 26)
    ==== Uses GUIscripting ====
    on selectSubMenu(theApp, mt, mi, ms)
              tell application theApp
      activate
                        tell application "System Events" to tell process theApp to tell menu bar 1 to ¬
                                  tell menu bar item mt to tell menu 1 to tell menu item mi to tell menu 1 to click menu item ms
              end tell -- application theApp
    end selectSubMenu
    --=====
    useful to get the indexs of the triggered item
    my select_SubMenu("Numbers", 6, 4, 3) (* Table > Chart> Bars *)
    on select_SubMenu(theApp, mt, mi, ms)
              tell application theApp
      activate
                        tell application "System Events" to tell process theApp to tell menu bar 1
                                  get name of menu bar items
    01 - "Apple",
    02 - "Numbers",
    03 - "Fichier",
    04 - "Édition",
    05 - "Insertion",
    06 - "Tableau",
    07 - "Format",
    08 - "Disposition",
    09 - "Présentation",
    10 - "Fenêtre",
    11 - "Partage",
    12 - "Aide"}
                                  get name of menu bar item mt
      -- {"Tableau"}
                                  tell menu bar item mt to tell menu 1
                                            get name of menu items
    01 - "Feuille",
    02 -  missing value,
    03 - "Tableau",
    04 - "Graphique",
    05 - "Figure",
    06 - "Zone de texte",
    07 - "Fonction",
    08 - "Ligne de connexion",
    09 - missing value,
    10 - "Remplissage",
    11 - missing value,
    12 - "Rangs copiés",
    13 - "Colonnes copiées",
    14 - missing value,
    15 - "Date et heure",
    16 - "Nom du fichier",
    17 - "Numéro de page",
    18 - "Nombre de pages",
    19 - missing value,
    20 - "Commentaire",
    21 - "Lien",
    22 - "Saut de colonne",
    23 - "Équation MathType",
    24 - missing value,
    25 - "Choisir…"}
                                            get name of menu item mi
      --> "Graphique"
                                            tell menu item mi to tell menu 1
                                                      get name of menu items
    01 - "Colonnes",
    02 - "Colonnes empilées",
    03 - "Barres",
    04 - "Barres empilées",
    05 - "Ligne",
    06 - "Couches",
    07 - "Couches empilées",
    08 - "Diagramme circulaire",
    09 - "Nuage de points",
    10 - "Mixte",
    11 - "2 axes",
    12 - missing value,
    13 - "Colonnes 3D",
    14 - "Colonnes 3D empilées",
    15 - "Barres 3D",
    16 - "Barres 3D empilées",
    17  - "Linéaire 3D",
    18 - "Couches 3D",
    19 - "Couches 3D empilées",
    20 - "Circulaire 3D"}
                                                      get name of menu item ms
      --> "Barres"
      click menu item ms
                                            end tell
                                  end tell
                        end tell
              end tell -- application theApp
    end select_SubMenu
    --=====
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) samedi 27 août 2011 15:19:15
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Can't rename audio clips using letters - only numbers

    Hi There,
    ALl of a sudden I can't rename audio files in the "Audio" tab - it only accepts numbers no letters.
    Anyone else seen this?
    Am running Motion 4.0.3 on 10.6.7
    Any help would be much appreciated.
    Cherrs
    Ben

    Um, buddy, you're typing in a time code field.  You can only "reaname" in the Browser window.

  • Can't Delete Items in Use

    I wanted to delete a download off my laptop. I put the download in the trash and tried to empty it. All it said was 'The operation can’t be completed because the item “...” is in use.'
    The reason I want it to be deleted is because it takes up lots of space and I don't want it.
    I don't know how to put the item out of use. Please help me with this problem.

    Either you have a disc image still mounted, an installer you have not quit, or the application itself is still running or a combination of these.

  • Can a library item be used to personalize a page title?

    Hi, I do not think this is possible, but is there a way to use a library item to personalize part of a page title? Thanks in advance, Mark

    In that case, you should have your <title> tags within a Template Editable Region so you can use a unique title on every page.
    In addition, you should make good use of Heading tags <h1> <h2> and <h3> within editable regions to promote keyword rich content that tells search engines & humans what your pages are about.
    Google's SEO Starter Guide (PDF)
    http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Can't rename a file using File.renameTo(...)

    Hi,
    I have a servlet, RenameFile, that receives audio file via HTTP Post and writes it to /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav. Then it creates directories under /alert_messages directory based on the timing parameters that it get. Finally, it renames /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav to /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV. RenameFile runs fine when it runs by itself (ONLY one Tomcat, jakarta-tomcat-4.1.30, is running). However, RenameFile fails to rename the /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav to /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV when it runs in a Linux box that jboss-3.2.1_tomcat-4.1.24 is also running. In this box, TWO versions of Tomcat are running at the same time. I set the /alert_messages directory with �chmod �R 777� and run jakarta-tomcat-4.1.30 as tomcat user. RenameFile fails the rename operation. But, it creates the /alert_messages/2005/06/22/22/00/ directories.
    It seem like RenameFile can create directory but can�t create file in the /alert_messages directory when both version of tomcats are running at the same time.
    Can it be due to both the jakarta-tomcat-4.1.30 and the jboss-3.2.1_tomcat-4.1.24 versions are running at the same time in one Linux box?
    Can this be Jboss prevented the operation?
    I did not receive any io exception!!!
    Any help in this issue is greatly appreciated.
    Debug listing from the RenameFile;
    - originalFilename: recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.toString(): /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.getName(): recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.length(): 122986
    - file /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV
    - file NOT renamed /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV
    File Listing in the /tmp directory create by RenameFile;
    -rw-r--r-- 1 tomcat tomcat 122986 Jun 22 07:33 recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    Directoy Listing in the / directory with �ls �la�;
    drwxrwxrwx 3 tomcat tomcat 4096 Jun 22 07:28 alert_messages
    Directory created by the RenameFile with �ls -la /alert_messages/2005/06/22/22/00�;
    drwxr-xr-x 2 tomcat tomcat 4096 Jun 22 07:33 .
    drwxr-xr-x 3 tomcat tomcat 4096 Jun 22 07:33 ..
    Out put from catalina.out;
    !!!!! Can Read the old File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Write the old File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Not Read the new File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Not Write the new File !!!!!!!!!!!!!!!!!!!!
    !!!!! renameTo return false !!!!!!!!!!!!!!!!!!!!
    Code That rename a file:
      public synchronized String renameAlertMessageFile(String oldFileName,
                                String newFileName)
                throws SecurityException, NullPointerException
        File oldFile = null;
        File newFile = null;
        String result = null;
        StringBuffer myNewFileName = null;
        boolean renamed = false;
        try {
          int indexStringValue;
          int newFileLength;
          int indexOfPeriod;
          int indexOfLastUnderScore;
          int lengthOfExtension;
          boolean  Contin = true;
          String sNumber = null;
          String indexString = null;
          myNewFileName = new StringBuffer(newFileName);
          oldFile = new File(oldFileName);
          newFile = new File(myNewFileName.toString());
          if (oldFile.canRead() == false) {
            System.out.println(" !!!!!  Can Not Read the old File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Read the old File !!!!!!!!!!!!!!!!!!!!");
          if (oldFile.canWrite() == false) {
            System.out.println(" !!!!!  Can Not Write the old File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Write the old File !!!!!!!!!!!!!!!!!!!!");
          if (newFile.canRead() == false) {
            System.out.println(" !!!!!  Can Not Read the new File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Read the new File !!!!!!!!!!!!!!!!!!!!");
          if (newFile.canWrite() == false) {
            System.out.println(" !!!!!  Can Not Write the new File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Write the new File !!!!!!!!!!!!!!!!!!!!");
          renamed = oldFile.renameTo(newFile);
          if (renamed == false) {
            System.out.println(" !!!!!  renameTo return false !!!!!!!!!!!!!!!!!!!!");
        } catch (NullPointerException ex) {
          // Throw the same exception so that the caller may catch the
          //   exception and log the error
          System.out.println("NullPointerException For The New Dest File Name");
          ex.printStackTrace();
          throw ex;
        } catch (SecurityException seEx) {
          System.out.println("SecurityException For The New Dest File Name");
          seEx.printStackTrace();
          // Throw the same exception so that the caller may catch the
          //   exception and log the error
          throw seEx;
        } finally {
          if (renamed == true)
            return myNewFileName.toString();
          else
            return null;
      } // End renameAlertMessageFile

    Hi,
    Thank you for replying to my message. The servlet has been running for me for the last 12 months. However, it was running by itself without the Jboss-tomcat running on the same box. Can this be the catalina.policy file in the jboss-tomcat version restricted the rename operation. We are not allowed to write file under the umbrella of J2EE. But the servlet did not run within Jboss-tomcat. This really gets me thinking that something is not working correctly. Perhaps tomcat did not has the permission to write on the /alert_messages directory, again it did created the subdirectories under the /alert_messages.
    Any idea of what is going on?

  • Can I turn off sharing using applescript

    Is it possible to write AppleScript that will turn iTunes sharing on and off?  I would like to be able to do this so that it's easier to turn that on and off when I carry my laptop around (I don't always want to share my iTunes library with everyone in the hotel where I am staying!).

    Alicia,
    Go into the settings>icloud on the iPhone and select to turn off contacts it will ask you if you want to keep or delete the contacts select keep then you can edit the contacts on the iPhone. 

  • Opening Items sequentially in Finder

    How can I open items sequential from the finder?
    I want to rename items that are in a specific order, but automator opens them in any order it wants and then renames them in a different order.
    I have Quicktime files named 01-XXXX, 02-XXXX, 03-XXXX, etc. through 09-XXXX. When I highlight them all and then double click it will open them all, but they will open in a weird order like 01, 05, 07, 09, 02, 08, 06, 03, 04. Why is that?

    Well here's a guess:
    They open in an odd order because while they might start opening sequentially they actually vary in how long they take to load - because they are different sizes, have different components or somesuch.
    If you want to rename fies and find that Automator isn't working for you, check out FileList (it's freeware.)
    http://www.petermaurer.de/filelist/
    Does batch renaming very well, and doesn't need to open them to do it.
    Regards
    TD

  • Can't rename file under Subversion control.

    CS5 - Unless I'm missing something you can't rename a file (using dreamweaver to do so) and have it maintain it's connection to subversion. For example, if I rename a file using Dreamweaver, edit it, then go to "Commit" it, I get an error "File is not under Subversion Control". What is the correct way to rename a file in CS5 under subversion control?
    This is a serious deficit.

    Saving the file under a different name creates all sorts of problems. Especially since all the history of the changes are lost. DW provides a "rename" command but it doesn't update the files svn metadata. If you use the rename command it doesn't warn you that you will loose the connection to the repository.
    This must be a bug because an equivelent version of Tortise SVN DOES allow you to rename a file and preserve all the history. I just found this out and am using Tortise SVN to do the renaming. It's the same SVN version as DW so it updates the metadat just fine and it preserves the history of the previously named file.
    This is a bug in DW or a serious omission.

  • Can't rename file with Applescript

    Hi,
    I'm a programmer but I'm new to Automator and Applescript. I am trying to rename pdf files based on a specific line of its content but I don't succeed. I created a service that exports the text from the pdf to a file. Then I use applescript to read that specific line from the file, then another applescript to rename the pdf to that string. Every step works except the rename part. When I tell Finder to rename the file it stops with the error: "The operation can't be completed because there is already an item with that name." This is not true, but I keep getting this error message no matter which file I try it with.
    The odd thing is that if I set varName to some constant like
    set varName to "METEOR CEE Kft..pdf"
    it works like a charm. So I figured maybe
    item 1 of input & ".pdf" = "METEOR CEE Kft..pdf"
    is false. But that is not the case, I tested it in the script and they are equal.
    What am I missing?

    I think that the problem is that there is a lot of invisible characters in the text file when Automator extracts a PDF to plain text (open the file in a text editor and turn on "view invisible characters", or use cat -e in Terminal)
    I've gotten around this is the past by extracting to a RTF and then using textutil to convert to txt
    Try this Automator Workflow:
    The bash script is:
         textutil -convert txt "$1"              # Convert from RTF to TXT    
         n=$( sed -n '9 p' "${1%.*}.txt" )         # extract line 9 fron text file
         mv "${1%.*}.pdf" "${1%/*}/$n.pdf"     # Rename file
         rm "$1" "${1%.*}.txt"                         # Clean-up RTF and TXT files

  • How can I change the font size of an outgoing instant message using Applescript?

    Text copied into Messages.app from a web page is often too small to read. Is there a quick way to boost the font size using Applescript?

    HI,
    I have spent some time looking at the Mix Message Case.scpt in Hard Drive/Library/Scripts/Messages and also Crazy Message Text.scpt in the same Scripts Folder but then the Mail one.
    Both are Apple versions.
    The Mix Case one is set in Messages > Preferences > Alerts
    Set the top drop down to Sent Message
    Enable the Applescript items and chose the Mix Case item.
    It will look something like this in the current Font and size you have set.
    ThEn aGaIn
    Obviously you don't want all the bit to make the font change between upper an lower case but it does have the option to use it with the Sent Message and it also uses the entry in the text field as a String.
    The Mail Crazy Message one  opens a dialogue box when run.
    it has a default phase and some Upper and lower limits to the size that will be used.
    the Dialogue allows you to change the phrase and also "Set Prefs" to altert the font sizes.
    The result is a text palce in a new Mail items and the font and size changes to look like this:-
    Picture
    It will look different everytime and the Font for each character  and the size of each is randomised.
    Although I have tried sticking in a line to change the size to anything other then my set font in the Mixed Case one I can't get it to work.
    In some cases I get an Script error in Messages  (It seems to think I am setting a Font called "10")
    At other times it just says it can't set it buit still does the Mixed Case bit.
    My hope was to change the size and then reduce the requirement for the "intercaps" routine.
    I have other emails about new posts so I will anwser them and then spend some more time on this.
    9:01 PM      Thursday; June 13, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Can you RENAME footage to be imported (using metadata)...without transcoding?

    Is there a way, or a program in the suite that can rename all the files using the file's metadata (namely the date and time it was shot) that we plan to import without transcoding them? They are AVCHD files (.MTS files)... For years we've transcoded to prores proxy and then eventually to ProRes422 when final edit is locked for export, but since Premiere handles native avchd files (.mts) pretty well now, I'd rather not have to transcode and save some hard drive space. Transcoding doesn't appear to offer any benefits over editing natively anymore, right (for basic editing with basic color correction)?
    So is there a program (prelude? bridge?) that I can use to access all the mts files and rename them by the date and time it was shot so that I can take all 5 or 6 SDHC cards and combine them and have them all listed in chronological order? Right now I end up with either a folder for each card, or if I try to combine all the clips, I end up with a bunch of files with the same name (eg. 00000.MTS, 00001.MTS, etc...) since that's how they were named coming out of the camera on their respective card.
    Please advise. Thanks!

    jamesp2 wrote:
    If you've got a moment, try this, assuming you're on Windows:  shoot a few clips, copy the entire file structure to disk, navigate to the "stream" folder, open it, highlight all the files, right click on the first one, select "rename", rename it (say, with the date& time shot), and execute.  All the highlighted files will be renamed to that time and date, but incrementally numbered ,(1), (2), (3), etc. in sequence.  So each file now has the same root name (date and time), but is numbered sequentially after that.  No duplicate names.
    Now, using the Media Browser, import those clips.  Then go back to the stream folder and see if PPro created .xmp files for each imported clip.  If so, it would appear you have metadata.  If not, no metadata, because PPro couldn't find any after renaming.
    I'm on a mac. But I still tried a few things after reading your post...
    First, I copied two existing SDHC card's folders to a new location so I could mess with them. I went in and renamed all the clips 2 different ways:
    1) For one folder I just renamed them straight from the "stream" folder (although on a mac I don't think you can rename them all at once using Finder (which is mac's "search app"). So I did one at a time and then went back to Media Browser and they did not appear anymore. I click on the PRIVATE folder and nothing appears (before renaming, all the files would show except the "duplicate spanned clips" as discussed above). So that didn't work.
    2) Using Finder, I navigated to the stream folder on my 2nd copy of the original SDHC card and then I right-clicked and selected "open with" and selected Adobe Bridge. Bridge opened up that whole folder with all the clips (including the duplicate spanned clips). I renamed them there using date/time, etc. I went back to Media Browser and they also did not show up now. So...instead of using Media Browser, I just imported the whole folder into the project panel. The clips now did populate into the project panel with the new names.
    The new clips generated .cfa and .pek files but did NOT generate .xmp files. Only if I did NOT rename the files did it generate .xmp files.
    Not sure what all this means. I could just transcode to rename, or use clipwrap/prelude workaround like in post #11, or do my 2nd method above using Bridge and just deal with no XMP files (not sure how that will affect anything?)...or hope for another alternative.

  • How can I create an infinitely refilling draggable item in Cocoa-Applescript, Xcode?

    It's hard to explain. The only example I can give it how you can infinately drag buttons from Xcode Editor into a window, except instead of a button, I need a custom view, and instead of a window, I need a verticle list. How can I do this using AppleScript-ObjC, in Xcode?

    NSTableView (or just NSScrollView) can be used, but you need to define what you are dragging - see Drag and Drop Programming Topics.

  • The 'Shuffle' function on my iPod Classic not longer works on my iPod or in my vehicle.  It worked prior to syncing in iTunes using my Macbook.  Now I can only play music sequentially.  Can anyone assist?

    The 'Shuffle' function on my iPod Classic no longer works on my iPod or in my vehicle (2012 Acura TL).  It worked prior to syncing in iTunes using my MacbookPr .Now I can only play music sequentially.  Can anyone assist?

    Reset or restore the device.
    tt2

  • How can I use Applescript to copy a file's icon to the clipboard?

    Hello,
    How can I use Applescript to copy a file's icon to the clipboard?
    Thanks.
    Lennox

    there is no way to do that that I know of. but you can extract an icon of a file to another file using command line tool [osxutils|http://sourceforge.net/projects/osxutils]. you can then call the relevant command from apple script using "do shell script".

Maybe you are looking for