New Script for PE Tags-- iPhoto keywords

I haven't tried it yet, but there's a new script for getting your Windows PE tags into iPhoto as keywords. Use the Write Tags to File command in PE first.
http://scriptbuilders.net/files/iphotoiptckeywordimportexportutilities1.0.html

Oh, whoops, I just posted this in the Technical forum before I came here. Never sure which one to use.
This looks like the script a lot of folks were looking for.

Similar Messages

  • New Scripts for Bridge posted

    From John Nack's blog: http://blogs.adobe.com/jnack/
    New scripts extend Bridge CS4
    Ever wanted to convert just about any file to JPEG from Bridge, or to attach browsed files to email? Photographer/scripter/Bridge quality engineer David Franzen has your back, having posted a set of great scripts to the Adobe Exchange. He writes:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=20

    Please post the solution how did you solve and what was the exact issue so that if anyone faces the same problem in future they can easily find answer from your post.
    Regards,
    Lalit Mohan Gupta.

  • Scripts for Dates in iPhoto

    Hello!
    I am new to Applesript, and was wondering if there is any possible way to change the time and date information in iPhoto using a script. I need to change the dates and times by the same interval, for example, increase month by 4, day by 8, hour by 1, and day by -2.
    Is this possible. I've tried using the batch command in iPhoto, but it only changes the date

    I believe we are discussing the creation date specified by the camera, not the creation date specified by the file system. At any rate I still don't see a way to change it, and even if it could be changed iPhoto would probably have to re-import the image to reflect the change. Nobody really 'deserves' trouble, but it does seem fairly simple to manipulate iPhoto's Library xml and file structure, I just don't know if I want to dip my toes there while iPhoto is running. Merely popping open the xml file and attempting to save it prompted a warning that iPhoto had already since written and saved to the same file, which is worrisome.

  • Shortcuts or Scripts for repetitive tagging tasks

    Are there any scripts that I can attach to an icon in a toolbar to click just once to make remediating tagging less arduous? I'm constantly selecting an item, clicking on the >Options menu then click on the >Find selection from tag. Would love to assign this to a keyboard shortcut or click one icon. Or what do you know that I don't? I'm exhausted, my hand hurts, and I have hundreds of pages to go. Should I hire a programmer to do this? ACRObuttons was a hope but they're dead. Thanks so much, Community.

    You can automate a few document-wide things using an Action Wizard, for example set reading language, set tab order property, create bookmarks from structure, set open options, embed fonts using Preflight. I do not know of a way to automate tag remediation.

  • E17 SVN Builder, a new script for pacman to keep your E17 up to date!

    I created a script called E17 SVN Builder because of what it does: create packages of E17 direct from SVN using the same PKGBUILDs as the Arch snapshots do. It came around because I was bitten by the Settings panel bug, which was fixed in upstream a few days after the SVN snapshot was taken. I wanted an up to date E17 install, so I created this script. Do NOT use it if you want your E17 install to be stable(r?)!
    I just thought I would share this script since it works for me. Perhaps people could help me improve it?
    Anyway, the dependancies right now are:
    yaourt-git (I need it to fetch the PKGBUILDs for the images from CVS)
    svn (to fetch the E17 code)
    TODO:
    - I need to get rid of the dependancy on yaourt-git by extracting the code for fetching the PKGBUILDs with it.
    - I want to be able to use flags with this.
    License: GPLv3
    Version: 0.2
    #!/bin/sh
    # * E17-svn-builder *
    # * A script to build E17 directly from SVN *
    # * By smartboyathome *
    VERSION=0.2
    usage(){
    echo 'E17 SVN Builder'
    echo 'This is version '$VERSION
    echo 'For now, this is a very simple script. It will fetch and build the PKGBUILDs for you. It is recommend you create a new directory to run this in, as it will pollute a directory with tons of files and folders.'
    echo '-h, --help; Show this message.'
    while [ "$#" -ne "0" ]; do
    case $1 in
    --help)
    usage
    exit 0
    -h)
    usage
    exit 0
    esac
    done
    buildpkg(){
    echo 'Building '$_E17PKG'...'
    # Check if the package directory exists, and if not, create it.
    if [ -d $_E17PKG ]; then
    cd $_E17PKG
    else
    mkdir $_E17PKG
    cd $_E17PKG
    fi
    # Check if the PKGBUILD exists, and if not, get it.
    if [ -d PKGBUILD ]; then
    yaourt -G $_E17PKG
    else
    mv PKGBUILD PKGBUILD.old
    yaourt -G $_E17PKG
    mv PKGBUILD PKGBUILD.new | mv PKGBUILD.old PKGBUILD
    cmp -s PKGBUILD PKGBUILD.new || mv PKGBUILD.new PKGBUILD
    fi
    makepkg PKGBUILD
    mv *.pkg.tar.gz ../
    cd ../
    # Make sure there aren't any left over environment variables from a previous run or program. This keeps things clean. :)
    unset _EXTRA
    unset _E17PKG
    echo 'Would you like to build the e17-extra-svn packages as well? (y/n)'
    read _EXTRA
    # Remove all packages
    rm *.pkg.tar.gz
    echo 'Beginning to build e17-svn packages...'
    #--- Begin building eina-svn ---
    _E17PKG=eina-svn
    buildpkg
    #--- Begin building eet-svn ---
    _E17PKG=eet-svn
    buildpkg
    #--- Begin building evas-svn ---
    _E17PKG=evas-svn
    buildpkg
    #--- Begin building ecore-svn ---
    _E17PKG=ecore-svn
    buildpkg
    #--- Begin building embryo-svn ---
    _E17PKG=embryo-svn
    buildpkg
    #--- Begin building edje-svn ---
    _E17PKG=edje-svn
    buildpkg
    #--- Begin building e_dbus-svn ---
    _E17PKG=e_dbus-svn
    buildpkg
    #--- Begin building efreet-svn ---
    _E17PKG=efreet-svn
    buildpkg
    #--- Begin building e-svn ---
    _E17PKG=e-svn
    buildpkg
    echo 'Finished building e17-svn packages!'
    if [ $EXTRA="y" ]; then
    echo 'Beginning to build e17-extra-svn packages...'
    #--- Begin building exml-svn ---
    _E17PKG=exml-svn
    buildpkg
    #--- Begin building emprint-svn ---
    _E17PKG=emprint-svn
    buildpkg
    #--- Begin building engrave-svn ---
    _E17PKG=engrave-svn
    buildpkg
    #--- Begin building epsilon-svn ---
    _E17PKG=epsilon-svn
    buildpkg
    #--- Begin building esmart-svn ---
    _E17PKG=esmart-svn
    buildpkg
    #--- Begin building etk-svn ---
    _E17PKG=etk-svn
    buildpkg
    #--- Begin building ewl-svn ---
    _E17PKG=ewl-svn
    buildpkg
    #--- Begin building e-modules-extra-svn ---
    _E17PKG=e-modules-extra-svn
    buildpkg
    #--- Begin building elitaire-svn ---
    _E17PKG=elitaire-svn
    buildpkg
    #--- Begin building entrance-svn ---
    _E17PKG=entrance-svn
    buildpkg
    #--- Begin building exhibit-svn ---
    _E17PKG=exhibit-svn
    buildpkg
    echo 'Finished building e17-extra-svn packages!'
    fi
    echo ''
    echo 'All package building is complete!'
    echo 'It is recommended you restart E17 after installing these packages.'
    echo 'To do this, go to menu > Enlightenment > Restart;'
    echo 'If you cant, then issue this command to restart it:'
    echo 'enlightenment_remote -restart'
    echo ''
    echo 'Have a nice day!'
    # Unsetting our variables so that we aren't messing with anything else. Also keeps things clean. :)
    unset _E17PKG
    unset _EXTRA
    exit 0
    Last edited by smartboyathome (2008-12-21 21:10:47)

    UPDATE! This package has had a couple changes:
    - Repetitive stuff was condensed into one piece of code. Now, its much easier to read.
    - I implemented extra differently. Instead of using a flag (which for some reason always sent me into a loop, I need more practice with scripting ), I just ask the person running the script whether they want to build extra as well as the core e17-svn stuff. Now it doesn't build them all automatically.

  • A script for adding Tags based on search result

    Hello all fellow faithfuls of InDesign!
    I am looking at a challenge with my very basic (near to none) experience of scripting, that goes like this:
    I need a script that could search through my story/selection and look for patterns (such as four digits in a row, basic RegEx stuff) and add a specific Tag-element with some specific attributes and given values that would be taken from the found pattern.
    EXAMPLE: (Searching the text below)
    Product 7352     price 23,60
    Now the script would find: 7352 and tag it [7352] and give it attributes like RecordID = 7352 and Field = PRODUCTNR
    For the price it would find the 23,60 and give it the same RecordID = 7352 and Field = PRICE.
    How would I approach something like this?

    Hi AshishK15,
    Base on your code, I think the exception is threw in the code of Selection.Paragraphs(i).Range.Select.
    For your code, you are getting the all paragraphs of the document (iParCount), however you are using the Selection object to get all paragraphs, which is incorrect unless you select the whole document content.
    So, please modify the Selection to ActiveDocument.
    For i = 1 To iParCount
    ActiveDocument.Paragraphs(i).Range.Select
    If ActiveDocument.Paragraphs(i).Range.ListParagraphs.Count = 1 Then
    MsgBox ActiveDocument.Paragraphs(i).Range.ListFormat.ListLevelNumber
    MsgBox ActiveDocument.Paragraphs(i).OutlineLevel
    End If
    Next
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • HELP : Auto. Script for ID3 tags

    I have songs named in Chinese.
    I tried everything but iTunes never learnt how to read them.
    Anyways I have a new strategy, since all my mp3 files are named in this
    format : " 'ARTIST' - 'SONG' "
    for ex. if I have a mp3 file:
    " Ken - My Song.mp3 "
    ID3 Artist : Ken , Title: My Song
    I want the computer to recognize this format in the filename and change the ID3 automatically. Maybe by copy & pasting or whatever.
    This way, all my songs will be readable and no more converting between unicode or whatever.
    I know this can be done through Automator or some other program.
    But I have n0 knowledge in programming. Can anyone tell me where I could find an answer?
    Thanks and Regards

    I believe that in order for your deck to show this info, the RF transmitter used has to receive the info and transmit it. If Creative supported sending the info to transmitters, perhaps the transmitter manufacturers would support the transmission.
    I've heard that Creative, Microsoft and several others are working on a standard connector to digitally transfer music, UI, and control of devices to car decks for all non-iPod devices. This would be even better. Has anyone else heard of this?

  • Photoshop (Elements) Keywords to iPhoto Keywords

    I haven't tried it yet, but Rob from osxhints.com has written a new script for getting Photoshop keywords assigned as iPhoto keywords. If you are switching from Windows and have been using the Photoshop Elements Organizer's Tags, you can use this to move your tags to iphoto, too.
    In Elements, first use the Organizer's Write Tags to File command before you move your photos to the Mac, then run this script:
    http://scriptbuilders.net/files/iphotoiptckeywordimportexportutilities1.0.html
    EDIT You can also use it to assign iPhoto Keywords as IPTC metadata keywords for PS and other apps that use those.

    Thanks for the info Barbara!
    Lori

  • Iphoto keywords versus Aperture keywords

    I was happy to succesfully import my iPhoto library. But surprised that the keywords were distinct from Aperture keywords. That is, I have a keyword "Birds" in iPhoto, but when I go and add the keyword "Birds" (by typing it in the box) to a new photo, I now have two keywords, "Birds" and "Birds (iphoto)" which are distinct. I want them to be the same. How do I do that?

    As DaveyJ pointed out, the iPhoto keywords are in a sub-level.
    Your best course of action (this will take a while) is to create a smart album and set it to show all images with one of the keywords in the iPhoto group/level.
    Once Aperture shows you the applicable set of images, use the Keywords Control bar to add the non-iPhoto version of the keyword to all of the images; i.e., Select All, then click the keyword. With all of the images still selected, use the Keyboard Controls bar again and shift-click on the iPhoto version of the keyword. This will remove it from the selected images.
    You could write an AppleScript to help with this process. I've been experimenting and it can be done. You would use a Smart Album to gather the iPhoto keyword images together and then run the script to remove the iPhoto keyword and add the non-iPhoto keyword.
    Here's an example script (that works) to get you started:
    tell application "Aperture"
    -- set the target to the "Smart beetles" album at the top level of the library.
    tell album "Smart beetles" of folder ""
    -- get a list of the images in the album.
    set x to every image version
    -- move through the images one by one, deleting and creating the appropriate keywords
    repeat with i from 1 to x's length
    tell x's item i
    -- Note. if the keyword is top level, then the parents value is "".
    delete (every keyword whose name is "Australia" and parents is "Location")
    make new keyword with properties {name:"Sydney", parents:"Location"}
    end tell
    end repeat
    end tell
    end tell
    iMac Duo Core 2GHz 2GB   Mac OS X (10.4.6)  

  • News script in JSP HELLP!!!

    I am a beginer with JSP (i did something in PHP), i must do a news script for school and i don't have time to learn all about jsp. So cam someone tell mi the basics. I have the java and the tomcat server. I make a database in MYSQL but i dont know how to make it work with jsp.
    I must do something very simple a login and a form for the input of the newses.
    PS soooy for my english.

    See whetehr ethis helps. Yuo need to change the Driver Class for MySQL
    <HTML>
    <BODY>
    <%@ page import="java.sql.*" %>
    <%
    String strErrorMessage = " ";
    Connection conn = null;
    Statement stmt = null;
    if (request.getParameter ("n_entrada") != null)
    try
    Class.forName("com.jnetdirect.jsql.JSQLDriver").newInstance();
    conn = DriverManager.getConnection ("jdbc:JSQLConnect://<ServerIP>:Port/database=<dbname>/user=sa/password=sesame");
    stmt = conn.createStatement ();
    StringBuffer sbfQuery= new StringBuffer ();
    sbfQuery.append ("INSERT INTO destinatarios ");
    sbfQuery.append (" VALUES (" + request.getParameter ("n_entrada") + ",");
    sbfQuery.append ("'" + request.getParameter ("cod_entrada") + "')");
    stmt.executeUpdate (sbfQuery.toString ());
    strErrorMessage = "Cod. Dest. Successfull inserted";
    catch (Exception expGeneral)
    expGeneral.printStackTrace ();
    strErrorMessage = "" + expGeneral;
    finally
    if (stmt != null)
    stmt.close ();
    if (conn != null)
    conn.close ();
    %>
    <form method="get" action="Request.jsp">
    <table border="0" cellpadding="3" cellspacing="3" align="center">
    <tr>
    <td class="bolddark">N� Entrada :</td>
    <td><input type="text" name="n_entrada" class="formstyleShort" value=""</td>
    <td class="bolddark">C�digo Entrada:</td>
    <td><input type="text" name="cod_entrada" class="formstyleShort" value=""></td>
    </tr>
    <tr>
    <td colspan="4" align="left">
    <input type="submit" value="Inserir" class="formButton">
    <%-- Start of MR mr_smcoa_005 --%>
    </td>
    </tr>
    <tr>
    <td colspan="4" align="left">
    <FONT COLOR='RED'><B><%=strErrorMessage%></B></FONT>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>

  • I am trying to move my wife's iPhoto '08 library to my new iMac for iPhoto '11.

    I am trying to move my wife's iPhoto (2007) library on a Macbook to my new iMac for iPhoto '11.  First, when I opened iPhoto on the iMac it asked me to create a library, which I did.  Then I imported her photos via a wireless network to my "new" library.  However, when it finally finished importing, it had imported 3 copies of each photo from her library.  I deleted the "new" library and started over.
    Second, I opened iPhoto on the iMac and chose to use "other library."  I chose my wife's shared iPhoto library and it began transferring the photos to the new iMac (or so I thought).  This worked beautifully as it only brought over single photos and not 3 copies like discussed above.  After editing the new library and adding some photos from an old PC, I shut down iPhoto.  A few hours later I tried to open iPhoto on the iMac and it gave me the opening screen again with choices to create a new library or use a different library.  As it turns out, my wife's Macbook and been disconneted from our wireless network.  I was able to figure out that that unless my wife's Macbook is connected to the network then I cannot access the iPhoto library on my iMac.  I was under the impression that I had copied her library to my computer and that the photo files were now on the hard drive of the iMac.  So when her computer is offline I can no longer access the imported library.  I want her library to stay on the iMac as we plan to sell her Macbook.  As you now know, we cannot access her iPhoto library on the Macbook since she is running an older version of iPhoto.
    So, what I would like to do is to completely transfer the photos from her Macbook to my new iMac and be able to access them on the iMac regardless of whether she is on the network or not because we plan to sell her Macbook to a friend.  Thank you for any help you can provide.

    To move an iPhoto Library to a new machine:
    Link the two Macs together: there are several ways to do this: Wireless Network,Firewire Target Disk Mode, Ethernet, or even just copy the Library to an external HD and then on to the new machine...
    But however you do choose to link the two machines...
    Simply copy the iPhoto Library from the Pictures Folder on the old Machine to the Pictures Folder on the new Machine.
    Then hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Choose Library'
    and select the Library that you moved.  That's it.
    This moves photos, events, albums, books, keywords, slideshows and everything else.
    Your first option didn't work because you imported one Library to another. Every version and thumbnail is imported like a distinct photo, you lose all your Albums, Keywords etc., the link between Original and Previews is destroyed, the non-destructive editing feature is ruined and so on. In summary: it's mess.
    Your second option didn't work because you simply referenced her library on the old machine.
    Regards
    TD

  • How do I save my setup for Photoshop Elements 11 that I created for category - sub-category - Keyword Tags

    how do I save my setup for Photoshop Elements 11 that I created for category - sub-category - Keyword Tags  I would like to use the setup for other Photoshop Elements

    First are you going to use the same keyword/categories hierarchy in the same Elements version (or newer)? If so, using the backup/restore process will also restore your hierarchy.
    If you want to create the same hierarchy in an older Elements version, it's possible to save that hierarchy in a special text file and to restore it in the new catalog in the destination computer. It's also possible to restore it in another catalog in the same computer.
    Look at the title bar of the keywords panel. Next to the '+' sign on the right, you see a small icon which opens a menu offering the option to save or to restore the text file.

  • Make Picasa Web Albums tags from iPhoto keywords

    Anyone know why the "Make Picasa Web Albums tags from iPhoto keywords" option does not seem to work? I expected to see the keywords I added to my photo in iPhoto also in Picasa on the web after they have been uploaded.
    Downloaded and installed "Picasa Web Albums Uploader" version 1.3.1.680 from Google. Then from within iPhoto did a File > Export. The above option is shown on the "Picasa Web Albums" tab. I am using iPhoto 09.
    Thank you very much for your help.

    For help with the Picasa Web Albums Uploader, best to seek advice from the makers, after all, no one knows it better than they do.
    http://picasa.google.com/mac_tools.html
    Regards
    TD

  • How to change the address to new address for all pages in a script

    i created a script for my website against an IP address
    now i have to run the same script of web site against new IP address
    can i change programmitically the old ip address of all script pages to new ip address?
    or should i go manually by opening each and every page address properties and changing it to new ip address.
    any suggestions
    my visual script is having around 75 pages.
    having a visual script with that many pages is best practice?
    thanks in advance

    Hello Pasumarthi,
    If I understand your question correctly, the address contains an IP address that you need to change for the 75 pages..
    If you change the first address in the page, save the script and re-run the test this should fix the remaining 74 pages.
    ex: http://192.168.2.1/index.html (Old)
    http://202.116.25.1/index.html(New)
    If the url example above is this task you are going to resolve, this will take care of your issue.
    If you have 75 scripts that need the URL changed, and you have upgraded to 8.20, you can use the script updater utility to do this.
    Please let me know if this resolves your issue.
    Best Regards,
    Jim

  • Script for generate randomize administrator password which make log file to recorded new administrator password with associated computer name on it

    Hi
    I Need VDS script in order to change domain client local administrator password in my domain ,and put this script in startup script via group policy, but for security purpose  I want to randomize local administrator password and log new password
    set for each computer on a text file, I want to over write the old password of eachcomputer in log file with new one in order to have the update log file ,my support team some times need administrator password for troubleshooting.
    I need a script for generate randomize administrator password  which make log file to recorded new administrator password with associated computer name on it and each time new administrator password set it over write the old record on
    the log file and update the content of log file automatically.
    Regards

    Hi
    I need a script for generate randomize administrator password  which record new password on a  log file with associated computer name  and each time new administrator password set for a computer it  over write the old record
    on the log file and update the content of log file automatically.
    Regards

Maybe you are looking for

  • Got 3G coverage yet not connecting to web

    My Iphone 4 has stopped connecting to the internet but I have got 3G coverage. The loading cirle moves as normal yet the page doesn't load and a message comes up ; cannot open page - safari cannot open the page because it is not connected to the inte

  • TV preview monitor shows "wriggled" top part

    I just bought a separate TV monitor, connected to Firewire via my Sony DVcam When I play back sequences, the top 10% of the TV screen 'wriggles' The rest of the picture is fine. I use a S-video connection between the DV cam and the TV monitor andI us

  • Crash Numbers in 4 Easy Steps

    This took a LONG time to isolate! I've been trying to create my own version of an invoice with Numbers. I worked on it for hours, and then saved... and Boom! UNexpectedly quit! Corrupted saved file to boot. I can reproduce this every time by doing th

  • Iphoto 11 + pse 9 editing

    I have iphoto 11   pse 9 ,when I edit using pse as external editor and save simply clicking save ( not save as) when I try to reopen the photo a big black exclamtion mark appears. What's happening?

  • Sporadische Fehler mit MySQL-Datenbank

    Folgender Fehler tritt spradisch beim Loggen der Daten in eine MySQL-Datenbank auf: Error - An error occurred calling 'LogResults' in 'ITSDBLog' of 'zNI TestStand Database Logging' An error occurred executing a statement. Schema: Copy of MySQL Insert