AppleScript - Launching an app package, problems

Help!
  I have a Filemaker runtime app that I want to launch using a single icon that I can distribute easily (and have a drag-install directly into the user's App folder). I found a page that allows me to do this using AppleScript:
http://campsoftware.com/2010/11/filemaker-runtime-packages-and-installer/
They have me using a script that looks like this:
-- Path to the runtime in the App
set appPath to (((path to me) as text) & "Contents:Resources:PSD:PSD.app")
-- Convert path to a POSIX path
set newAppPath to POSIX path of appPath
-- executing the script file
try
    set command to "open " & newAppPath
    do shell script command
end try
I save that script as an app, then I go into the app's package contents and drop my runtime in the Resources folder. That way, the file path knows where to find the .app and launch it. but when I double-click, it does not work. At all. It just tries to launch in the dock, and immediately terminates, never opening the runtime app.
I'm positive that the file path is correct. How can I fix this problem?
thanks for your time.

The 'quoted form of' text solved the issue. Here's the script in its working condition:
-- Path to the runtime in the App
set appPath to (((path to me) as text) & "Contents:Resources:PSD:PSD.app")
-- Convert path to a POSIX path
set newAppPath to quoted form of POSIX path of appPath
-- executing the script file
try
    set command to "open " & newAppPath
    do shell script command
end try
Thanks for all the help!

Similar Messages

  • Need help w/ applescript to restart, launch an app, restart, then repeat

    Hey Everyone,
    Ok. I want to write an AppleScript that will do the following:
    1) restart computer
    2) launch 1st app for x sec.
    3) restart
    4) launch 2nd app for x sec.
    5) restart
    6) launch 3rd app for x sec.
    6) restart
    However, the only code I've been able to find that restarts the computer is the following:
    tell application "Finder"
    restart
    end tell
    While this does restart the computer, I can't find a way to integrate it with my "sub" AppleScript that launches the app. So far, my script only does the following:
    1) Launch 1st app for x sec
    2) Restart
    I'm having problems launching things automatically after a restart. Does anyone have any suggestions?
    thanks,
    --Jonathan

    The fact that you restart the machine automatically terminates your script, which is why you don't continue after the restart.
    What you will need to do is use some persistent data to keep track of the iterations. You will then need to add your script to the login items (so it's launched the system restarts) and it can use its persistent data to know how many restarts it has done. For example (untested):
    property numRestarts: 0 -- this will be the restart counter
    on run
      if numRestarts = 0 then -- first run
        set numRestarts to 1
        tell application "System Events" to restart
      else if numRestarts = 1 then
        tell application "App1" to activate
        delay 120 -- wait 120 seconds (two minutes)
        set numRestarts to 2 -- increment the counter
        tell application "System Events" to restart
      else if numRestarts = 2 then
        tell application "App2" to activate
        delay 120 -- wait again
        set numRestarts to 3
        tell application "System Events" to restart
      end if
      -- add more cases here
    end run

  • Captivate 8 Continually Crashes: When trying to publish, When trying to use the Object Style Manager. Also it is blocked by Windows Firewall (adobecaptivatews) every time it launches. Working with Captivate App Packager the pane to import from Adobe Edge

    Captivate 8 Continually Crashes: When trying to publish, When trying to use the Object Style Manager. Also it is blocked by Windows Firewall (adobecaptivatews) every time it launches. Working with Captivate App Packager the pane to import from Adobe Edge is missing, so not clear how to import. Overall it seems unstable. Am I doing something wrong? Trying to evaluate before buying so working on a trial version (14 days left), but a bit concerned with Captivate 8 Performance. Please help! :-

    Hi Vikram and Lilybiri,
    Thanks for your responses :-)
    I'm working on Windows 8.1... I think that I may have found the issue... I was saving the file in a project directory rather than the default My Captivate Projects folder...
    Perhaps Captivate was struggling to find resources it needed?
    It hasn't crashed for a while now, though it is struggling - I'm working with a 54 slide PPT presentation that is linked and it takes a very long time to interact.
    Sometimes it says that I've removed slides, which I haven't?
    Best,
    Christy.

  • Mac OS X: calling Self-Contained App Package Ant Tasks with jenkins

    Hello,
    we're trying to create a self-contained application package using the ant packager tasks running on Mac OS X Mountain Lion using Java 1.7.0_07-b10. This works fine when it is executed as a regular build. However, when we try to execute it from a Jenkins build job that is forced to use our "Mac Build Node" everything works fine as well BUT the packager fails to create a DMG-Image. It seems that the Applescript, created by the Packager to build the DMG, has problems to talk to the Finder application. Probably because it is executed remotely.
    Here is the Stacktrace:
    16:36:55 Using default package resource [script to run after application image is populated] (add package/macosx/sfx-client-post-image.sh to the class path to customize)
    16:36:55   Using default package resource [DMG setup script] (add package/macosx/sfx-client-dmg-setup.scpt to the class path to customize)
    16:37:09 /var/folders/rk/mtx558t16p1f50_432f2dkq00000gq/T/build6253445559899130246.fxbundler/macosx/sfx-client-dmg-setup.scpt:55:59: execution error: Finder got an error: Application isn’t running. (-600)
    16:37:09 java.io.IOException: Exec failed with code 1 command [[osascript, /var/folders/rk/mtx558t16p1f50_432f2dkq00000gq/T/build6253445559899130246.fxbundler/macosx/sfx-client-dmg-setup.scpt] in unspecified directory
    16:37:09      at com.sun.javafx.tools.packager.bundlers.IOUtils.exec(IOUtils.java:131)
    16:37:09      at com.sun.javafx.tools.packager.bundlers.IOUtils.exec(IOUtils.java:107)
    16:37:09      at com.sun.javafx.tools.packager.bundlers.IOUtils.exec(IOUtils.java:101)
    16:37:09      at com.sun.javafx.tools.packager.bundlers.MacDMGBundler.buildDMG(MacDMGBundler.java:356)
    16:37:09      at com.sun.javafx.tools.packager.bundlers.MacDMGBundler.bundle(MacDMGBundler.java:80)
    16:37:09      at com.sun.javafx.tools.packager.PackagerLib.generateNativeBundles(PackagerLib.java:452)
    16:37:09      at com.sun.javafx.tools.packager.PackagerLib.generateDeploymentPackages(PackagerLib.java:435)
    16:37:09      at com.sun.javafx.tools.ant.DeployFXTask.execute(DeployFXTask.java:215)I'd like to know if this is a known problem or a general limitation of the packager (or the way DMG creation works in OS X) ... OR if there is anything that I can do/configure/change to make it execute correctly when called via ssh on a remote mac?
    Thanks in advance!
    Jens

    Apple script is used to style dmg installer (position icons, etc.).
    This is unavoidable step unless you will only build .app and generate .dmg on your own.
    It should still work over ssh if you log as a same user on the desktop on the build system.
    Finder can not initialize if it can not display. We use Hudson in house to do builds and they are building .dmg bundles fine as long as build slaves
    have same user logged in on desktop on the slave node. I assume similar should work for Jenkins but i have not tried myself.
    Otherwise, you can do custom dmg along these lines:
    - create .dmg image once from manual build
    - convert .dmg file to read-write form
    - remove content of you application folder (but keep top level app directory)
    - add this dmg to the build (should be able to compress it if size is concern)
    - at the build time - mount it, copy .app content into the image, then convert .dmg into compressed read only form

  • Renew subscription EVERY time I launch an app??

    Hey guys, I was asked by the AdobeCare Twitter Account to post my issue in this forum, so here I am:
    I recently subscribed to a Adobe CC membership and everything worked fine when I had the CS6.
    Now since the CC Versions were released, I wanted to update of course. So I did.
    Since then I am constantly haveing the same issue: I can not launch an app without having to do so many steps!
    Here is what I have to do in order to open up any app (I have to do this EVERY time I launch an app..meaning when I open PS I do this, when I open ID I do this etc)
    1) I click on the icon of the app (in this example PS)
    2) I get the following "error":
    (it is asking me to renew my subscription)
    3) I click on "try again" and I get this message:
    (it says "Thank you, your subscription for CC is now activated")
    4) I click on "Continue" and get this message (again):
    So I click on "Do you have another Adobe-ID?" and get to see this window:
    ... where I type in my Password and click on "Sign in" resulting in this:
    and finally after clicking on "accept" in this:
    ...which basically is the same windows I get to see right at the beginning.
    At this point I want to mention again that I have to do this  e v e r y t i m e  I start an app, for each app I have to run through all of these steps and if I close an app by accident and re-open it, I have to do this again.
    I already tried to delete that file in the OOBE folder, did not work out.
    Also, I am lacking all the presets in Premiere Pro (Digital DSLR etc) which makes me think, that all of my apps are running in trial mode..? At least I had this issue, when I launched Premiere as a trial in the past.
    Don't get me wrong..But this is totally annoying and kills my workflow.
    Any help? I would greatly appreciate it!
    Thanks and greets from Germany!
    Danilo

    On the device that you don't want the apps to be downloaded on, go to Settings > iTunes & App Stores > Automatic Downloads. Once you turn that off, your problem will be fixed.

  • Acrobat 9.3.4 no longer finds bookmarked non-PDF files (and then launches assoc app)

    I produce a documentation DVD consisting of a one-page PDF file of ~ 1400 bookmarks and a lot of content.  The bookmarks point to the content on the DVD which includes pdf files as well as text, DOC, XLS, and other misc. file types, and a large number of html, swf, flv, .jpg, etc. files which make up 4 complete web sites.  The web sites are entirely contained on the DVD (no extermal internet access is referenced or required)
    Content is accessed by clicking a bookmark which simply opens the file (regardless of type.)  Prior to Acrobat 9.3.4, appropriate warnings popped up for non-PDF files but if allowed by the user, the appropriate app was launched for the requested file.
    Since applying 9.3.4, a "Launch File" warning box pops up showing the file name (which lacks a device) and when the warning's "Open" button is pressed, a Windows error appears with the message "Windows cannot find 'file.txt'.  Make sure you typed the name correctly, and then try again.  To search for a file....  ", and finally an Adobe Acrobat information box pops up and says "Could not open the file 'path/file.txt'  ".
    I have read and re-read about launching external apps, restricted urls and attachments, trust manager preferences, etc. etc.  I've added the files to the privileged locations list under the enhanced security settings and on and on.  It no longer works, yet I tested this DVD on several computers just last week and it worked fine. So, as a shot in the dark, I decided to fire up my laptop and test it there again.
    Once on, the laptop immediately wanted to update about 12,000 software products but I politely said "No, wait until i test this out!"  The test was successful and the DVD's pdf file worked great again!  At that point I let the machine apply the Acrobat 9.3.4 update (and some uncountable number of Windows patches and fixes.)  It's running a current version of Win7.  After the reboot, i tried the DVD again (under Acrobat 9.3.4) and it failed as described above.  Because of Win7 I was able to revert to acrobat 9.3.2 using System Restore.  After doing that, the DVD worked again.
    Most of our user's machines are either Macs or WinXP (current versions) and i haven't had time to figure out if you can even recover from this update under those OS's.  (It says you cannot remove it from XP, however.)  Regardless, even if i can do it for my laptop and get it working again, i cannot do it for all of our users.
    So, my question is if i am not doing something wrong, how do i let someone at Adobe know this release is broken??  If i am doing something wrong on the other hand, what is it and how do i get this to work again??
    Thanks all.

    Thanks.  I did submit a report at the site.  I hope somebody reads it as this is a big problem for us.
    Thanks again.

  • WP8.1 Universal : Error Image does not have a candidate in main app package while creating a package

    Hi everyone : 
    I just finished an universal app was gonna publish it on the store, on windows 8.1 no problem
    On Windows Phone 8.1 I got error when creating the app package for every images I declared in the app manifest
     "App manifest references the image 'Assets\Tiles\StoreLogo.png' which does not have a candidate in main app package"
    Here is a par of my manifest with my assets
    <m3:VisualElements DisplayName="Spirit Of Metal" Square150x150Logo="Assets\Tiles\Square150x150Logo.png" Square44x44Logo="Assets\Tiles\Square44x44Logo.png" Description="SoM.WindowsPhone" ForegroundText="light" BackgroundColor="transparent">
    <m3:LockScreen Notification="badgeAndTileText" BadgeLogo="Assets\BadgeLogos\BadgeLogo.png" />
    <m3:DefaultTile Square71x71Logo="Assets\Tiles\Square71x71Logo.png" Wide310x150Logo="Assets\Tiles\Wide310x150Logo.png" DefaultSize="square150x150Logo">
    <m3:ShowNameOnTiles>
    <m3:ShowOn Tile="square150x150Logo" />
    <m3:ShowOn Tile="wide310x150Logo" />
    </m3:ShowNameOnTiles>
    </m3:DefaultTile>
    <m3:ApplicationView MinWidth="width320" />
    <!--Used in XAML Designer. DO NOT REMOVE-->
    <m3:InitialRotationPreference>
    <m3:Rotation Preference="portrait" />
    </m3:InitialRotationPreference>
    </m3:VisualElements>
    I made clean, delete tempory files, restart visual studio, delete and add the picture again, open the
    manifest file to check manualy the path (it is correct with backslash)... without result.
    Finaly I found a fix :  generate app bundle at never, as my app has no specific
    assets in other language I don't understand why. 
    Is this a bug (and I would like to report it) or is there a reason to this exception ? 
    Regards

    I cannot reproduce this.  Can you create a very simple repro of this issue and post to OneDrive?
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Have to sign into my account each time I launch an app

    Hi, each time I launch an app, I have to sign in, to accept terms of contract, or I get a message saying this is a demo version. I am fed up with this !!! I have a legal version, and I don't want to sign in every day. Used it on OSX before, and there, no problem. Please fix this !!!

    http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html

  • SBS Client Application Launcher has encountered a problem and needs to close

    I logged in to a remote session on the SBS to add a user to a security group. Now, when I log on to my computer with the domain administrator account, I get the error "SBS Client
    Application Launcher has encountered a problem and needs to
    close." There is an event in the Application log associated with the error:
    Event Type: Error
    Event Source: Application Error
    Event Category: None
    Event ID: 1000
    Date:  8/29/2011
    Time:  2:27:46 PM
    User:  N/A
    Computer: CONTROLLERASST
    Description:
    Faulting application applnch.exe, version 5.2.2893.2, faulting module applnch.exe, version 5.2.2893.2, fault address 0x0002442a.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74   Applicat
    0008: 69 6f 6e 20 46 61 69 6c   ion Fail
    0010: 75 72 65 20 20 61 70 70   ure  app
    0018: 6c 6e 63 68 2e 65 78 65   lnch.exe
    0020: 20 35 2e 32 2e 32 38 39    5.2.289
    0028: 33 2e 32 20 69 6e 20 61   3.2 in a
    0030: 70 70 6c 6e 63 68 2e 65   pplnch.e
    0038: 78 65 20 35 2e 32 2e 32   xe 5.2.2
    0040: 38 39 33 2e 32 20 61 74   893.2 at
    0048: 20 6f 66 66 73 65 74 20    offset
    0050: 30 30 30 32 34 34 32 61   0002442a
    0058: 0d 0a                     ..     
    After clicking to send/not send an error report, I get back to the desktop where all appears normal. However, I can no longer access the internet while logged in under this account.
    I can log in on another PC with the domain admin account with no error.
    Any help would be appreciated.

    Hi,
    I would like to suggest you run System File Checker with command: sfc /scannow to scan and repair the system files.
    If it does not work, please also test the issue in Clean Boot.
    Clean Boot
    ================
    Let’s disable all startup items and third party services when booting. This method will help us determine if this issue is caused by a loading
    program or service. Please perform the following steps:
    1. Click the Start Button type "msconfig" (without quotation marks) in the Start Search box, and then press Enter.
    Note: If prompted, please click Continue on the User Account Control (UAC) window.
    2. Click the "Services" tab, check the "Hide All Microsoft Services" box and click "Disable All" (if it is not gray).
    3. Click the "Startup" tab, click "Disable All" and click "OK".
    Then, restart the computer. When the "System Configuration Utility" window appears, please check the "Don't show this message or launch the System
    Configuration Utility when Windows starts" box and click OK.
    What’s the result in Clean Boot?
    For more information regarding Event ID 1000, please refer to the following link:
     http://www.microsoft.com/technet/support/ee/transform.aspx?ProdName=Windows%20Operating%20System&ProdVer=5.2&EvtID=1000&EvtSrc=Application%20Error&LCID=1033 
    Regards,
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • XSL Mapper JDeveloper plugin fails to launch from App Engine

    XSL Mapper JDeveloper plugin fails to launch from App Engine ONLY WHEN THE TARGET LOCATION OF THE SERVICE CONFIGURATION POINTS TO AN HTTPS URL.
    If I make the target location field of the service configuration point to an HTTP url, the plugin launches fine.
    The error message indicates that there is a missing certificate in the chain:
    oracle.tip.tools.ide.common.xsdgrammar.SchemaGrammarException: sun.security.validator.ValidatorException: No trusted certificate found
    A basic google search on this error leads me to believe that I need to add a key to the java clients keystore on my PC. Can anyone confirm or deny this? Has anyone else encountered this?

    After digging pretty hard I believe I've found the cause and two possible solutions...and I quote...
    "This seems to be a known conflict between versions of the Digi 001, the Audio Media III card, Panther OS, Pro Tools, and QuickTime 7 and above. This Mac is running...
    OS Panther 10.3.9
    Pro Tools LE 6.2.2
    This is what I've found from http://sillydog.org/forum/sdt_8928.php (page three of this thread).
    "testing has yielded that the Audio Media III card can be used with Pro Tools LE 6.2.3 on a platform as high as OSX Panther 10.3.9 as long as you do not (I repeat do not) install QuickTime 7ever. The QuickTime 6.5.2 re-installer will not remove problems created by installing QuickTime 7."
    "Basically if you are running what Digidesign refers to as “Legacy” hardware. Audio Media III/ Toolbox or the Digi 001. You are running a version of Pro Tools LE that is incompatible with QuickTime 7. If at any point QuickTime 7 is installed you must re-install (the OS and all programs) to delete its effects, and are stalled on OSX 10.3.9 (w/o QuickTime 7)."
    Knowing this, I was able to find a possible solution here... http://fox-gieg.com/tutorials/2005/undo-quicktime-7/
    The other solution is to upgrade equipment, or re-install OS and other Apps to go backwards.
    Hope this helps some people!

  • IE 8 Thin App package in not working on system with IE 10 installed

    We have published IE8 thin app package for our users. But today I noticed that after upgrading IE browser to version 10 it is not working. when we launch the application on system with IE 8 than it is working fine.
    It crashes on systems with IE10. Any idea why it is happening?
    Regards,
    VST

    Download the offline installer here: http://fpdownload.macromedia.com/get/flashplayer/current/licensing/mac/install_flash_playe r_11_osx.dmg
    If it won't download directly, right click and "Save as"
    Go to: Mac HD/Library/Internet Plugins
    Trash the Flash Player.plugin file from there
    Go to: Mac HD/Library/Application Support/Adobe
    Trash the Flash Player folder (the whole folder)
    Empty the trash
    Reboot
    Mount the DMG and run the installer.
    BEFORE opening any Flash content in Safari, open Safari>Preferences, and check the Security tab to make sure "Allow all other plugins" is checked.

  • Bundles can't contain multiple app packages error

    Hi All,
    I am building an universal windows application targeting to multiple platforms x86,x64 and ARM.
    However when i build my project in TFS i get following exception
    "D:\Builds\22\MDWindowsClient\MDWindowsClient_dev\src\MDWindowsClient\MDWindowsClient.Windows\MDWindowsClient.Windows.csproj" (default target) (2) ->
    (_CreateBundle target) ->
    MakeAppx : error : Error info: error 80080204: The package with file name "MDWindowsClient.Windows_1.0.0.9_x86_Debug.appx" and package full name "SMDWindowsClient_1.0.0.9_x64__8cggqpkfn886j" is not valid in the bundle because the bundle also contains the package with file name "SMDWindowsClient.Windows_1.0.0.9_x64_Debug.appx" and package full name "SMDWindowsClient_1.0.0.9_x64__8cggqpkfn886j" which applies to the same processor architecture. Bundles can't contain multiple app packages for the same processor architecture, or an architecture-neutral app package with any architecture-specific app package. [D:\Builds\22\SMDWindowsClient\SMDWindowsClient_dev\src\SMDWindowsClient\SMDWindowsClient.Windows\SMDWindowsClient.Windows.csproj]
    MakeAppx : error : Bundle creation failed. [D:\Builds\22\MDWindowsClient\MDWindowsClient_dev\src\MDWindowsClient\MDWindowsClient.Windows\MDWindowsClient.Windows.csproj]
    MakeAppx : error : 0x80080204 - The specified package format is not valid: The package manifest is not valid. [D:\Builds\22\MDWindowsClient\MDWindowsClient_dev\src\MDWindowsClient\MDWindowsClient.Windows\MDWindowsClient.Windows.csproj]
    Already this kind of error was reported here https://social.msdn.microsoft.com/Forums/vstudio/en-US/ce255209-a94b-41c1-97f6-4659f5844ce3/how-to-create-a-windows-store-bundle-by-tfs-2013-build-system?forum=tfsbuildBut found no solution to this problem
    Any help will be hugely appreciated.
    Best Regards,
    Saurav

    Hi Saurav,  
    Thanks for your post.
    Your application is Windows Store application? And you can manually build(using MSBuild) your application on build agent machine successfully?
    As this is a reproduced issue and posted to feedback site, but there’s no a solution in that old feedback and it be closed, so please resubmit this issue to Microsoft Connect Feedback portal at:
    https://connect.microsoft.com/VisualStudio Microsoft engineers will evaluate them seriously. 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When I launch the app store, I get "minecraft." It will not allow me to return to the "featured" menu. I've tried rebooting / killing the app, but nothing has worked. Any insight?

    When I launch the app store, I get "minecraft." It will not allow me to return to the "featured" menu. I've tried rebooting / killing the app, but nothing has worked. Any insight?

    I have also tried the fixes offered in this forum such as using the "Other" mail in setting up the gmail accounts, and not using the dedicated gmail setting.  I also went to google and signed in and enable the additional devices.  I had the same problems with the original account I set up for gmail, but it corrected when i went to using the "Other" instead of the Gmail button.  I was able to set up the new gmail accounts on my iphone without problem and on my husband's ipad1 for his gmail account.  Just the ipad 2 is giving me problems.   Again, thanks for any suggestions.

  • "Unable to build an app package because the app manifest is invalid. Correct the errors in the app manifest"

    I'm getting this error when I click Project > Create App Packages ...
    The solution Builds without issue (Release).  I don't see any issues in the manifest.  Any suggestions on how to troubleshoot?
    VS2013 Pro, 12.0.31101.00 Update 4.

    Hi Scrump,
    Have you tried creating a new blank windows store app project and then creating app package? Does it work? This can help us to determine if this problem is caused by visual studio. If it can work, I think there is something incorrect in the manifest file
    in your project. Here is a page shows how to troubleshootds,l have questions, please post more information about your scenario.
    ntials in client app and then transmitte those crede packaging, have a look at the following link.
    https://msdn.microsoft.com/en-us/library/windows/desktop/hh973484(v=vs.85).aspx. Try finding more information about this scenario and post them here.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • I am unable to launch the app store. It terminates with an error.

    I have never been able to successfully launch the app store on my MacBook Pro. The icon momentarily appears in the dock then quickly disappears. An error is generated and is sent off to Apple, but nothing appears to have been done to either correct this problem or to give my any quidance in resolving this issue. Consequently, I am unable to upgrade to Lion (or to get anything else from the Apple Store, for that matter).

    Sadly, that did not resolve the problem. The app still terminated and generated an error. Any other suggestions?
    Here is the first portion of the error it generates:
    Process:         App Store [3200]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Identifier:      com.apple.appstore
    Version:         1.0.2 (63.1)
    Build Info:      Firenze-630100~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [239]
    Date/Time:       2011-08-17 21:43:21.942 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          23825 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  21 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      4133601A-34FD-472F-98E6-73E4DE9BFC06
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    *** Terminating app due to uncaught exception 'NSImageCacheException', reason: 'Cannot lock focus on image <NSImage 0x10037c3c0 Size={0, 0} Reps=(
    )>, because it is size zero.'

Maybe you are looking for

  • I can't open raw photos in Photoshop 5.1 coming from my nikon7100... is there a solution?

    When I try to open a raw file produced by my Nikon D70100, I get this message from my Photoshop CS5.1 "Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw".

  • Kernel Panics Galore

    Hey Gang, Just getting kernel panics galore (in fact, this is my second time writing this, because, guess what, kernel panic). And there doesn't seem to be any 'one' thing. I'm not very good at reading them, but here's the most recent: Tue Apr 25 10:

  • File System or Database

    Hi, I'm new to KM and was posed a question about a situtation I'm not familiar with.  We are going live in BI and all of our users will be saving BI Links (also known as KM Bookmarks) to our Portal Favorites which are store in KM.  With so many peopl

  • Best process for scoring my movie?

    Will I loose quality if I import my project to Garageband for the scoring and then use the output from Garageband (incl. video) for iDVD? I choose to remove the video and the video sound once I had done the scoring and then export it as an audio file

  • Issue with Flash 8 and IE7

    I have a page that contains a Flash movie that is an flv player. There is a short intro and then there is a list of videos. Clicking on a video link plays the video. When viewing the page in IE7, when any nav link on the page is clicked (there's a na