Difference  between image version and selection

I am trying to write a script that aperture will execute when I import files.  When I run the script after passing it a selection the script runs perfectly. When I run the script using ImportActionsForVersions which supposedly passes in a list of image versions the script has an issue when I export what I thought is an image version. It seems that there is an issue in the datat type being passed in from aperture vs what I get when I select them myself when I run the code on its own.
Anyone have any thoughts?

Frank,
You actually helped me out a while ago just to get the ImportActionForVersion to work - started small. 
First let me start with experience - I am just starting out with Applescript, I have written a fair amount of software for numerical analyses over the past 30 years. Startedin FORTRAN and then moved to C.  I am somewhat familiar with OO coding but not nearly as familiar as FORTRAN and C.  Applescript appears to me to be something different as well. Powerful but I have no idea what really goes on inside a program like Aperture.
I have read and continue to re-read the Aperture Applescript manual, as well as several other Applescript guides, web resources and books.  I suspect that something hasn't yet sunk in that needs to sink in.
I have not tried the exact example because quite frankly it didn't seem to fit what I wanted to do and I assume it would work just fine, running it wouldn't tell me anyting helpful. Perhaps that is simple minded.  I am guessing that the repeat loop is stepping through individual versions passed in by aperture and the tell block is for each version changing the preset based on the exif tag.
I am hoping that I can loop through image versions in a similar fashion and then for each image version that has a CRW, CR2 or NEF file suffix I can export the file, convert it into a DNG and then reimport the DNG as master. 
The code may not yet be complete but that is the intent and it works reasonably well using "on run".  I'd like this to work so it does this automatically in the future.
So my code is below. Following my code is a sample of the output I am getting in the log file I am writing.
To test this I import a couple of files from a compact flash card into aperture which then calls this script - as the log files indicate the script runs and the statement immediately before export curImg to exportFolder metadata embedded appears to be the last statement executed. Again when I use essentially the same code in a script that starts with on run and is called after I select a couple of pictures in aperture it runs just fine.
property p_dngPath : "/Applications/Adobe DNG Converter.app/Contents/MacOS/Adobe DNG Converter"
property p_dngArgs : " -p1 -c "
property p_rawSuffices : {"crw", "cr2", "nef", "CRW", "CR2", "NEF"}
property doLog_importAction : true
property doLog_checkSetup : false
property firstLog : true
-- ------------------------------------------------------- log_event -------------------------------------------------------------------------------
on importActionForVersions(imageVersionList)
          set tempDir to path to temporary items folder
          set numProc to 0
          set numErr to 0
          set numIgnore to 0
          set numOffline to 0
          set numImage to 0
          set completedFiles to 0
          set theMessage to "Executing importActionForVersion"
  log_event(theMessage, doLog_importAction) of me
          tell application "System Events"
                    set exportFolder to tempDir
                    set theMessage to "exportFolder is " & exportFolder
  log_event(theMessage, doLog_importAction) of me
          end tell
          tell application "Aperture"
                    set numVersions to count of imageVersionList
                    set shouldProceed to checkSetup() of me
                    set theMessage to "-----Starting Convert: " & numVersions & " version(s) passed in and shouldProceed is " & shouldProceed
  log_event(theMessage, doLog_importAction) of me
                    if shouldProceed is true then
                              set theMessage to "----------If shouldProceed: Beginning evaluation of selected images versions"
  log_event(theMessage, doLog_importAction) of me
                              repeat with versionReference in imageVersionList
                                        set curImg to contents of versionReference
                                        set numImage to numImage + 1
                                        set theMessage to "---------------Repeat with: Operating on image version " & numImage & " of " & numVersions
  log_event(theMessage, doLog_importAction) of me
                                        set fileName to value of other tag "FileName" of curImg
                                        set theMessage to "---------------Repeat with: The file filename is " & fileName
  log_event(theMessage, doLog_importAction) of me
                                        set curImgonline to online of curImg
                                        set theMessage to "---------------Repeat with: curImg online " & curImgonline
  log_event(theMessage, doLog_importAction) of me
                                        if online of curImg is true then
                                                  set theMessage to "--------------------if online: curImg " & numImage & " of " & numVersions & " is online"
  log_event(theMessage, doLog_importAction) of me
                                                  set theSuffix to (rich text -3 thru -1 of fileName) as string
                                                  set theMessage to "--------------------if online: The file suffix is " & theSuffix
  log_event(theMessage, doLog_importAction) of me
  -- if the suffix identifies files as needing to be converted
                                                  if p_rawSuffices contains theSuffix then
                                                            set theMessage to "--------------------if p_rawSuffices: p_rawSuffices contains theSuffix " & theSuffix
  log_event(theMessage, doLog_importAction) of me
  -- --------------------------------------------------------------------- determine the image's containing Project
                                                            set srcProjPath to value of other tag "MasterLocation" of curImg
                                                            if srcProjPath contains ">" then
                                                                      tell AppleScript
                                                                                set originalDelimiters to text item delimiters
                                                                                set the text item delimiters to " > "
                                                                                set p_list to text items of srcProjPath
                                                                                set the text item delimiters to originalDelimiters
                                                                                set srcProjName to (item -1 of p_list)
                                                                      end tell
                                                            else
                                                                      set srcProjName to srcProjPath
                                                            end if
                                                            set theProject to project srcProjName
                                                            set theMessage to "--------------------if p_rawSuffices: Source Project Path is " & srcProjPath & " and the project name is " & srcProjName
  log_event(theMessage, doLog_importAction) of me
                                                            set numProc to numProc + 1
                                                            set theMessage to "--------------------if p_rawSuffices: Number Processed is " & numProc
  log_event(theMessage, doLog_importAction) of me
                                                            set theMessage to "--------------------if p_rawSuffices: tempDir is " & tempDir
  log_event(theMessage, doLog_importAction) of me
                                                            set theMessage to "--------------------if p_rawSuffices: curImg is not empty"
  log_event(theMessage, doLog_importAction) of me
  export curImg to exportFolder metadata embedded
  --naming folders with folder naming policy "Project Name"
                                                            set theMessage to "--------------------if p_rawSuffices: curImg was exported"
  log_event(theMessage, doLog_importAction) of me
  --set theRAWs to export curImg to tempDir
                                                            set theMessage to "--------------------if p_rawSuffices: theRAWS have been set"
  log_event(theMessage, doLog_importAction) of me
                                                            set theRAW to item 1 of theRAWs
                                                            set theMessage to "--------------------if p_rawSuffices: theRaw is " & theRAW & "numProc is " & numProc
  log_event(theMessage, doLog_importAction) of me
                                        --          tell application "Finder" to reveal theRAW
                                        set RAWPOSIX to POSIX path of theRAW
                                        set theMessage to "Convert: RawPOSIX Path is " & RAWPOSIX
                                        log_event(theMessage, doLog_importAction) of me
                                        set s_script to ((quoted form of p_dngPath) & space & p_dngArgs & space & (quoted form of RAWPOSIX)) as string
                                        do shell script (s_script)
                                        set DNGPOSIX to ((rich text 1 thru -4 of (RAWPOSIX as string)) & "dng") as string
                                        set theMessage to "Convert: The DNG POSIX Path is " & DNGPOSIX
                                        log_event(theMessage, doLog_importAction) of me
                                        tell application "Finder"
                                                  set theDNG to (POSIX file DNGPOSIX) as alias
                                                  delete theRAW
                                        end tell
                                        set theNewMasters to import {theDNG} by moving into theProject
                                        set theNewMaster to (item 1 of theNewMasters)
                                        -- ---------------------------------------- Copy annotations from curImg to theNewMaster
                                        repeat with curTag in IPTC tags of curImg
                                                  set tagName to name of curTag
                                                  set tagValue to value of curTag
                                                  tell theNewMaster
                                                            try
                                                                      make new IPTC tag with properties {name:tagName, value:tagValue}
                                                            end try
                                                  end tell
                                        end repeat
                                        repeat with curTag in custom tags of curImg
                                                  set tagName to name of curTag
                                                  set tagValue to value of curTag
                                                  tell theNewMaster
                                                            try
                                                                      make new custom tag with properties {name:tagName, value:tagValue}
                                                            end try
                                                  end tell
                                        end repeat
                                                            set theMessage to "--------------------if p_rawSuffices: Finished processing item " & numProc
  log_event(theMessage, doLog_importAction) of me
                                                  else -- No conversion needed
                                                            set numIgnore to numIgnore + 1
                                                            set theMessage to "--------------------if NOT p_rawSuffices: p_rawSuffices DOES NOT contains theSuffix " & theSuffix & "numIgnore= " & numIgnore
  log_event(theMessage, doLog_importAction) of me
                                                  end if -- if Suffix
                                        else
                                                  set numOffline to numOffline + 1
                                                  set theMessage to "---------------if online: curImg " & numImage & " of " & numVersions & "is OFFLINE numOffline files =" & numOffline
  log_event(theMessage, doLog_importAction) of me
                                        end if -- ---------------------- image is online
                                        set completedFiles to completedFiles + 1
                                        set theMessage to "---------------Repeat with: completedFiles " & completedFiles
  log_event(theMessage, doLog_importAction) of me
                              end repeat -- imageVersionList
                              set theMessage to "-----ImportActionsForVersions: Just Finished imageVersionList repeat loop"
  log_event(theMessage, doLog_importAction) of me
                              set theOut to ("Images selected:    " & numVersions & return)
                              set theOut to (theOut & "                   Images ignored:     " & numIgnore & return)
                              set theOut to (theOut & "                   Images processed: " & numProc & return)
                              set theOut to (theOut & "                   Offline images:       " & numOffline & return)
                              set theOut to (theOut & "                   Errors:                   " & numErr)
                              set theMessage to theOut
  log_event(theMessage, doLog_run) of me
  -- display alert "Done!" message theOut
                    else
                              display alert "Error on setup" message "There was an error with your setup. Please verify that you are running Mac OS X 10.5.2 or later and have the Adobe DNG Converter installed in your Applications folder."
                    end if -- ------------------------- shouldProceed
          end tell
end importActionForVersions
-- ------------------------------------------------------- checkSetup -------------------------------------------------------------------------------
on checkSetup()
          set isOK to true
          set theMessage to "Entered checkSetup"
  log_event(theMessage, doLog_checkSetup)
  -- -------------------------------------- Check Mac OS X's version
          tell application "Finder"
                    set theMessage to "checkSetup-1 tell finder"
  log_event(theMessage, doLog_checkSetup) of me
                    set theVers to (get version)
                    considering numeric strings
                              if theVers ≥ "10.5.2" then
                                        set isOK to true
                              else
                                        set isOK to false
                              end if
                    end considering
          end tell
          set theMessage to "checkSetup-1 theVers is " & theVers
  log_event(theMessage, doLog_checkSetup) of me
  -- -------------------------------------- Check for the DNG converter
          tell application "Finder"
                    set theMessage to "checkSetup: tell Finder"
  log_event(theMessage, doLog_checkSetup) of me
                    try
                              set theMessage to "checkSetup: tell trying"
  log_event(theMessage, doLog_checkSetup) of me
                              set theApp to item "Adobe DNG Converter" of folder "Applications" of startup disk
                              set theMessage to "checkSetup: set theApp"
  log_event(theMessage, doLog_checkSetup) of me
                    on error
                              set theMessage to "checkSetup: on error"
  log_event(theMessage, doLog_checkSetup) of me
                              set isOK to false
                              set theMessage to "checkSetup: set isOK" & isOK
  log_event(theMessage, doLog_checkSetup) of me
                    end try
          end tell
          set theMessage to "checkSetup-on exit isOK is " & isOK
  log_event(theMessage, doLog_checkSetup) of me
          return isOK
end checkSetup
-- ------------------------------------------------------- log_event -------------------------------------------------------------------------------
on log_event(theMessage, yesDo)
          if yesDo then
                    set theLine to (do shell script ¬
                              "date +'%Y-%m-%d %H:%M:%S'" as string) ¬
                              & " " & theMessage
                    if firstLog then
                              do shell script "echo " & quoted form of theLine & "> ~/Library/Logs/Aperture_Convert-events.log"
                              set firstLog to false
                    else
                              do shell script "echo " & quoted form of theLine & ">> ~/Library/Logs/Aperture_Convert-events.log"
                    end if
          end if
end log_event
-------- LOG FILE
2012-08-13 20:38:41 Executing importActionForVersion
2012-08-13 20:38:41 exportFolder is Macintosh HD:private:var:folders:rk:24mylhfd1h7dflbsg90x51100000gn:T:TemporaryItems:
2012-08-13 20:38:48 -----Starting Convert: 2 version(s) passed in and shouldProceed is true
2012-08-13 20:38:48 ----------If shouldProceed: Beginning evaluation of selected images versions
2012-08-13 20:38:48 ---------------Repeat with: Operating on image version 1 of 2
2012-08-13 20:38:49 ---------------Repeat with: The file filename is IMG_2025.JPG
2012-08-13 20:38:49 ---------------Repeat with: curImg online true
2012-08-13 20:38:49 --------------------if online: curImg 1 of 2 is online
2012-08-13 20:38:49 --------------------if online: The file suffix is JPG
2012-08-13 20:38:49 --------------------if NOT p_rawSuffices: p_rawSuffices DOES NOT contains theSuffix JPGnumIgnore= 1
2012-08-13 20:38:49 ---------------Repeat with: completedFiles 1
2012-08-13 20:38:50 ---------------Repeat with: Operating on image version 2 of 2
2012-08-13 20:38:50 ---------------Repeat with: The file filename is CRW_2037.CRW
2012-08-13 20:38:50 ---------------Repeat with: curImg online true
2012-08-13 20:38:50 --------------------if online: curImg 2 of 2 is online
2012-08-13 20:38:50 --------------------if online: The file suffix is CRW
2012-08-13 20:38:50 --------------------if p_rawSuffices: p_rawSuffices contains theSuffix CRW
2012-08-13 20:38:50 --------------------if p_rawSuffices: Source Project Path is Untitled Project and the project name is Untitled Project
2012-08-13 20:38:51 --------------------if p_rawSuffices: Number Processed is 1
2012-08-13 20:38:51 --------------------if p_rawSuffices: tempDir is Macintosh HD:private:var:folders:rk:24mylhfd1h7dflbsg90x51100000gn:T:TemporaryItems:
2012-08-13 20:38:51 --------------------if p_rawSuffices: curImg is not empty

Similar Messages

  • What is difference between Oracle version  and DB version.

    What is the difference between Oracle version and DB Version?
    How we came to know about the installed version through SQL query.

    SQL> select * from v$version;
    BANNER
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    PL/SQL Release 8.1.7.0.0 - Production
    CORE 8.1.7.0.0 Production
    TNS for Linux: Version 8.1.7.0.0 - Development
    NLSRTL Version 3.4.1.0.0 - Production
    SQL>
    Joel P�rez

  • Difference between production version and routing

    hello pp experts,
                            why do we create production version, and what's the difference between production version and routing?

    Dear sarfaraz lodhi ,
    Production version is a combination of BOM & Routing in the case of Discrete Manufacturing and it's a
    combination of BOM & Rotuing/Rate Routing in the case of Repetitive Manufacturing.
    Created either through MM02 by selecting MRP4 view or else through C223
    A production version determines the various production techniques that can be used to produce a material.
    It defines the following information:
    ·        Alternative BOM for a BOM explosion
    ·        Task list type, task list group, and group counter for assignment to task lists
    ·        Lot-size restrictions and period of validity
    A material can have one or more production versions.
    Routing contains the set of operation that's required for producing a product either a HALB - Semi-
    Finished product or else a FERT - Finished Product.
    The T code for creating Routing is CA01.
    Regards
    Mangalraj.S
    Edited by: Mangalraj.S on Sep 24, 2008 10:27 AM

  • Difference between "print" statements and "select" statements , TSQL

     What is the difference between "print" statements and "select" statements when it omces to debugging and watching varibles in the stored procs .....

    SELECT statement is part of the ANSI SQL language.
    PRINT command is not part of the SQL language, it is used for debugging in T-SQL.
    BOL:" Returns a user-defined message to the client.
    A message string can be up to 8,000 characters long if it is a non-Unicode string, and 4,000 characters long if it is a Unicode string. Longer strings are truncated. The
    varchar(max) and nvarchar(max) data types are truncated to data types that are no larger than
    varchar(8000) and nvarchar(4000).
    RAISERROR can also be used to return messages. RAISERROR has these advantages over PRINT:
    RAISERROR supports substituting arguments into an error message string using a mechanism modeled on the printf function of the C language standard library.
    RAISERROR can specify a unique error number, a severity, and a state code in addition to the text message.
    RAISERROR can be used to return user-defined messages created using the sp_addmessage system stored procedure."
    LINK: http://technet.microsoft.com/en-us/library/ms176047.aspx
    The SSMS (client software) returns SELECT output to Results and PRINT output to Messages.
    The SQLCMD -o (output file) option captures all outputs into one file mixed.
    Kalman Toth Database & OLAP Architect
    T-SQL Scripts at sqlusa.com
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Difference between Planning Version and Simulation Version

    Hi friends,
    What is the difference between Planning Version and Simulation Version?
    Thanks,
    Debi

    Debi
    There are a lot of threads in this forum that give detailed info about version concept. Also you can refer to help.sap.
    Anyways , planning version is the version against which your live cache data is stored.  The data against this version is the one that the planners and buyers are going to refer to or use to make their planning and buying decisions. Data against the planning version is nothing but data relevant to the business .
    There may be instances where you would like to simulate some scenario. If you want to do trial and error analysis and at the same time if you do not want to impact the actual business data , then you create simulation versions and simulate your scenario.
    For example your actual sales orders received for the month of March may be 100 CS. This is the actual number that will be stored against your planning version. Lets say the demand planner wants to find out what will be the impact if there is a sudden bulk demand from a new customer for 500 CS - that is if he wants to do a what - if analysis then he can create a simulation version and try to check the impact .
    Thanks
    Aparna

  • Diff between Project version and selection version

    Hi All
      what is the functions of the project version and selection version and difference between the same.
    Thanks
    S.Murali

    Hi,
    Refer below sap help link for function and use of project version & selection version.
    project version
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/d8/1fe8344d1d166be10000009b38f83b/frameset.htm
    selection version
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/41f41846ee11d189470000e829fbbd/content.htm
    Regards,
    Sandeep
    Edited by: Sandeep Theurkar on May 23, 2009 1:29 PM

  • Difference between 620 version and 640 version of librfc32.dll

    Hi,
    What is the difference between librfc32.dll (620 version) and librfc32.dll( 640 version).
    If I built my application with librfc32.dll(620 version) can I deploy it in a environment where librfc32.dll(640 version)  is used.
    please let me know if my application will break or face some problems.
    Could you please reply as soon as possible , we are facing problem with production environment, just want to confirrm if this could be the root cause.
    Thanks
    Sivasankari

    hi sivashankari,
    librfc32.dll troubles
    Once you are working with SAP BW BEx tool and accessing different version of SAP BW you might encounter an error in BEx Query Designer says: “"Run-time error '-2147417848 (800010108)': Automation error The object invoked has disconnected from its clients".” BEx Query Designer crashes afterwards.
    Solution is to replace the RFC library librfc32.dll stored in your \WINDOWS\system32 on the client PC with a proper version depends on you SAP GUI version:
    620: Version >= 6206.6.1938.4727 (620x.x.x.4727).
    640: Version >= 6400.3.79.4740 (640x.x.x.4740).
    710: check the newest patch of SAP GUI .
    regards
    karthik
    reward me points if usefull

  • Difference between full version and academic version

    So I just received my first FCE4 software but it has a sticker saying "Academic: Not eligible for upgrades"
    I was wondering why the academic version was a little cheaper... I just wanted to know before I actually open this package, what kind of benefits would I be missing (other than not being able to upgrade to FCE5 I guess...) if I just decide to keep this academic version? Do you recommend just keeping this version or get a regular full version?

    There are only 2 differences between the retail & academic versions, and they both pertain to the license, not the functionality of the software:
    1 - the price of the academic version is lower than the retail version
    2 - when you license (purchase) the academic version, you are not eligible to upgrade it in the future by purchasing an upgrade. (So, if you have FCE4 Academic Version, and someday FCE5 comes out, at that time you would have to purchase a full FCE5 Retail or FCE5 Academic in order to upgrade; you would not be eligible to purchase a reduced-price FCE5 Upgrade version.)

  • Difference between image file and .bin file

    I want to know whats the difference between img and bin file and which is better

    Functionally and generically, they are the same thing for devices like routers and switches and firewalls ...
    Some "images" consist of more than one binary file ... like code for specific blades or modules (like a radio module on an AP).
    In most cases, it's just a naming convention and they are the same.
    For some systems, like computers, a binary file is an executable ... it gets loaded into some flavor of memory, usually RAM, and the instructions are executed. During the initial load, some code is typically executed to initialize the various sub-systems. All of this initialization takes time (think about booting a desktop or laptop computer from power-on to "ready-to-go").
    One way to speed things up a little is to save the initialized environment as an "image" or snapshot of the "ready-to-go" state of the device.
    Once the snapshot is saved, it can be loaded directly into a block of memory without the need of all of the initialization code or interpretation of the binary code. This tends to make things "boot" faster. As long as the system's hardware configuration hasn't changed since the snapshot / image was taken, it should be exactly as if the device was never turned off. Some desktop and laptops have a "hibernate" mode .. everything is powered down, but it boots up as fast as the snapshot image can be pushed into the memory from the hard drive.
    If you have a specific example, post it up.
    Good Luck
    Scott

  • Main difference between windows version and linux/mac version?

    Hi,
      Our lab just buy a labview package 2011 and it comes with several dvds, including
    For windows
    1) NILabView Core Software DVD1/2
    2) NILabView Core Software DVD2/2
    3) Extended Development Suite
    4) Labview Option DVD1/2
    5) LabView Option DVD 2/2,
    6) Ni device drivers
    For Mac/Linux
    1) Professional Developement SyStem
    Why there are that many dvds for windows, but only one disc for mac/linux? What's the main difference? I aslo curious if there is any advantage to use MAC/LINUX (in terms of efficiency or speed)?

    I have been using LV on the Mac almost exclusively since version 1.2.
    <soapbox mode = ON>
    It has been a major source of frustration, that so many features available to the Windows versions are not available on the Mac.  Some, like Vision, started (as iMAQ ) on the Mac, but are now Windows-only. Things like .NET are understandable, just as the Windows version probably does not support Apple Events. But support for all DAQ devices, Vision, the State Chart program and many others are missing with no good explanation from NI.
    Just trying to figure out what is supported on which platforms is a major headache. NI's website does not make that obvious, particularly at the Buy page, where is should be extremely clear as to what you get for ~$5k or not. Given the substantial discrepancy between the features on the various platforms, the price should also reflect that.
    Field representatives and phone support people often do not know these things as well.
    Nancy Pelosi is quoted as having said that the health care bill had to be passed so we could see what was in it.  Apparently some of the marketing people at NI are the same way.  But the Mac/Linux versions at full price so you can find out what is not in them.
    <\soapbox mode = OFF>
    Lynn

  • Difference between Academic Version and Full Version?

    Can anyone tell me what the difference is between the Academic version of Final Cut studio, and the Retail versoin other than a huge price difference??
    THanks!

    What do schools do when a new version comes out, are they expected to shell out another 700 bucks for each license they currently have?
    if you want the new features you upgrade
    if the version you have is working for you why would you be expected to upgrade, nobody is forcing you to upgrade
    man you are soooo lucky
    back when I was in Film school FCP alone cost over 1200 same for DVDSP and I had to get AFX 5.5 and Protools (Motion and STP weren't out yet) each over 1K (PT over 1500)
    or ANOTHER academic copy
    WHY knowing this and planning on needing FCP AFTER you are eligible to use EDU (after you graduate) consider locking your self into another nonupgradeable path
    How am I gonna explain to my dad that he needs to shell out MORE money than the original copy just for an upgrade?
    why are you worring about this right now
    no new X.0 version has been announced so there is no need for you to worry about this. if you NEED the new features IF there is another version announed at a later event why not start saving now
    nothing will stop the version you are using now from working
    you don't NEED to upgrade with every version
    NOWHERE on the educational Final Cut Studio page does it say that it is not upgradeable.
    yes it is
    it has been also discussed here, at nausea, when ever someone upgrades without reading or checking resources
    I forget the exact link but basically it says "you cannot use a Academic version or NFR versions as a starting point for upgrading to version 5/studio"
    DAVE

  • Difference between educational version and standard version?

    I'm a student. I presently am running the regular Creative Cloud (I took advantage of the special upgrade pricing) but I'm thinking of switching to the educational version after my subscription expires in August. Is there any difference in functionality between these two versions? I do freelance work, is this a conflict with the licensing of the educational version of CC?
    Thank you!

    There are no functionality or licensing differences with the educational subscription for the Creative Cloud.

  • Differences between latest version and previous versions of OBIEE

    I want to know what is the latest version of OBIEE and its previous version. I aslo want to know the difference/enhancements from previous version to latest version.
    Thanks
    Mano

    Hi Mano,
    did you already check the [new features guide|http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416/toc.htm] and the [release notes|http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10404/toc.htm]?
    Cheers,
    C.

  • Any difference between motherboard version and PCB version?

    I have MS-6340.
    In the first page of the manual is written (Version 2.0) and in the scond page written (Manual revision:2.0)
    While between the PCI slots of the motherboard is written VER:1 (guess this stands for PCB version)
    - Is it possible to have PCB version different than the motherboard allover version?
    - And in my case, shall I say that my mobo is version 2.0 with PCB ver. 1? or should consider it as ver. 1?

    your motherboards a version v 1
    dont worry about what revision the manual is

  • Flash Builder 4.6  differences between debug version and apk release version

    I've been struggling for several days now.  I have a simple swf file that just says 'hello world' on a green background. It is written in Flash 8 actionscript 2. I've used the Flash Builder  actionscript mobile project and flex mobile project in both cases and  I can get it to download and display quite happily in the debug version on the desktop emulator and on my ASUS eee Pad Transformer Prime using a USB cable .  Thinking that all is ok I then 'export the release build'  and the result is a blank white screen on my tablet.
    I then did a simple Flex Project as per an adobe 'my first app' tutorial (hellow world!/Success!) and exported the release build with the same certificate I used before and it worked fine.
    So after all that my question is - what could be the reason that my tablet is quite able to run a debug version of my embedded swf file but not the apk release version of it?
    Any ideas?
    thanks
    Nick

    When I run the tool I dont see flash builder as an option?

Maybe you are looking for

  • SD OVERALL STATUS CHANGE

    Hi Gents, The requirement is that, there is trial Sales Order is there, which will not be invoice nothing will happen, it will just for trial... So what i need is that once that trial is expire (7 days assumption), is there any way that this sales or

  • Mac Mini (Late 2012) Freezing when waking from Sleep

    Since I upgraded to Yosemite, I have noticed that if my Mac Mini goes to sleep, and I try waking it. It will freeze, and I am forced to shut it down manually. By doing this I am afraid that it is going to damage the hard drive. It never occurred unti

  • Estimating how much temp space a query will take?

    I have a query that is "SELECT * FROM some_table ORDER BY field_name DESC". some_table has an avg_row_len of 458 bytes and stats are current. There are just about 6 million rows in some_table. TEMP is set to 500MB and the query fails for lack of TEMP

  • Upgrading plug-ins in InCopy 5.5

    I get this error message when trying to import styles from InDesign 6 to an InCopy 5.5 document: I am using InDesign CS6 (8.0.2). I cannot find any information on how to upgrade the plug-ins. Can anyone help?

  • System.InvalidCastException error

    Hi, I have a form with a matrix and an import button. Users can import records from a text file into a user defined table. After the import into table is complete, the form is refreshed with records from the table. It all works fine when there are on