Automator Script to move GPS data out of iPhoto

Hi All,
I've been looking for ways to get my photo library out of iphoto, and do so with all of the GPS data I added through the iPhoto interface and I have a solution. Unfortunately I have to enter commands one file at a time (and I have 12000 photos!). I was hoping some Automator experts here might be able to help me out.
My plan is this:
1.     Export "Original" files, sorted by Event Name.
2.     Export jpegs with location data included in to a separate but itentical directory tree.
3.     Use the command line tool "exiftool" to move GPS data from each file to the original.
This will preserve my RAW files, and inlcude the data I want. I've made it work one file at a time with the following command:
exiftool -overwrite_original_in_place -tagsFromFile ~/Pictures/iPhoto\ Export\ \-\ jpeg/Event\ Name/001.jpg -gps:all ~/Pictures/iPhoto\ Export\ \-\ RAW/Event\ Name/001.NEF
So essentially I need an Automator script to take the output of an "ls" command with fill directory ftree for each file, put that in as the first argument, then change the file name and directory tree from jpeg to RAW and put that in as the econd argument, and run it for 12000 files. Anyone have any ideas?
Thanks a ton to anyone who can respond.

That's correct. Although the project file might suggest otherwise, the physical project structure for the initial Creator release is fixed, patterned after the Jakarta source structure http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/source.html
Importing existing project structures is likely to become a priority in future updates/releases.

Similar Messages

  • Automator script to move photos to shared photo stream in iPhoto?

    Is there anyway to automatically add new photos, as they are being imported, into a shared photo stream? They default to the main photo stream, which the client will not be subscribing to. If not within iPhoto itself, is there anyway to create an Automator workflow that will do this automatically? The client wants an elegant solution.
    Here is the process that I would like to accomplish. A photo is taken with a point and shoot containing an Eye-Fi card. The photo is sent to iPhoto, where it is added to the shared photo stream. The client can view the photos taken at the site, but not worry that his personal photos from his iPhone will end up back on the work computer where this process began. (He will turn off the "My photo stream" slider on his iPhone).
    Since I can find no way to get the photos taken from the camera to default to the shared photo stream, can Automator move these photos to that photo stream throughout the day?

    I've got a few hundred photos to add for each shared photo stream so I don't want to go individually adding them, there must be an easier way.
    Have you tried to share only a few photos at a time? When I am sharing a small number of photos all it once, it works.
    You may be hitting one of the limits for sharing:
    My Photo Stream and iCloud Photo Sharing limits  http://support.apple.com/kb/HT4858

  • Want to Strip GPS Data from Photos

    Does anyone know an easy way to get iWeb to strip the GPS data out of photos being published as part of the Web pages? The box in the iPhoto preferences to include location data in published images is unchecked, but this only seems to affect MobileMe galleries, not iWeb.
    Steve

    Sorry, I should clarify. I am dealing with my daughter's pages, and don't use iWeb that much myself. I realize the PNG images on the regular pages don't have this issue. The issue is if there is a photo page and sharing is allowed so visitors can download an image, the downloaded JPG file has the GPS coordinates in the Exif data. We would like to allow sharing, but get rid of the GPS Exif data without undue hassle (exporting and re-importing images, etc. etc.)
    Steve

  • Help creating a script to move users in and out of an OU based on a time limit

    Here's my scenario: we currently have OUs based on the locations of our facilities, we also have a sub-OU(?) underneath it for users that need a group policy applied to them where whitelist applications allowed to run. From time to time we have need to pull
    users out of that sub-OU for a short period of time to let them run applications they normally wouldn't be able to and won't need to run long term. Sometimes we also forget to add these people back into that policy controlled sub-OU because we get busy do
    other things. Server is 2008 R2.
    Here's what I'm looking for: A script that prompts for the users name, pulls that user out of the sub-OU, puts them in the main OU but only for 24 hours. After that time limit is up, a script/command runs that puts the user back in the policy controlled
    sub-OU. I'm thinking a PS script would be the best way to do this.
    Research: Looking at these posts here and here I'm
    thinking I should be able to Frankenstein something together but I have very limited PS scripting experience.
    Can anyone help me create this?

    You've probably figured this out, but we're not typically in the business of writing complete solutions for people. With that said, there are projects I find particularly interesting, such as this one, where I am willing to help get someone started if they
    are willing to take the time to work through the examples and learn from them.
    You have two requests - one is a script that prompts for a user it then moves to a different  location in Active Directory. The second request is a way to move them back without manual interaction. This will require an automated task (scheduled task)
    that will run at select times during a day.
    Here's the first script (1/2): The first two lines set two different variables. The first line sets the $OUPath variable to the SubOU. The second line prompts for a user and, once a user is entered, sets that user to the $User variable. It then runs the
    first try-catch, attempting to replace the $User variable with the data returned from the Get-ADUser cmdlet. Notice the use of the -Properties parameter. By default the modified date and the extensionAttributes are not returned. We will be using the modified
    date so we can be certain that 24 hours passes before we move them back (see part 2/2). Including extensionAttribute13 will ensure we only move users out of the OU if they were moved in by the script. Note: The modified date on a user in AD is changed when
    it is moved from one OU to another. If the user cannot be located in the first try-catch it will say it cannot locate the user in Active Directory. If it can locate it, it will set the $User variable, as described so far, and then move on.
    In the second (or, nested) try-catch we split the user's DistingusihedName at the first comma so that we have two parts. We use the second part (that doesn't include their CN) and see if that matches the $OUPath variable. If it does match then that user
    has already been moved. If it doesn't match then we 1. Move the user, 2. Replace extensionAttribute13 with the string 'MovedUser,' and 3. Output that the user has been moved.
    $OUPath = 'OU=SubOU,OU=MainOU,DC=mydomain,DC=com'
    $User = Read-Host -Prompt 'Enter SamAccountName'
    try {
    $User = Get-ADUser -Identity $User -Properties Modified,extensionAttribute13
    try {
    If ($User.DistinguishedName.Split(',',2) -eq $OUPath) {
    Write-Output -Verbose 'User already moved.'
    } Else {
    Move-ADObject -Identity $User.DistinguishedName -TargetPath $OUPath
    Set-ADUser -Identity $User.SamAccountName -Replace @{extensionAttribute13='MovedUser'}
    Write-Output "'$($User.SamAccountName)' has been moved."
    catch {
    Write-Output "'$($User.SamAccountName)' cannot be moved."
    catch {
    Write-Output -Verbose "Unable to locate '$User' in Active Directory."
    The second script (2/2): Here we also set a couple variables - one is the SubOU's DistinguishedName where we want to return the user and the other is the all of the users from the MainOU. Foreach user in $Users we check if their extensionAttribute13 is set
    to 'MovedUser' and if their modified date is greater than or equal (-ge) to 24 hours. If it is, the script will move the user, clear extensionAttribute13, and let us know the user was moved. If for some reason your $OUPath variable is wrong, the script will
    run the catch portion of the only try-catch we used in this script. Again, you'll have to schedule Task Scheduler to run this script. Good luck!
    $OUPath = 'OU=MainOU,DC=mydomain,DC=com'
    $Users = Get-ADUser -Filter * -SearchBase $OUPath -Properties Modified,extensionAttribute13
    Foreach ($User in $Users) {
    $TimeSince = New-TimeSpan -Start $User.Modified -End (Get-Date)
    If ($User.extensionAttribute13 -eq 'MovedUser' -and $TimeSince.Hours -ge 24) {
    try {
    Move-ADObject -Identity $User.DistinguishedName -TargetPath $OUPath
    Set-ADUser -Identity $User.SamAccountName -Clear extensionAttribute13
    Write-Output "$($User.SamAccountName) has been moved."
    catch {
    Write-Output "$($User.SamAccountName) cannot be moved."
    } Else {
    Write-Output 'No Users to move.'
    If you decide to use this, be sure to change the paths you use for the $OUPath variables. Also, if you're using this with PowerShell 2.0, you will need to use the Import-Module cmdlet to import the ActiveDirectory module. In versions above 2.0 it will be
    imported automatically if you try to use an AD cmdlet.
    Edit: Typo - Get-ADUser property

  • Help with Automator Script for QuickTime Pro Movie Conversion from Vado

    All my videos from my Creative Vado do not show up in iMovie 09 initially on import. By trial and error, I have discovered that the old version of QuickTime Pro 7 ($29.95) will convert them to .mov files that can be seen by iMovie 09 once the converted videos are imported back into iPhoto.
    I am (very) new to mac things, and it looks like in theory I could use Automator to handle to conversion process, and perhaps even the re-import into iPhoto. Does anyone have any suggestions on how to go about this? Where would be a good site to post this as a project that I could pay some one to help me, provide an automator script/workflow?
    Are any other solutions available? Buy Final Cut etc?
    PS (Rant): One of the reasons I bought a MacBook Pro and iLife was to take advantage of what I thought was supposed to be Apple's superior multimedia handling. It seems ludicrous to me that with a MacBook Pro running the latest software (10.6.4), and using the latest versions of iLife, I'd have to buy an old version of QuickTime to convert my videos so that I could manipulate them in iMovie. Sigh.

    MPeg Stram clip will export files which are compatible with iMovie '09. It (iMovie )can import the following.
    DV
    AIC
    Motion-JPEG
    Photo-JPEG
    MPEG-4 (Supported profiles)
    H.264 (Supported profiles)
    Apple Animation (Movie '09 only)
    Apple Video (iMovie '09 only)
    iMovie '08/'09 will not accept files containing extraneous data tracks such as:
    'Tween
    Text
    Chapter
    Closed Caption
    Secondary audio such as AC3
    etc.
    iMovie '08/'09 Will not accept files that rely on proprietary/third-party components such as
    DivX
    WMV
    XviD
    etc.

  • Writing commands to get specific data channels in the output report via script or automated script generation..

    In my project I have to make certain calculation and then get the data plotted in the given report template. I am using automated script for this. My script is doing all the calculations and then it not selecting and drag-dropping the selected channels on the report template. Its saving the blank report template.
    I am struggling to get the data for specific channels plotted by using the script. I need the selected channels to be plotted on this report template and then get it saved.
    Any help will be deeply appreciated. Thanks
    Solved!
    Go to Solution.

    Hi LaxG,
    Brad is absolute right. It is possible to create your whole layout via script.
    If you have loaded  the example report layout you can copy these lines to create a new line in your plot. This is the recommended object oriented way.
    call Report.Sheets("Blatt 1").Objects("2D-Axis1").Curves2D.Add(e2DShapeLine, "anyName")
    Report.Sheets("Blatt 1").Objects("2D-Axis1").Curves2D.Item("anyName").Shape.XChannel.Reference               = "[1]/Zeit"
    Report.Sheets("Blatt 1").Objects("2D-Axis1").Curves2D.Item("anyName").Shape.YChannel.Reference               = "[1]/Geschwindigkeit"
    For performance reasons it's recommended to use the it like this.
    dim oLine
    set oLine = Report.Sheets("Blatt 1").Objects("2D-Axis1").Curves2D.Item("anyName").Shape
    oLine.XChannel.Reference               = "[1]/Zeit"
    oLine.YChannel.Reference               = "[1]/Geschwindigkeit"
    Like Brad mentioned it is much easier, that you have a stored template of your report with all setings and customisations already done.
    You open this layout file and have stored the names of your calculated channels. When you are doing this with a script they always have the same name and belong to the same group.
    Now you can customize the references of the line items.
    Kind Regards,
    Philipp K.
    AE | NI Germany

  • I need an automator script to play a folder of movies

    I have a folder of quicktime movies. I have a Mac Mini with Lion. I have a TV. I need an automator script to grab the list of movie files from the folder and play them full-screen, one-by-one and then loop through the process to continue playing them, unattended, all day.
    I cannot get the proper steps in automator to accomplish this (seems to me it should be easy) job.
    Any ideas?
    Doug Jansen
    Tokyo

    Dave,
    Thanks for the tip. I didn't know that Quick Look would display a folder of files one-by-one. Once I set the first file to full screen, the rest also played full screen one after the other. Now I need a way to automatically launch Quick Look, set full screen and loop. This site http://automator.us/leopard/downloads/index.html has an automator action that uses Quick View, but on my Lion machine it just displays the first movie and only the first frame of the movie. It stops at that point.

  • How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

  • Video and GPS data from iPhone movie?

    Hi, I have following problem/ idea for a solution: I lost the canopy of by model airplane during a flight in a wheat field. Now I am looking for a solution to find it: what about a video camera and a GPS device, flying over the field, recording video and GPS data, play back video and (hopefully) find the canopy at frame xyz. Then read out the GPS position at this frame and go back in the field to the GPS coordinates and find what I lost.
    So the questions are:
    1. are the Video recordings stamped (?) with a continuous GPS position
    2. can this data be read out
    3. is there an app that can do this
    4. is this the correct forum for this question?
    Thanks for any ideas
    BTW: I already tried to order a new canopy, no luck...

    Let me get this straight... You lost the canopy for your model airplane... Now you want to strap your iPhone to another model airplane and fly it all over in the area where you lost the canopy.
    Piece of advice: Make sure you set up find my iPhone on it before you send it out on its mission. you may need it, in combination with its ability to emit an alarm when triggered remotely, to find the iPhone after it falls off the search plane.
    With luck, the fallen iPhone will land near the canopy you seek.
    To try and answer the questions:
    1. I believe the entire recording gets 1 location coded in the metadata. It is not a continuous stream of location data.
    2. Not relevant based on the answer to 1.
    3. I seriously doubt it, but I won't be shocked if someone has come up with something among the half million or so apps out there.
    4. I don't think there is a correct forum for this, but this works as well as any.

  • ExtendScript CS6 doesn't handle GPS data properly

    I prefer to work in Photoshop and Bridge, rather than Lightroom.  I am currently using version CS6 on Windows 7 x64.  I occasionally need to update the title, description and/or GPS information of a photograph. (I have many photographs that predate GPS systems.)  I also maintain different several JPEG versions of each photograph generated from a base PSD with different cropping and resolutions that are intended for different purposes.  I wrote a Bridge script to check and update the metadata of all versions of one or more images in a batch after updating PSD metadata.  The script works very well except for the GPS latitude and longitude data.
    The problem is that using the XMPMeta object that comes with ExtendScript Toolkit 3.8.0.13 (the latest version, I believe) the GPS coordinates are returned as string data in an "Adobe format", e.g. “35,24.3467N”. This format does not always accurately represent the underlying EXIF data.  (I have also written my own script for getting and setting the GPS data in Photoshop.)
    Furthermore, comparisons between PSD and JPEG formats are impossible because XMPMeta.getProperty only returns up to two decimal places for minutes when querying a PSD file, whereas it returns up to four decimal places for JPEGs.  I have checked the actual EXIF GPS data for a PSD image and a JPEG image generated from that PSD with EXIFTool and the data is identical, but XMPMeta.getProperty returns “35,24.3467N” from the JPEG and “35,24.35N” from the PSD. Setting GPS coordinates using four decimal places produces the same EXIF data for both PSD and JPEG images.
    The English translation of the “Exif Version 2.3” standard description for GPSLatitude states:
    The latitude is expressed as three RATIONAL values giving the degrees, minutes, and seconds, respectively. If latitude isexpressed as degrees, minutes and seconds, a typical format would be dd/1,mm/1,ss/1. When degrees and minutes are used and, for example, fractions of minutes are given up to two decimal places, the format would be dd/1,mmmm/100,0/1.
    It is clear that XMPMeta.getProperty does not always return a string that accurately represents the original EXIF data and it can be inconsistent between PSD and JPEG images.
    Is there some way to obtain an accurate representation of GPS data using ExtendScript?
    ...Jim

    I have seen some Photoshop Scripts on the Web the retrieve and use the exif GPG data.   But from what you write I would think your doing the same as those scripts do. Something like this:
    // Open Map from GPS Location.jsx
    // Version 1.0
    // Shaun Ivory ([email protected])
    // Feel free to modify this script.  If you do anything interesting with it,
    // please let me know.
    // JJMack I just used my sledge hammer on Shaun's Photoshop script
    // I sucked in his include file and removed his include statement
    // then I commented out his dialog and just Goolge Map the GPS location
    <javascriptresource>
    <about>$$$/JavaScripts/GoogleMapGPS/About=JJMack's Google Map GPS.^r^rCopyright 2014 Mouseprints.^r^rScript utility for action.^rNOTE:Modified Shaun's Ivory just Google Map GPS location</about>
    <category>JJMack's Action Utility</category>
    </javascriptresource>
    // Constants which identify the different mapping sites
    c_MapWebsites =
        "google",
        "mappoint",
        "virtualearth"
    var c_nDefaultMapWebsiteIndex = 2;
    var c_strTemporaryUrlFile = "~/TemporaryPhotoshopMapUrl.url";
    var c_strPhotoCaption = "Photo%20Location";
    // EXIF constants
    c_ExifGpsLatitudeRef   = "GPS Latitude Ref"
    c_ExifGpsLatitude      = "GPS Latitude"
    c_ExifGpsLongitudeRef  = "GPS Longitude Ref"
    c_ExifGpsLongitude     = "GPS Longitude"
    c_ExifGpsAltitudeRef   = "GPS Altitude Ref"
    c_ExifGpsAltitude      = "GPS Altitude"
    c_ExifGpsTimeStamp     = "GPS Time Stamp"
    c_ExifMake             = "Make"
    c_ExifModel            = "Model"
    c_ExifExposureTime     = "Exposure Time"
    c_ExifAperture         = "F-Stop"
    c_ExifExposureProgram  = "Exposure Program"
    c_ExifIsoSpeedRating   = "ISO Speed Ratings"
    c_ExifDateTimeOriginal = "Date Time Original"
    c_ExifMaxApertureValue = "Max Aperture Value"
    c_ExifMeteringMode     = "Metering Mode"
    c_ExifLightSource      = "Light Source"
    c_ExifFlash            = "Flash"
    c_ExifFocalLength      = "Focal Length"
    c_ExifColorSpace       = "Color Space"
    c_ExifWidth            = "Pixel X Dimension"
    c_ExifHeight           = "Pixel Y Dimension"
    function GetRawExifValueIfPresent(strExifValueName)
        // Empty string means it wasn't found
        var strResult = new String("");
        // Make sure there is a current document
        if (app.documents.length)
            // Loop through each element in the EXIF properties array
            for (nCurrentElement = 0, nCount = 0; nCurrentElement < activeDocument.info.exif.length; ++nCurrentElement)
                // Get the current element as a string
                var strCurrentRecord = new String(activeDocument.info.exif[nCurrentElement]);
                // Find the first comma
                var nComma = strCurrentRecord.indexOf(",");
                if (nComma >= 0)
                    // Everything before the comma is the field name
                    var strCurrentExifName = strCurrentRecord.substr(0, nComma);
                    // Is it a valid string?
                    if (strCurrentExifName.length)
                        // Is this our element?
                        if (strCurrentExifName == strExifValueName)
                            // Everything after the comma is the value, so
                            // save it and exit the loop
                            strResult = strCurrentRecord.substr(nComma + 1);
                            break;
        return strResult;
    // Convert a Photoshop latitude or longitude, formatted like
    // this:
    //      Example: 47.00 38.00' 33.60"
    // to the decimal form:
    //      Example: 47.642667
    // It returns an empty string if the string is in an unexpected
    // form.
    function ConvertLatitudeOrLongitudeToDecimal(strLatLong)
        var nResult = 0.0;
        // Copy the input string
        var strSource = new String(strLatLong);
        // Find the first space
        nIndex = strSource.indexOf(" ");
        if (nIndex >= 0)
            // Copy up to the first space
            strDegrees = strSource.substr(0, nIndex);
            // Skip this part, plus the space
            strSource = strSource.substr(nIndex + 1);
            // Find the tick mark
            nIndex = strSource.indexOf("'");
            if (nIndex >= 0)
                // Copy up to the tick mark
                strMinutes = strSource.substr(0, nIndex);
                // Skip this chunk, plus the tick and space
                strSource = strSource.substr(nIndex + 2);
                // Find the seconds mark: "
                nIndex = strSource.indexOf("\"");
                if (nIndex >= 0)
                    // Copy up to the seconds
                    strSeconds = strSource.substr(0, nIndex);
                    // Convert to numbers
                    var nDegrees = parseFloat(strDegrees);
                    var nMinutes = parseFloat(strMinutes);
                    var nSeconds = parseFloat(strSeconds);
                    // Use the correct symbols
                    nResult = nDegrees + (nMinutes / 60.0) + (nSeconds / 3600.0);
        return nResult;
    function GetDecimalLatitudeOrLongitude(strExifLatOrLong, strExifLatOrLongRef, strResult)
        var strResult = "";
        // Get the exif values
        strLatOrLong = GetRawExifValueIfPresent(strExifLatOrLong);
        strLatOrLongRef = GetRawExifValueIfPresent(strExifLatOrLongRef);
        // If we were able to read them
        if (strLatOrLong.length && strLatOrLongRef.length)
            // Parse and convert to a decimal
            var nResult = ConvertLatitudeOrLongitudeToDecimal(strLatOrLong);
            // If we are in the southern or western hemisphere, negate the result
            if (strLatOrLongRef[0] == 'S' || strLatOrLongRef[0] == 'W')
                nResult *= -1;
            strResult = nResult.toString();
        return strResult;
    function CreateGoogleMapsUrl(strLatitude, strLongitude)
        return "http://maps.google.com/maps?ll=" + strLatitude + "," + strLongitude + "&spn=0.01,0.01";
    function CreateMappointUrl(strLatitude, strLongitude)
        return "http://mappoint.msn.com/map.aspx?L=USA&C=" + strLatitude + "%2c" + strLongitude + "&A=50&P=|" + strLatitude + "%2c" + strLongitude + "|39|" + c_strPhotoCaption +"|L1|"
    function CreateVirtualEarthUrl(strLatitude, strLongitude)
        return "http://virtualearth.msn.com/default.aspx?v=2&style=h&lvl=17&cp=" + strLatitude + "~" + strLongitude + "&sp=an." + strLatitude + "_" + strLongitude + "_" + c_strPhotoCaption + "_";
    function CMapSiteSelection()
        // Initialize default map provider
        this.Site = c_MapWebsites[c_nDefaultMapWebsiteIndex];
        return this;
    function ShowMyDialog(strLatitude, strLongitude)
        // Use the default website
        var strCurrentSite = c_MapWebsites[c_nDefaultMapWebsiteIndex];
        dlgMain = new Window("dialog", "Choose a Map Website");
        // Add the top group
        dlgMain.TopGroup = dlgMain.add("group");
      dlgMain.TopGroup.orientation = "row";
      dlgMain.TopGroup.alignChildren = "top";
      dlgMain.TopGroup.alignment = "fill";
        // Add the left group
        dlgMain.TopGroup.LeftGroup = dlgMain.TopGroup.add("group");
        dlgMain.TopGroup.LeftGroup.orientation = "column";
        dlgMain.TopGroup.LeftGroup.alignChildren = "left";
        dlgMain.TopGroup.LeftGroup.alignment = "fill";
        dlgMain.AspectRatioGroup = dlgMain.TopGroup.LeftGroup.add("panel", undefined, "Map Website");
        dlgMain.AspectRatioGroup.alignment = "fill";
        dlgMain.AspectRatioGroup.orientation = "column";
        dlgMain.AspectRatioGroup.alignChildren = "left";
        // Add radio buttons
        dlgMain.virtualEarth = dlgMain.AspectRatioGroup.add("radiobutton", undefined, "Windows Live Local (aka Virtual Earth)");
        dlgMain.virtualEarth.onClick = function virtualEarthOnClick()
            strCurrentSite = "virtualearth";
        dlgMain.mappoint = dlgMain.AspectRatioGroup.add("radiobutton", undefined, "MSN Maps && Directions (aka MapPoint)");
        dlgMain.mappoint.onClick = function mappointOnClick()
            strCurrentSite = "mappoint";
        dlgMain.google = dlgMain.AspectRatioGroup.add("radiobutton", undefined, "Google Local (aka Google Maps)");
        dlgMain.google.onClick = function googleOnClick()
            strCurrentSite = "google";
        // Set the checked radio button
        if (strCurrentSite == "google")
            dlgMain.google.value = true;
        else if (strCurrentSite == "mappoint")
            dlgMain.mappoint.value = true;
        else
            dlgMain.virtualEarth.value = true;
        // Add the button group
        dlgMain.TopGroup.RightGroup = dlgMain.TopGroup.add("group");
        dlgMain.TopGroup.RightGroup.orientation = "column";
        dlgMain.TopGroup.RightGroup.alignChildren = "left";
        dlgMain.TopGroup.RightGroup.alignment = "fill";
        // Add the buttons
        dlgMain.btnOpenSite = dlgMain.TopGroup.RightGroup.add("button", undefined, "Open");
        dlgMain.btnClose = dlgMain.TopGroup.RightGroup.add("button", undefined, "Exit");
        dlgMain.btnClose.onClick = function()
            dlgMain.close(true);
        dlgMain.btnOpenSite.onClick = function()
            // Which website?
            var strUrl = "";
            switch (strCurrentSite)
            case "mappoint":
                strUrl = CreateMappointUrl(strLatitude, strLongitude);
                break;
            case "google":
                strUrl = CreateGoogleMapsUrl(strLatitude, strLongitude);
                break;
            case "virtualearth":
            default:
                strUrl = CreateVirtualEarthUrl(strLatitude, strLongitude);
                break;
            // Create the URL file and launch it
            var fileUrlShortcut = new File(c_strTemporaryUrlFile);
            fileUrlShortcut.open('w');
            fileUrlShortcut.writeln("[InternetShortcut]")
            fileUrlShortcut.writeln("URL=" + strUrl);
            fileUrlShortcut.execute();
        // Set the button characteristics
        dlgMain.cancelElement = dlgMain.btnClose;
        dlgMain.defaultElement = dlgMain.btnOpenSite;
        dlgMain.center();
        return dlgMain.show();
    function GoogleMap(strLatitude, strLongitude)
      strUrl = CreateGoogleMapsUrl(strLatitude, strLongitude)
      try{
      var URL = new File(Folder.temp + "/GoogleMapIt.html");
      URL.open("w");
      URL.writeln('<html><HEAD><meta HTTP-EQUIV="REFRESH" content="0; ' + strUrl + ' "></HEAD></HTML>');
      URL.close();
      URL.execute();   // The temp file is created but this fails to open the users default browser using Photoshop CC prior Photoshop versions work
      }catch(e){
      alert("Error, Can Not Open.");
    function OpenMapUrl()
        // Get the latitude
        var strDecimalLatitude = GetDecimalLatitudeOrLongitude(c_ExifGpsLatitude, c_ExifGpsLatitudeRef);
        if (strDecimalLatitude.length)
            // Get the longitude
            var strDecimalLongitude = GetDecimalLatitudeOrLongitude(c_ExifGpsLongitude, c_ExifGpsLongitudeRef);
            if (strDecimalLongitude.length)
                //ShowMyDialog(strDecimalLatitude, strDecimalLongitude);
      GoogleMap(strDecimalLatitude, strDecimalLongitude);
    function Main()
        if (app.documents.length > 0)
            OpenMapUrl();
        else
            alert("You don't have an image opened.  Please open an image before running this script.");
    Main();

  • Action Playback option changes the Result of an Automated Script.

    When using the Playback Option in the Actions menu, then the  Results are different with different Acceleration methods.
    So the Result is different with, Accelerated - Step by Step - Pauze for [1],
    I Expierence the issue with Windows and Mac as well.
    This happens with Illustrator CS5 (15.0.1)
    # Workflow
         Creating the action:
         Open Illustrator, open the attached document: 4102107 Exact.pdf
         Create an New Action, enable Transform window
         Select the Black Square and the Red text Exact
         Go to Object, Scale > 33.3% and press Copy.
         Then go to Transform an from the upper corner and enter on the
         x=397,13 pt y=212,25 pt
         You see the Image moved to the correct clip.
         Open the Document in Illustrator,
         Go to Actions > Select the created action >Now go to the Panel Menu from Actions > Select Playback option.
         You get a new Dialog where you can select a different acceleration mode: "Step by Step" - "Accelrated" - "Pause for [Numeric] Seconds"
         So the issue is, when you select here a different accelration the result is different.
    >Is this as Designed? If So, why because when i understand the function of an automated script. It should exactly get the same
    result as programmed, why else would you want to use the script if the result with be different without nothing.
    There is running an Escalation case about this, But hopefully anybody more experienced can comment me about this. Or inform wheter  it's a bug?
    Please help me in this. (thank you in advance!)

    To make a few things clear I have created a Video of the issue.
    Have a look on:
    http://adobesupport.emea.acrobat.com/p65456795/
    Maybe i really blow in explaining what exactly happens, but i'll try it again.
    When creating an action (as shown in the Video) You can see that the result
    is totally different and when creating the action. This is error 1.
    - I recieved a respons that we just shouldn't use the Transform Panel. So i requested to know why there is a panel created, if we cannot use it.
    No respons.
    Then when you select a Playback option in the setting of the Actions Panel,
    the Result differs. As you can see when executig in the Accelerated the Movement gets placed WAY out of the file.
    When selection Step by Step or Pause for [Numeric] Seconds, then the result is that the movement gets placed
    at the bottom of the file. Both of the Results don't even come close in the Action which is created.
    Hopefully this will calrify what i ment.

  • [svn:fx-trunk] 16262: Move mx components out of framework.swc into mx.swc

    Revision: 16262
    Revision: 16262
    Author:   [email protected]
    Date:     2010-05-20 11:44:39 -0700 (Thu, 20 May 2010)
    Log Message:
    Move mx components out of framework.swc into mx.swc
    The new mx.swc library lives in the libs/mx directory.
    QE notes: Of the 5 failures I saw: 1 was intermittent and 4 are not a bug.
    Managers/StyleManager/AdvancedCSS/descendantSelectors/AdvancedCSS_descendantSelectors_Styl e descendantSelector_combining_nested_style
        This failure was intermittent.
    mx/effects/Resize/Containers/Resize_Containers Effects_Resize_Containers_ApplicationControlBar_FromTo
    mx/effects/Resize/Containers/Resize_Containers Effects_Resize_Containers_ApplicationControlBar_By
    mx/effects/Resize/Containers/Resize_Containers Effects_Resize_Containers_ControlBar_FromTo
    mx/effects/Resize/Containers/Resize_Containers Effects_Resize_Containers_ControlBar_By
        These failures are due to my code changes but I believe the old behavior was incorrect. When a control bar is the last child in a Panel it should appear at the bottom of the Panel. In the test case an ApplicationControlBar/ContorlBar is added to an empty Panel, making it the last child in the Panel. So it should appear at the bottom of the Panel instead of inside the Panel.
    Doc notes: new library, mx.swc
    Bugs:
    Reviewer: Alex
    Tests run:
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/frameworks/air-config.xml
        flex/sdk/trunk/frameworks/build.xml
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/airframework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airframework/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airframework/build.xml
        flex/sdk/trunk/frameworks/projects/airspark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/airspark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/airspark/build.xml
        flex/sdk/trunk/frameworks/projects/automation/build.xml
        flex/sdk/trunk/frameworks/projects/automation_air/build.xml
        flex/sdk/trunk/frameworks/projects/automation_airspark/build.xml
        flex/sdk/trunk/frameworks/projects/automation_dmv/build.xml
        flex/sdk/trunk/frameworks/projects/automation_flashflexkit/build.xml
        flex/sdk/trunk/frameworks/projects/automation_spark/build.xml
        flex/sdk/trunk/frameworks/projects/datavisualization/build.xml
        flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
        flex/sdk/trunk/frameworks/projects/framework/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/defaults-3.0.0.css
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MaskEffectInsta nce.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/MoveInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/ILayoutManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/states/AddChild.as
        flex/sdk/trunk/frameworks/projects/halo/build.xml
        flex/sdk/trunk/frameworks/projects/rpc/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/spark/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/spark/build.xml
        flex/sdk/trunk/frameworks/projects/sparkskins/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/sparkskins/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/utilities/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/wireframe/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/manifest.xml
        flex/sdk/trunk/frameworks/projects/mx/
        flex/sdk/trunk/frameworks/projects/mx/.actionScriptProperties
        flex/sdk/trunk/frameworks/projects/mx/.flexLibProperties
        flex/sdk/trunk/frameworks/projects/mx/.project
        flex/sdk/trunk/frameworks/projects/mx/.settings/
        flex/sdk/trunk/frameworks/projects/mx/.settings/org.eclipse.core.resources.prefs
        flex/sdk/trunk/frameworks/projects/mx/build.xml
        flex/sdk/trunk/frameworks/projects/mx/bundles/
        flex/sdk/trunk/frameworks/projects/mx/bundles/da_DK/
        flex/sdk/trunk/frameworks/projects/mx/bundles/da_DK/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/da_DK/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/da_DK/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/de_DE/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/en_US/
        flex/sdk/trunk/frameworks/projects/mx/bundles/en_US/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/en_US/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/en_US/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/en_US/packages.dita
        flex/sdk/trunk/frameworks/projects/mx/bundles/es_ES/
        flex/sdk/trunk/frameworks/projects/mx/bundles/es_ES/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/es_ES/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/es_ES/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/fi_FI/
        flex/sdk/trunk/frameworks/projects/mx/bundles/fi_FI/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/fi_FI/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/fi_FI/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/fr_FR/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/it_IT/
        flex/sdk/trunk/frameworks/projects/mx/bundles/it_IT/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/it_IT/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/it_IT/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ja_JP/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ko_KR/
        flex/sdk/trunk/frameworks/projects/mx/bundles/ko_KR/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ko_KR/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ko_KR/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/nb_NO/
        flex/sdk/trunk/frameworks/projects/mx/bundles/nb_NO/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/nb_NO/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/nb_NO/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/nl_NL/
        flex/sdk/trunk/frameworks/projects/mx/bundles/nl_NL/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/nl_NL/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/nl_NL/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/pt_BR/
        flex/sdk/trunk/frameworks/projects/mx/bundles/pt_BR/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/pt_BR/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/pt_BR/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ru_RU/
        flex/sdk/trunk/frameworks/projects/mx/bundles/ru_RU/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ru_RU/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/ru_RU/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/sv_SE/
        flex/sdk/trunk/frameworks/projects/mx/bundles/sv_SE/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/sv_SE/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/sv_SE/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_CN/
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_CN/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_CN/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_CN/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_TW/
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_TW/containers.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_TW/mxControls.properties
        flex/sdk/trunk/frameworks/projects/mx/bundles/zh_TW/mxCore.properties
        flex/sdk/trunk/frameworks/projects/mx/defaults-3.0.0.css
        flex/sdk/trunk/frameworks/projects/mx/defaults.css
        flex/sdk/trunk/frameworks/projects/mx/manifest.xml
        flex/sdk/trunk/frameworks/projects/mx/src/
        flex/sdk/trunk/frameworks/projects/mx/src/MxClasses.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/AccordionHeaderAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/AlertAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/ButtonAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/CheckBoxAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/ColorPickerAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/ComboBaseAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/ComboBoxAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/DataGridAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/DateChooserAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/DateFieldAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/LabelAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/LinkButtonAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/ListAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/ListBaseAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/MenuAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/MenuBarAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/PanelAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/RadioButtonAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/SliderAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/TabBarAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/TitleWindowAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/accessibility/TreeAccImpl.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Accordion.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Accordion.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/ApplicationControlBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/ApplicationControlBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Box.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Box.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/BoxDirection.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Canvas.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Canvas.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/ControlBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/ControlBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/DividedBox.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/DividedBox.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/DividerState.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Form.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Form.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/FormHeading.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/FormHeading.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/FormItem.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/FormItem.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/FormItemDirection.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Grid.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Grid.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/GridItem.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/GridRow.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/HBox.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/HBox.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/HDividedBox.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/HDividedBox.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Panel.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Panel.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/TabNavigator.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/TabNavigator.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Tile.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/Tile.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/TileDirection.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/TitleWindow.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/TitleWindow.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/VBox.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/VBox.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/VDividedBox.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/VDividedBox.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/ViewStack.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/ViewStack.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/accordionClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/dividedBoxClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/gridClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/utilityClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/utilityClasses/ApplicationLayout. as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/utilityClasses/BoxLayout.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/utilityClasses/CanvasLayout.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/utilityClasses/Layout.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/containers/utilityClasses/PostScaleAdapter.a s
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Alert.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Button.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Button.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ButtonBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ButtonBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ButtonLabelPlacement.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ButtonPhase.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/CalendarLayout.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/CheckBox.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/CheckBox.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ColorPicker.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ColorPicker.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ComboBase.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ComboBox.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ComboBox.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/DataGrid.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/DataGrid.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/DateChooser.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/DateChooser.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/DateField.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/DateField.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/FormItemLabel.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HRule.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HRule.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HScrollBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HScrollBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HSlider.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HSlider.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HorizontalList.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/HorizontalList.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Image.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Image.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Label.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Label.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/LinkBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/LinkBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/LinkButton.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/LinkButton.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/List.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/List.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Menu.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Menu.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/MenuBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/MenuBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/NavBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/NumericStepper.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/NumericStepper.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/PopUpButton.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/PopUpMenuButton.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/RadioButton.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/RadioButton.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/RadioButtonGroup.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/RadioButtonGroup.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/RichTextEditor.mxml
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/RichTextEditor.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TabBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TabBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Text.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Text.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TextArea.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TextArea.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TextInput.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TextInput.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TileList.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/TileList.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/ToggleButtonBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Tree.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/Tree.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VRule.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VRule.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VScrollBar.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VScrollBar.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VSlider.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VSlider.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VideoDisplay.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/VideoDisplay.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/alertClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/assets/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/buttonBarClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/colorPickerClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/colorPickerClasses/SwatchPanel.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/colorPickerClasses/SwatchPanel.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/dataGridClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/BaseListData.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/IDropInListItemRenderer .as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListBaseContentHolder.a s
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListBaseFindPending.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListBaseSeekPending.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListBaseSelectionData.a s
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListBaseSelectionDataPe nding.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListBaseSelectionPendin g.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListData.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListItemDragProxy.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListItemRenderer.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/ListRowInfo.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/TileBase.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/TileBaseDirection.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/listClasses/TileListItemRenderer.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/menuClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/richTextEditorClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/scrollClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/sliderClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/tabBarClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/textClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/treeClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/controls/videoClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/Application.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/Container.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/ContainerLayout.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/ContainerRawChildrenList.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/ITextInput.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/LayoutContainer.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/Repeater.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/Repeater.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/ScrollControlBase.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/core/Version.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/AddChildAction.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/AddItemAction.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/DefaultListEffect.mxml
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/DefaultTileListEffect.mxml
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/Glow.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/RemoveChildAction.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/RemoveItemAction.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/Resize.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/SetPropertyAction.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/UnconstrainItemAction.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/WipeDown.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/WipeLeft.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/WipeRight.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/WipeUp.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/easing/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/easing/Cubic.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/easing/Linear.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/easing/Quadratic.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/easing/Quartic.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/easing/Quintic.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/easing/Sine.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/AddChildActionInstance .as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/AddItemActionInstance. as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/GlowInstance.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/RemoveChildActionInsta nce.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/RemoveItemActionInstan ce.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/ResizeInstance.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/SetPropertyActionInsta nce.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/UnconstrainItemActionI nstance.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/WipeDownInstance.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/WipeLeftInstance.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/WipeRightInstance.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/effects/effectClasses/WipeUpInstance.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/CalendarLayoutChangeEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/ColorPickerEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/CuePointEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/DataGridEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/DataGridEventReason.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/DateChooserEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/DateChooserEventDetail.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/DividerEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/IndexChangedEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/ListEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/ListEventReason.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/MenuEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/MetadataEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/NumericStepperEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/ScrollEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/ScrollEventDetail.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/ScrollEventDirection.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/SliderEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/SliderEventClickTarget.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/TreeEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/events/VideoEvent.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/modules/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/modules/Module.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/modules/ModuleLoader.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/modules/ModuleLoader.png
        flex/sdk/trunk/frameworks/projects/mx/src/mx/printing/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/printing/PrintDataGrid.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/AccordionHeaderSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ActivatorSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ApplicationBackground.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ButtonBarButtonSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ButtonSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/CheckBoxIcon.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ColorPickerSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ComboBoxArrowSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DataGridColumnDropIndicator.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DataGridColumnResizeSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DataGridHeaderBackgroundSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DataGridHeaderSeparator.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DataGridSortArrow.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DateChooserIndicator.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DateChooserMonthArrowSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/DateChooserYearArrowSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/HaloBorder.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/HaloColors.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/LinkButtonSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/LinkSeparator.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/MenuBarBackgroundSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/NumericStepperDownSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/NumericStepperUpSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/PanelSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/PopUpButtonSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/PopUpIcon.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/PopUpMenuIcon.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ProgressBarSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ProgressIndeterminateSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ProgressMaskSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ProgressTrackSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/RadioButtonIcon.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ScrollArrowSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ScrollThumbSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/ScrollTrackSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/SliderHighlightSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/SliderThumbSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/SliderTrackSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/SwatchPanelSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/SwatchSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/TabSkin.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/TitleBackground.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/skins/halo/WindowBackground.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/AlignStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/AnchorStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/BackgroundStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/BarColorStyle.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/BorderStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/ContainerBackgroundStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/FillStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/FocusStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/GapStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/IconColorStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/LeadingStyle.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/ModalTransparencyStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/PaddingStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/SelectedFillColorsStyle.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/SkinStyles.as
        flex/sdk/trunk/frameworks/projects/mx/src/mx/styles/metadata/TextStyles.as
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/framework/bundles/en_US/containers.properties
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/AccordionHeaderAccImpl. as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/AlertAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/ButtonAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/CheckBoxAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/ColorPickerAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/ComboBaseAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/ComboBoxAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/DataGridAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/DateChooserAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/DateFieldAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/LabelAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/LinkButtonAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/ListAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/ListBaseAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/MenuAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/MenuBarAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/PanelAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/RadioButtonAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/SliderAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/TabBarAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/TitleWindowAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/accessibility/TreeAccImpl.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ApplicationControlBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/BoxDirection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Canvas.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ControlBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/DividedBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/DividedBox.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/DividerState.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Form.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Form.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormHeading.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormHeading.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItemDirection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Grid.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Grid.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/GridItem.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/GridRow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HBox.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HDividedBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/HDividedBox.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Panel.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TabNavigator.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TileDirection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TitleWindow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/TitleWindow.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VBox.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VDividedBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/VDividedBox.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/ViewStack.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/accordionClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/dividedBoxClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/gridClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/Application Layout.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/BoxLayout.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayou t.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/Layout.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/PostScaleAd apter.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Alert.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Button.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Button.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ButtonBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ButtonBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ButtonLabelPlacement.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ButtonPhase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/CalendarLayout.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/CheckBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/CheckBox.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ColorPicker.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ColorPicker.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ComboBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ComboBox.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ComboBox.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DateChooser.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DateChooser.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DateField.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DateField.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/FormItemLabel.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HRule.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HRule.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HScrollBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HScrollBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HSlider.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HSlider.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HorizontalList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/HorizontalList.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Image.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Image.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Label.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Label.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/LinkBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/LinkBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/LinkButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/LinkButton.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/List.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/List.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Menu.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Menu.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/MenuBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/MenuBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/NavBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/NumericStepper.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/NumericStepper.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/PopUpButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/PopUpMenuButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RadioButton.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RadioButton.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RadioButtonGroup.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RadioButtonGroup.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RichTextEditor.mxml
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/RichTextEditor.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TabBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TabBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Text.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Text.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TextArea.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TextArea.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TextInput.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TextInput.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TileList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/TileList.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ToggleButtonBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Tree.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Tree.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VRule.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VRule.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VScrollBar.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VScrollBar.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VSlider.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VSlider.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VideoDisplay.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/VideoDisplay.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/alertClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/assets/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/buttonBarClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/colorPickerClasses/SwatchPan el.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/colorPickerClasses/SwatchPan el.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/BaseListData.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/IDropInListItemR enderer.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseContentH older.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseFindPend ing.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSeekPend ing.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSelectio nData.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSelectio nDataPending.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseSelectio nPending.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListData.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListItemDragProx y.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListItemRenderer .as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListRowInfo.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/TileBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/TileBaseDirectio n.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/TileListItemRend erer.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/menuClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/richTextEditorClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/scrollClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/sliderClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/tabBarClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/textClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/treeClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/videoClasses/
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ContainerLayout.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ContainerRawChildrenList.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ITextInput.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/LayoutContainer.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Repeater.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Repeater.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ScrollControlBase.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/AddChildAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/AddItemAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/DefaultListEffect.mxml
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/DefaultTileListEffect.mxml
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Glow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/RemoveChildAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/RemoveItemAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/Resize.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/SetPropertyAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/UnconstrainItemAction.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/WipeDown.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/WipeLeft.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/WipeRight.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/WipeUp.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/easing/Cubic.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/easing/Linear.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/easing/Quadratic.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/easing/Quartic.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/easing/Quintic.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/easing/Sine.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AddChildActionI nstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/AddItemActionIn stance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/GlowInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveChildActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/RemoveItemActio nInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/ResizeInstance. as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/SetPropertyActi onInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/UnconstrainItem ActionInstance.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/WipeDownInstanc e.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/WipeLeftInstanc e.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/WipeRightInstan ce.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/effects/effectClasses/WipeUpInstance. as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/CalendarLayoutChangeEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/ColorPickerEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/CuePointEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/DataGridEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/DataGridEventReason.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/DateChooserEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/DateChooserEventDetail.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/DividerEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/IndexChangedEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/ListEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/ListEventReason.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/MenuEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/MetadataEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/NumericStepperEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/ScrollEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/ScrollEventDetail.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/ScrollEventDirection.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/SliderEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/SliderEventClickTarget.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/TreeEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/VideoEvent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/Module.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/ModuleLoader.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/ModuleLoader.png
        flex/sdk/trunk/frameworks/projects/framework/src/mx/printing/PrintDataGrid.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/AccordionHeaderSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ActivatorSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ApplicationBackground.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ButtonBarButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/CheckBoxIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ColorPickerSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ComboBoxArrowSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DataGridColumnDropIndicato r.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DataGridColumnResizeSkin.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DataGridHeaderBackgroundSk in.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DataGridHeaderSeparator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DataGridSortArrow.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DateChooserIndicator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DateChooserMonthArrowSkin. as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/DateChooserYearArrowSkin.a s
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/HaloBorder.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/HaloColors.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/LinkButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/LinkSeparator.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/MenuBarBackgroundSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/NumericStepperDownSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/NumericStepperUpSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PanelSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpButtonSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/PopUpMenuIcon.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ProgressBarSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ProgressIndeterminateSkin. as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ProgressMaskSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/ProgressTrackSkin.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/skins/halo/RadioButtonIcon.as

  • Where should I put GPS data with each photo?

    Today I am starting to load images into Aperture - the beginning of an 18 month project filming in all 92 counties of Indiana. When I shoot, I write down the GPS location and need to keep it with all photos. It would not be a keyword, where would I store this info?
    Still trying to figure out how to apply the same keywords to a group of photos - I will figure it out soon.
    Mac Pro 2.66   Mac OS X (10.4.9)   XT 1900, 4GB RAM, 4 500GB HDs, Nikon D70

    indianamusic,
    This is what I suggest. Having worked with GPS data for a while it is certainly the best solution. I will give you a few reasons at the end of this post.
    1. Get GPSPhotolinker. It is free.
    2. Create a plain text file with the following information.
    <?xml version="1.0"?>
    <gpx
    version="1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.topografix.com/GPX/1/0"
    xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
    <time>2004-09-23T23:45:44Z</time>
    <trk>
    <name>Location Name</name>
    <trkseg>
    <trkpt lat="54.602780" lon="-5.884941">
    <time>2004-07-29T21:27:14Z</time>
    </trkpt>
    </trkseg>
    </trk>
    </gpx>
    3. Repeat the following entry for each different location you have.
    <name>Location Name</name>
    <trkseg>
    <trkpt lat="54.602780" lon="-5.884941">
    <time>2004-07-29T21:27:14Z</time>
    </trkpt>
    </trkseg>
    4. Load a few photos into GPSPhotoLinker and use the manual option to embed the GPS data into your files.
    5. Import these into Aperture.
    So why do it this way?
    1. EXIF contains important information such as time; location is important, and by doing it this way you can embed the GPS (and thanks to GPSPhotoLinker State/Country names) automatically; when you import the photos into Aperture you won't actually have to enter the state etc.
    2. A file with EXIF data, when uploaded to Flickr, is automatically georeferenced and will display on the Flickr map.
    3. You can use an amazing script (http://discussions.apple.com/thread.jspa?messageID=4550472#4550472) that Ian wrote to view your photos on google maps right from within Aperture. If you store the GPS info in a custom field, you certainly wouldn't be able to do this!
    Hope this helps, have a great trip and write again if you need more help!
    Alex

  • How to export ALL my GPS data with photos?

    Hi,
    I hope you can help me save a lot of time.
    For various reasons I have abandoned Aperture 3 in favour of Lightroom 5, and as part of the process (severl months ago) I exported all my 30,000 photos out of my aperture library along with sidecar files so that I would be able to keep my metadata. All but a few gopro phots are geotagged, however I have now discovered that for 14,000 of these images no GPS data was included in the sidecar file.
    As far as I have been able to research I have two options. First to re-build the library by re-exporting the files, merge this with my current Lightroom library and hope I don't get any duplicates. Or, secondly, re-tag the 14,000 photos manually or from the GPX files I still have hanging around.
    What I really would like to know is if there is a 3rd option?
    What would be nice is a way to export only the GPS data and time stamps for all 30,000 and then use that as a track in Lightroom...is that possible?
    Thanks for any help

    I'm not aware of a way to do that from Aperture but it should be possible to script that ability.
    Just run through all the images and have the script output the EXIF data you want. Not to difficult if you have any  Applescript experience. If not I'm afraid you will need to resort to your other options.
    regards

  • .mov exif data problem - Time is off by hours

    I have the same problem that SD_Christina posted 2010:
    "I import my photos and videos taken on my iPhone using "Image Capture", then I sort them using Adobe Bridge CS5.
    When I take a video (.mov file), the exif data shows the "Date Created" at 7 hours ahead of "Date File Modified". (ie: Date Created: 7pm, Date File Modified: 12pm)
    The problem is - the correct time (that the quicktime movie was taken) is the "Date File Modified" time. So, if I should choose to rename that file...of course the "Date File Modified" time is changed.
    Additionally, if I choose to rename all of my files (which I do) using the Date Created - the movies can be given the incorrect name. While sometimes this is not a problem (after all....12pm and 7pm ARE in the same day) if I create a video after 6pm, the "Date Created" ends up in tomorrow....follow?
    Just about everything I've found on the internet says that videos don't have exif data....which is just silly....cause I'm looking at it and sorting my files by it...so....something is there!
    On the other hand, if I could just CHANGE the exif data...I'd even be willing to do that...but I can't seem to find a MAC based exif changer for .mov files. "
    With my iPhone 5 (iOS 7.1.2) the JPG times are always OK. But SOME MOV files have it +3hours off in my timezone.
    I rename my JPGs and MOVs via Graphic Converter as YYYY-MMDD-hhmm-ss.mov according to their EXIF. Usually this works OK but I have to watch out those random MOV files that are +3hours off and rename them based on their creation date which is correct (that time might be the start/end of the clip while EXIF is the opposite but I digress...).
    I have not yet seen any pattern or workflow that might cause the MOV EXIF to be incorrect. Anyone?
    And is there a tool that can edit the EXIF and location data in MOV files? Graphic Converter can edit those only in JPGs. (The location data is sometimes incorrect in MOVs taken with my iPad mini whch lacks GPS and obviously didn't get correct location via the tethered iPhone -- I guess I should try to enable Bluetooth in both devices because that seems to give the location to the iPad(?).

    Hi,
    I'm having a similar problem, which I've been able to easily reproduce. It may be related, but I don't have a fix for it.
    I live in Oslo, and just got back from a trip to Mumbai (which is 4.5 hours ahead of Oslo time). When I arrived in Mumbai, I used the Time Zone function on the phone to set the local time. When I got home, I imported photos and video into iPhoto and found that the photos I took on my phone in Mumbai showed the correct time and date, but the videos I took on the trip had a creation date listed in iPhoto that was equal to Oslo time (4.5 hours different from the photos) and not Mumbai time.
    It almost seems like the camera app saves the photos based on the iPhones current Time Zone setting, but saves video with a creation date equal to the time zone the phone was originally set to.
    I've been able to reproduce the bug a couple of times. The only fix I have for it is manually changing the time and date of the videos in iPhoto.
    Could someone else try this out and see if they can reproduce the problem as well?
    Peter

Maybe you are looking for