[JS] ScriptUI CS6

Hi
Can anyone help me with a bit of ScriptUI. I am building a dialog box that contains a tabbed panel containing a single tab. I am filling this window with rows of editText boxes. Is it possible to make the tabed panel scrollable? There will be times when the screen is not deep enough, and need to be able to scroll up and down.
Cheers
Roy

Hi all,
I made an easy to use scrollable panel function.
There is one significant change from the methodology used above.  That is the use of maximumSize, without using this the size of the inner panel is limited to the size of the screen.
Enjoy,
Trevor
// By Trevor http://forums.adobe.com/thread/1229123?tstart=0
function addScrollablePanel (toTheParent,
                                            locationX,
                                            locationY,
                                            outerPanelWidth,
                                            outerPanelHeight,
                                            innerPanelWidth /* leave blank if not scrolling horizontally*/,
                                            innerPanelHeight /* leave blank if  not scrolling vertically*/,
                                            barThickness /* optional */)
        var  padding = 2, innerPanel, outerPanel, scrollbarH, scrollbarV;
        innerPanelWidth || innerPanelWidth = outerPanelWidth; // if the optinal variables are not defined then define them
        innerPanelHeight || innerPanelHeight = outerPanelHeight;
        barThickness || barThickness = 15;
        innerPanelWidth += padding;
        innerPanelHeight += padding;
        scrollbarH = (innerPanelWidth != outerPanelWidth + padding);
        scrollbarV = (innerPanelHeight != outerPanelHeight + padding);
        if ($.os.match(/Windows/i))
                 scrollbarV && scrollbarV = toTheParent.add('scrollbar', [locationX + outerPanelWidth - barThickness -  padding, locationY + padding , locationX + outerPanelWidth  -  padding, locationY + outerPanelHeight  - padding - (scrollbarH && barThickness)]);
                 scrollbarH && scrollbarH = toTheParent.add('scrollbar', [locationX + padding, locationY + outerPanelHeight - padding -barThickness,  locationX + outerPanelWidth - padding - (scrollbarV && barThickness), locationY + outerPanelHeight - padding]);
                 scrollbarH && scrollbarV && toTheParent.add('statictext', [locationX + outerPanelWidth - barThickness - padding , locationY + outerPanelHeight - barThickness - padding, locationX + outerPanelWidth - padding, locationY + outerPanelHeight - padding]); // fill the gap between the scrollbarbuttons
                 outerPanel = toTheParent.add('panel',[locationX, locationY, locationX + outerPanelWidth, locationY + outerPanelHeight]);
        else // Mac
                outerPanel = toTheParent.add('panel',[locationX, locationY, locationX + outerPanelWidth, locationY + outerPanelHeight]);
                scrollbarV && scrollbarV = toTheParent.add('scrollbar', [locationX + outerPanelWidth - barThickness -  padding, locationY + padding , locationX + outerPanelWidth  -  padding, locationY + outerPanelHeight  - padding - (scrollbarH && barThickness)]);
                scrollbarH && scrollbarH = toTheParent.add('scrollbar', [locationX + padding, locationY + outerPanelHeight - padding ,  locationX + outerPanelWidth - padding - (scrollbarV && barThickness), locationY + outerPanelHeight - padding - barThickness]);
                scrollbarH && scrollbarV && toTheParent.add('statictext', [locationX + outerPanelWidth - barThickness - padding , locationY + outerPanelHeight - barThickness - padding, locationX + outerPanelWidth - padding, locationY + outerPanelHeight - padding]);              
        innerPanel = outerPanel.add('panel'); // set the bounds after setting the maximumSize
        innerPanel.maximumSize = [innerPanelWidth * 2, innerPanelHeight * 2]; // This needs to be set to at lest the required size otherwise the panel size is limmited to the screen size
        innerPanel.bounds = [0, 0, innerPanelWidth, innerPanelHeight]; // now we can set the size :-)
        scrollbarV && scrollbarV.jumpdelta = 100 * outerPanelHeight / innerPanelHeight; // Make size of bar whatdoyoucallit (drag thing) propotional to the size of the windows
        scrollbarH && scrollbarH.jumpdelta = 100 * outerPanelWidth / innerPanelWidth; // Make size of bar whatdoyoucallit (drag thing) propotional to the size of the windows
        scrollbarV && scrollbarV.onChanging = function () {innerPanel.location.y = scrollbarV.value*(outerPanelHeight)/100 - scrollbarV.value*(innerPanelHeight)/100 - padding *(1-scrollbarV.value/100) };
        scrollbarH && scrollbarH.onChanging = function () {innerPanel.location.x = scrollbarH.value*(outerPanelWidth)/100 - scrollbarH.value*(innerPanelWidth)/100 - padding *(1-scrollbarH.value/100) };
        innerPanel.location.x -= padding;
        innerPanel.location.y -= padding;
        return innerPanel;
function hiJareck (toTheParent, accross, down, n, nn)
        accross || accross = 1;
        down || down = 1;
        /*        if (!accross >1) accross = 1;
        if (!down >1) down = 1;*/
        for (n = 0; n < down; n++) for (nn = 0; nn < accross; nn++) toTheParent.add('edittext',[20+nn * 140,15+n*30, 130 + nn * 140 ,35+n*30], "Hi Jareck #"+ (n+1) + " #"  + (nn+1) );
/* ****************** USAGE ********************* */
var w = new Window ("dialog","My Horizontally Scrollable Panel",[100, 100, 900 , 600]);
horizontalScrollablePanel = addScrollablePanel (w, 20, 20, 250, 70, 3700, false, 20);
horizontalScrollablePanel2 = addScrollablePanel (w, 20, 100, 250, 70, 1000, false, 20);
verticalScrollablePanel = addScrollablePanel (w, 300, 20, 200, 150, false, 1000, 20);
verticalScrollablePanel2 = addScrollablePanel (w, 510, 20, 200, 150, false, 1000, 40);
vertAndHorzScrollablePanel = addScrollablePanel (w, 250, 190, 310, 210, 3520, 820);
hiJareck(horizontalScrollablePanel, 26, 1);
hiJareck(horizontalScrollablePanel2, 7, 1);
hiJareck(verticalScrollablePanel, 1, 30);
hiJareck(verticalScrollablePanel2, 1, 30);
hiJareck(vertAndHorzScrollablePanel, 25, 25);
w.show();

Similar Messages

  • CS6 ScriptUI Scrollbar issues

    We're working on building a palette with a scrollbar. However, we're running into an issue with the display in CS6. We've gotten it to display correctly on Windows and Macs in previous versions of Bridge, but CS6 seems to have a bug even after the most recent update (version 5.0.1.21).
    The scroll bar appears as below.
    When we changed the dimensions of the scrollbar, we found that not only was the scrollbar distorted but it's actually oriented horizontally to control the vertical position.
    We've tried nesting the scrollbar in a group or giving it a separate panel, as well as giving those panels and groups a specific column orientation, but nearly all of those results give us something like the following:
    The following code was our last iteration that gives the above output:
    #target bridge
    if (BridgeTalk.appName == 'bridge')
        // dimension and font variables
       var fF = ['fill', 'fill'];
       var fT = ['fill', 'top'];
       var lblSize = [60, 15];
       var lblBounds = [5, 10, 60, 27];
       var etFont = ScriptUI.newFont ("Arial", 11);
       var etBounds = [10, 10, 200, 27];
        // Create the TabbedPalette object, of type "script"
        var tbPalette = new TabbedPalette( app.document, "CSU Metadata", "CSU_Metadata", "script", "right", "bottom");
        // Create a ScriptUI panel to be displayed as the tab contents.
        var panel = tbPalette.content.add('panel', "x:0, y:0, width:300, height:500", "");
        var tbPanelSbGrp = tbPalette.content.add('panel', "x:302, y:0, width:200, height:500", 0, 0, 20, 500);
        tbPanelSbGrp.orientation = 'column';
        var tbPanelSb = panel.add('scrollbar', "x:302, y:0, width:40, height:500");
        tbPanelSb.stepdelta = 10;
        tbPanelSb.jumpdelta = 40;
        tbPanelSb.onChanging = function() {
         var scrollVal = Math.round(this.value);
        this.value = scrollVal
    Has anyone found a work around for this problem? I've seen the same problem mentioned elsewhere but without a solution:
    http://www.ps-scripts.com/bb/viewtopic.php?f=9&t=4915
    http://feedback.photoshop.com/photoshop_family/topics/extendscript_ui_not_drawing_correctl y_in_bridge?from_gsfn=true

    I have given up on this.  More than a year has passed and the Bridge ScriptUI is still non-functional.  I am looking for another solution for my workflow so I can ditch Bridge/Photoshop and find a vendor that supports their products.

  • AI CS6, ScriptUI, and images with transparency

    ESTK for AI CS6 is already known to create problems (e.g. http://forums.adobe.com/message/4711851).
    It’s possible that, in dialogs created with ScriptUI, AI CS6 also fails to display images with transparency properly. On my (Mac) system at least, such images appear with an aliased edge.
    If this is true it’s doubly unfortunate, since with CS6 Adobe chose to make AI’s background interface colour adjustable—which makes interface images with transparency something of a requirement.
    One workaround, which sadly negates the whole business of variable interface background colour, is to create dialog images with a background colour instead of transparency, and then force the dialog to display with the same background colour. For this technique we’re indebted again to Peter Kahrel’s invaluable ScriptUI for Dummies (www.kahrel.plus.com/indesign/scriptui.html). Page 69 of that publication shows how to do this—for example:
    win.graphics.backgroundColor = win.graphics.newBrush(win.graphics.BrushType.SOLID_COLOR,[0.5,0.5,0.75]);
    The process is, to say the least, quirky: and, as Peter mentions, poorly documented by Adobe. But I hope it may be helpful to others trying to use ScriptUI.
    The more I see of AI CS6 the more I like CS4! Can anyone tell me if I’m likely to miss any features or run into problems if I develop scripts for CS6 using ESTK for CS4?

    Yes this is where things can quickly become very complex too… I for the most part script for a particular version… Im almost certain scriptUI arrived with CS3 so you will need to make checks for this… There are a couple of differences between how they look from one OS to another… Oh yes a test my script cloud… just floated past the window or was it a flying pig hard to tell… I have long thought purchasing a version of an app should qualify you access to previous versions but thats never going to happen… You may get this on some expensive developer program but not for part time scripters…
    BTW if you have an old G5 knocking about… Then you can now get CS2 FOC great thats the one I've got…

  • After Effects CS6 ScriptUI Initialization Error

    So I've received:
    After Effects warning: Au error was encountered attempting to initialize ScriptUI. {Initialization error" - Initialization error 'ApplicationEnvironment::scriptUIFlexSWFPath is not a valid pathname'}
    Nothing I have tried has worked to fix this. I trashed the preferences, even uninstalled and reinstalled After Effects. Does anyone have any suggestions or know what's going on?
    Thanks!

    Hi Jonas,
    I've spoken to the lecture who knows more about the software and this was his reply:
    The students will be using files captured from multiple devices dependent on what they have access to. Mobile phone, flip cameras, HD cameras etc. Which will use different codecs. I do request students to export their work as .mov using the H.264 codec and that process hasn't thrown up any problems so far - but that is export not import.
    The lecturer also mentioned students cannot import audio either.
    The operating system is Lion 10.7.5.
    Adobe After Effects CS6 version 11.0. I've installed updates on one of the macs 11.01 and 11.02 but doesn't resolve the problem
    Mac Spec
    3.2GHz Intel core i3
    Memory 8 GB 1333mhz DDR 3
    Graphics ATI Radeon HD 5670 512mb
    Hard drive 350 GB
    The other software installed on this machince is the Adobe CS6 Design Suite and Microsoft office and we dont use any third-party hardware.
    They only devices that are attached to the Mac are camera,USB Pens and External Hard drives but these are all removable are are not permanently attached.

  • ScriptUI and Windows 8

    Hi,
    Every so often I'm getting feedback from users that certain ScriptUI things are not working in Windows 8.
    I don't have Windows 8, so I can't test.
    Has anyone come across problems with ScriptUI and Windows 8?
    For example, I have a free script here:
    http://www.freelancebookdesign.com/scripts/quick-apply-with-next-style
    Somebody has just posted that it's not working with Windows 8 (but it does work with Windows 7).
    Can anyone shed any light on this?
    Thanks,
    Ariel

    Hi Fred,
    I think the problem exists also with CS6 on Windows 8. The new CC SciptUI is completely rewritten, and was probably tested on Windows 8 as well.
    If you've got Windows 8 installed and ID CS5 or CS6, you should be able to test this and see what, if anything, can be done.
    I doubt that Adobe are going to fix it, of course, because as far as they're concerned CC is probably the "fix" they want people to use!
    Actually, Microsoft are probably the people to blame, as their aim is always backwards compatibility with new Windows releases, and this is broken for ScriptUI.

  • ScriptUI panel renders in ESTK but not in AE

    Hi There,
    I just finished watching David Torno's excellent tutorials on developing ScriptUI panels with Extendscript.  I followed all of his directions, and the panel does show up as expected in my ESTK, but when I save the .jsx to the ScriptUI folder within the Script directory of AE, the panel shows up, but none of the elements I created render within the panel. It's very odd, might anybody know what I'm doing wrong?
    Here is my code, which is a derivative of David's example code building ScriptUI panels with resource strings:
        function templaterGUI(thisObj){
            function templater_buildGUI(thisObj){
                var templaterWindow = (thisObj instanceof Panel) ? thisObj : new Window('palette', 'Templater', undefined, {resizeable : true});
                gui = "Group{orientation: 'column', alignChildren: 'fill',\
                             settings: Group{orientation: 'row', alignChildren: 'fill',\
                                            pAssets: Panel{text: 'Assets'},\
                                            pOptions: Panel{text: 'Render Options'},\
                             action: Button{text: 'Render Batch'},\
                             console: Panel{text: 'Status',\
                                            msg: StaticText{text: 'Currently Idle'}},\
                templaterWindow.grp = templaterWindow.add(gui);
                return templaterWindow;
            var templaterDock = templater_buildGUI(thisObj);
            if ((templaterDock != null) && (templaterDock instanceof Window)){
                    templaterDock.center();
                    templaterDock.show();
         templaterGUI(this);
    Here's what it looks like when I run this code in ESTK:
    I placed the script in the `ScriptUI` folder within the AE CS6 application folder, and here's what it looks like when I invoke the exact same .jsx file from `Window` menu in AE:
    Maybe I overlooked something in the code that David provided in his tutorial?  Can anybody offer any suggestions for debugging / troubleshooting?
    Thanks for your time and help!    

    Hey David or Xavier,
    Thanks for providing guidance on setting up the layout manager for I'm running into a similar issue with ESTK behaving differently than AE when it comes to rendering my UI controls.  I'm specifically referring to a DropDownList element.  In ESTK my code seems to be working fine, where I am able to see the selection elements in the DropDownList control.  I can see the `items` Array appear as the list.  However, in AE, I see the DropDownList control mechanism, but I no matter what, I cannot see the list of elements.  Is there a specific reason that this might be happening for this DropDownList element?
    Here is the portion of my resource string that is being used to generate the dropdown list:
    gTemplates: Group { orientation: 'row', alignChildren: ['fill','top'], alignment: ['fill','fill'],margins: [0,10,0,0],\
                                      lRenderTemplates : DropDownList { title: 'Render Template', titleLayout: {alignment: ['center','top'], spacing: 10} },\
                                      lOutputModules : DropDownList { title: 'Output Module', titleLayout : {alignment: ['center','top'], spacing: 10} },\
    Then I have a function in my javascript that just adds items like this, and I call it before I return templaterWindow as shown in my previous code:
    function setupControls(ui) {
         var options = ui.grp.settings.pOptions.optionsControls;
         options.gTemplates.lRenderTemplates.add('item', "ONE");
         options.gTemplates.lRenderTemplates.add('item', "TWO");
    Again, it works great in ESTK where I can see the elements in the dropdown, but not in the context of running it in AE.  Any ideas?
    Thanks again for any help you can provide!

  • Photoshop CS6 Hangs at start on Mountain Lion with Macbook Pro Retina

    When opening a clean install of Photoshop CS6, it shows initializing splash screen, then gives me beach ball when Photoshop UI shows...
    Date/Time:       2013-03-25 11:37:03 -0700
    OS Version:      10.8.3 (Build 12D78)
    Architecture:    x86_64
    Report Version:  11
    Command:         Photoshop
    Path:            /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Version:         13.0.0 (20120315.r.428)
    Parent:          launchd [141]
    PID:             4440
    Event:           hang
    Duration:        1.61s
    Steps:           17 (100ms sampling interval)
    Hardware model:  MacBookPro10,2
    Active cpus:     4
    Free pages:      349069 pages (-3847)
    Pageins:         0 pages
    Pageouts:        0 pages
    Process:         Adobe Photoshop CS6 [4440]
    Path:            /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Task size:       38973 pages
    CPU Time:        0.002s
      Thread 0x3aeb3    DispatchQueue 1          priority 47       
      17 ??? (Adobe Photoshop CS6 + 5550668) [0x10054b24c]
        17 boost::system::system_error::what() const + 1999769 (Adobe Photoshop CS6) [0x1007b0999]
          17 boost::system::system_error::what() const + 1999183 (Adobe Photoshop CS6) [0x1007b074f]
            17 ??? (Adobe Photoshop CS6 + 5956220) [0x1005ae27c]
              17 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614094 (Adobe Photoshop CS6) [0x10192266e]
                17 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17605282 (Adobe Photoshop CS6) [0x101920402]
                  17 -[NSApplication run] + 517 (AppKit) [0x1049891d3]
                    17 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x104991e22]
                      17 _DPSNextEvent + 685 (AppKit) [0x104992563]
                        17 BlockUntilNextEventMatchingListInMode + 62 (HIToolbox) [0x10983fae3]
                          17 ReceiveNextEventCommon + 356 (HIToolbox) [0x10983fc52]
                            17 RunCurrentEventLoopInMode + 209 (HIToolbox) [0x10983feb4]
                              17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x103a8e0e2]
                                17 __CFRunLoopRun + 1529 (CoreFoundation) [0x103a8ead9]
                                  17 __CFRunLoopDoTimer + 557 (CoreFoundation) [0x103aa931d]
                                    17 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20 (CoreFoundation) [0x103aa9804]
                                      17 __NSFireTimer + 96 (Foundation) [0x103e15af3]
                                        17 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17604980 (Adobe Photoshop CS6) [0x1019202d4]
                                          17 ??? (Adobe Photoshop CS6 + 129698) [0x10001faa2]
                                            17 ??? (Adobe Photoshop CS6 + 5952430) [0x1005ad3ae]
                                              17 ??? (Adobe Photoshop CS6 + 5994476) [0x1005b77ec]
                                                17 boost::system::system_error::what() const + 2072515 (Adobe Photoshop CS6) [0x1007c25c3]
                                                  17 PSEventIdle(unsigned int, _ADsc*, int, void*) + 94 (ScriptingSupport) [0x11f5090ce]
                                                    17 boost::system::system_error::what() const + 2233828 (Adobe Photoshop CS6) [0x1007e9be4]
                                                      17 boost::system::system_error::what() const + 2087977 (Adobe Photoshop CS6) [0x1007c6229]
                                                        17 ??? (Adobe Photoshop CS6 + 129698) [0x10001faa2]
                                                          17 ??? (Adobe Photoshop CS6 + 5952430) [0x1005ad3ae]
                                                            17 ??? (Adobe Photoshop CS6 + 5994476) [0x1005b77ec]
                                                              17 boost::system::system_error::what() const + 2307949 (Adobe Photoshop CS6) [0x1007fbd6d]
                                                                17 boost::system::system_error::what() const + 2317021 (Adobe Photoshop CS6) [0x1007fe0dd]
                                                                  17 ??? (Adobe Photoshop CS6 + 1575026) [0x100180872]
                                                                    17 PluginMain + 157 (ScriptingSupport) [0x11f5092ad]
                                                                      17 CScriptPs::DoExecute(PIActionParameters*) + 609 (ScriptingSupport) [0x11f508a41]
                                                                        17 CScriptPs::DoLateInitialize() + 632 (ScriptingSupport) [0x11f50870e]
                                                                          17 JavaScriptUI::IJavaScriptUI() + 591 (ScriptingSupport) [0x11f506569]
                                                                            17 ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 4738 (AdbeScriptUIFlex) [0x11f8f2132]
                                                                              17 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 198 (AdbeScriptUIFlex) [0x11f8e15e6]
                                                                                17 ScriptUI::APE_Player::apInitialize(NSView*, NSWindow*, long, bool, bool) + 172 (AdbeScriptUIFlex) [0x11f8d7b5c]
                                                                                  17 ScriptUI::APE_Player::apCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 66 (AdbeScriptUIFlex) [0x11f8d7582]
                                                                                    17 ScriptUI::APE_Player::apOSCreateStage(Opaque_APEPlayer*, long, NSView*, NSWindow*, ScCore::Rect const&, bool, bool, NSView*&) + 178 (AdbeScriptUIFlex) [0x11f8dad22]
                                                                                      17 -[ScriptUIAPEStage initWithFrame:stageArgs:] + 117 (AdbeScriptUIFlex) [0x11f8d9145]
                                                                                        17 APEPlayerLoadSWF + 828 (adbeapecore) [0x11fa72bac]
                                                                                          17 APEStreamWrite + 22857 (adbeapecore) [0x11fa79bf9]
                                                                                            17 APEStreamWrite + 58369 (adbeapecore) [0x11fa826b1]
                                                                                              17 APEStreamWrite + 45394 (adbeapecore) [0x11fa7f402]
                                                                                                 17 APEStreamWrite + 51695 (adbeapecore) [0x11fa80c9f]
                                                                                                   17 SWFLPlayer_Initialize + 18855 (adbeapeengine) [0x137bbb617]
                                                                                                     17 SWFLPlayer_Initialize + 38077 (adbeapeengine) [0x137bc012d]
                                                                                                       17 APXGetHostAPI + 469165 (adbeapeengine) [0x1377c503d]
                                                                                                         17 APXGetHostAPI + 1846119 (adbeapeengine) [0x1379152f7]
                                                                                                           17 +[QTCaptureDevice devicesWithIOType:] + 212 (QTKit) [0x10f91c25c]
                                                                                                             17 +[QTCaptureDALDevice devicesWithIOType:] + 33 (QTKit) [0x10f90924d]
                                                                                                               17 +[QTCaptureDALDevice _refreshDevices] + 713 (QTKit) [0x10f9095a2]
                                                                                                                 17 -[QTCaptureDALDevice initWithUniqueID:deviceID:] + 212 (QTKit) [0x10f9097bb]
                                                                                                                   17 -[QTCaptureDALDevice setDeviceID:] + 452 (QTKit) [0x10f909ac0]
                                                                                                                     17 -[QTCaptureDALDevice _refreshAttributes] + 77 (QTKit) [0x10f909c8f]
                                                                                                                       17 -[QTCaptureDALDevice _refreshIsInUseByAnotherApplication] + 136 (QTKit) [0x10f90acde]
                                                                                                                         17 CMIOObjectGetPropertyData + 508 (CoreMediaIO) [0x1105ab228]
                                                                                                                           17 CMIO::DAL::Object::GetPropertyData(CMIOObjectPropertyAddress const&, unsigned int, void const*, unsigned int, unsigned int&, void*) const + 298 (CoreMediaIO) [0x1105813d2]
                                                                                                                             17 CMIO::DAL::PlugIn::ObjectGetPropertyData(CMIO::DAL::Object const&, CMIOObjectPropertyAddress const&, unsigned int, void const*, unsigned int, unsigned int&, void*) const + 43 (CoreMediaIO) [0x110583a4f]
                                                                                                                               17 CMIO_HardwarePlugin_ObjectGetPropertyData(CMIOHardwarePlugInInterface**, unsigned int, CMIOObjectPropertyAddress const*, unsigned int, void const*, unsigned int, unsigned int*, void*) + 70 (LogiWiFiCamera) [0x12063d807]
                                                                                                                                 17 CMIO_Device::GetPropertyData(CMIOObjectPropertyAddress const&, unsigned int, void const*, unsigned int, unsigned int*, void*) + 335 (LogiWiFiCamera) [0x12063e8e7]
                                                                                                                                   17 LogiCameraLock::GetOwnerFromService() const + 61 (LogiWiFiCamera) [0x120641605]
                                                                                                                                     17 xpc_connection_send_message_with_reply_sync + 127 (libxpc.dylib) [0x1095c6e1f]
                                                                                                                                       17 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x10951b6c2]
                                                                                                                                        *17 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x3aec2    DispatchQueue 2          priority 49       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1093379ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x10951dd16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x3aec3    DispatchQueue 271        priority 47       
      17 start_wqthread + 13 (libsystem_c.dylib) [0x1093a11d1]
        17 _pthread_wqthread + 404 (libsystem_c.dylib) [0x1093b6d0b]
          17 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x1093361c3]
            17 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x1093362f1]
              17 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x10933647f]
                17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x1093350b6]
                  17 _xpc_connection_enqueue + 103 (libxpc.dylib) [0x1095c597a]
                    17 _xpc_connection_wakeup + 145 (libxpc.dylib) [0x1095c517c]
                      17 _xpc_connection_wakeup2 + 1219 (libxpc.dylib) [0x1095c5670]
                        17 _xpc_connection_init + 1595 (libxpc.dylib) [0x1095c3e97]
                          17 _xpc_connection_check_in + 279 (libxpc.dylib) [0x1095c4fea]
                            17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10951b686]
                             *17 hndl_mach_scall64 + 19 (mach_kernel) [0xffffff80002cdd43]
                               *17 ??? (mach_kernel + 679382) [0xffffff80002a5dd6]
                                 *17 mach_msg_overwrite_trap + 187 (mach_kernel) [0xffffff800021961b]
                                   *17 ipc_kmsg_send + 372 (mach_kernel) [0xffffff8000210554]
                                     *17 ipc_mqueue_send + 315 (mach_kernel) [0xffffff8000212ceb]
                                       *17 thread_block_reason + 300 (mach_kernel) [0xffffff800022da0c]
                                         *17 ??? (mach_kernel + 190273) [0xffffff800022e741]
                                           *17 machine_switch_context + 366 (mach_kernel) [0xffffff80002b403e]
      Thread 0x3aedf    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 main + 126768 (MultiProcessor Support) [0x11a07af50]
            17 main + 8592 (MultiProcessor Support) [0x11a05e1b0]
              17 main + 8403 (MultiProcessor Support) [0x11a05e0f3]
                17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                 *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aee0    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 main + 126768 (MultiProcessor Support) [0x11a07af50]
            17 main + 8592 (MultiProcessor Support) [0x11a05e1b0]
              17 main + 8403 (MultiProcessor Support) [0x11a05e0f3]
                17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                 *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aee1    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 main + 126768 (MultiProcessor Support) [0x11a07af50]
            17 main + 8592 (MultiProcessor Support) [0x11a05e1b0]
              17 main + 8403 (MultiProcessor Support) [0x11a05e0f3]
                17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                 *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aee2    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 PrivateMPEntryPoint + 58 (CarbonCore) [0x10b3ff7e0]
            17 ??? (AdobeACE + 230874) [0x1072435da]
              17 ??? (AdobeACE + 234185) [0x1072442c9]
                17 MPWaitOnQueue + 252 (CarbonCore) [0x10b38ab14]
                  17 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x10b4283e7]
                    17 TSWaitOnCondition + 108 (CarbonCore) [0x10b428210]
                      17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                       *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aee3    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 PrivateMPEntryPoint + 58 (CarbonCore) [0x10b3ff7e0]
            17 ??? (AdobeACE + 230874) [0x1072435da]
              17 ??? (AdobeACE + 234185) [0x1072442c9]
                17 MPWaitOnQueue + 252 (CarbonCore) [0x10b38ab14]
                  17 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x10b4283e7]
                    17 TSWaitOnCondition + 108 (CarbonCore) [0x10b428210]
                      17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                       *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aee4    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 PrivateMPEntryPoint + 58 (CarbonCore) [0x10b3ff7e0]
            17 ??? (AdobeACE + 230874) [0x1072435da]
              17 ??? (AdobeACE + 234185) [0x1072442c9]
                17 MPWaitOnQueue + 252 (CarbonCore) [0x10b38ab14]
                  17 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x10b4283e7]
                    17 TSWaitOnCondition + 108 (CarbonCore) [0x10b428210]
                      17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                       *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aee7    priority 47         cpu time   0.002s
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 ScObjects::Thread::go(void*) + 166 (ScriptingSupport) [0x11f644d36]
            17 ScObjects::BridgeTalkThread::run() + 169 (ScriptingSupport) [0x11f62a7c9]
              17 ScObjects::Thread::sleep(unsigned int) + 59 (ScriptingSupport) [0x11f6449cb]
                17 __semwait_signal + 10 (libsystem_kernel.dylib) [0x10951d386]
                 *16 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
                 *1  hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002cdd23]
                   *1  unix_syscall64 + 522 (mach_kernel) [0xffffff80005e063a]
                     *1  __semwait_signal_nocancel + 170 (mach_kernel) [0xffffff80005656ea]
                       *1  semaphore_timedwait_trap_internal + 130 (mach_kernel) [0xffffff8000234402]
                         *1  ??? (mach_kernel + 213351) [0xffffff8000234167]
                           *1  thread_block_reason + 275 (mach_kernel) [0xffffff800022d9f3]
                             *1  ??? (mach_kernel + 187521) [0xffffff800022dc81]
                               *1  processor_idle + 227 (mach_kernel) [0xffffff800022f1c3]
                                 *1  machine_idle + 282 (mach_kernel) [0xffffff80002b901a]
      Thread 0x3aef0    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 APXGetHostAPI + 2516713 (adbeapeengine) [0x1379b8e79]
            17 APXGetHostAPI + 2516410 (adbeapeengine) [0x1379b8d4a]
              17 APXGetHostAPI + 2516289 (adbeapeengine) [0x1379b8cd1]
                17 APXGetHostAPI + 83761 (adbeapeengine) [0x137766ec1]
                  17 APXGetHostAPI + 2516093 (adbeapeengine) [0x1379b8c0d]
                    17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                     *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aef1    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 APXGetHostAPI + 2516713 (adbeapeengine) [0x1379b8e79]
            17 APXGetHostAPI + 2516410 (adbeapeengine) [0x1379b8d4a]
              17 APXGetHostAPI + 2516289 (adbeapeengine) [0x1379b8cd1]
                17 APXGetHostAPI + 83761 (adbeapeengine) [0x137766ec1]
                  17 APXGetHostAPI + 2516093 (adbeapeengine) [0x1379b8c0d]
                    17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                     *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aef2    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 APXGetHostAPI + 2516713 (adbeapeengine) [0x1379b8e79]
            17 APXGetHostAPI + 2516410 (adbeapeengine) [0x1379b8d4a]
              17 APXGetHostAPI + 2516289 (adbeapeengine) [0x1379b8cd1]
                17 APXGetHostAPI + 83761 (adbeapeengine) [0x137766ec1]
                  17 APXGetHostAPI + 2516093 (adbeapeengine) [0x1379b8c0d]
                    17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                     *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aef3    priority 47       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 APXGetHostAPI + 2516713 (adbeapeengine) [0x1379b8e79]
            17 APXGetHostAPI + 2516410 (adbeapeengine) [0x1379b8d4a]
              17 APXGetHostAPI + 2516289 (adbeapeengine) [0x1379b8cd1]
                17 APXGetHostAPI + 83761 (adbeapeengine) [0x137766ec1]
                  17 APXGetHostAPI + 2516093 (adbeapeengine) [0x1379b8c0d]
                    17 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x10951d0fa]
                     *17 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b40]
      Thread 0x3aef7    priority 63       
      17 thread_start + 13 (libsystem_c.dylib) [0x1093a11e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1093b47a2]
          17 CAPThread::Entry(CAPThread*) + 156 (CoreMediaIO) [0x11057e2de]
            17 CMIO::DAL::RunLoop::OwnThread(void*) + 146 (CoreMediaIO) [0x1105866f8]
              17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x103a8e0e2]
                17 __CFRunLoopRun + 1078 (CoreFoundation) [0x103a8e916]
                  17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x103a89233]
                    17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10951b686]
                     *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Binary Images:
             0x100000000 -        0x10333cfff  com.adobe.Photoshop 13.0.0 (20120315.r.428) <6A87A703-3170-CA73-8C77-35C282C4E264> /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
             0x103a59000 -        0x103c43ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x103da2000 -        0x1040ffff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x10483d000 -        0x10546aff7  com.apple.AppKit 6.8 (1187.37) <FAEA8B77-210F-3C0F-B9CF-85A7595CCA26> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
             0x10720b000 -        0x107384fff  com.adobe.ACE AdobeACE 2.19.18.19243 (2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
             0x109333000 -        0x109348ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x1093a0000 -        0x10946cff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x10950b000 -        0x109526ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
             0x1095bb000 -        0x1095ddff7  libxpc.dylib <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
             0x1097e0000 -        0x109b10fff  com.apple.HIToolbox 2.0 <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
             0x10b37b000 -        0x10b692ff7  com.apple.CoreServices.CarbonCore 1037.5 (1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
             0x10f905000 -        0x10fa76ff7  com.apple.QTKit 7.7.1 (2599.24) <A2153722-268B-3293-B9E3-CB59273CDE41> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
             0x11057c000 -        0x1105c9fff  com.apple.CoreMediaIO 307.0 (4155) <CD826A65-DFE7-3A58-A29E-15B3A9BE0A6D> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
             0x11a019000 -        0x11a09efff  MultiProcessor Support <467BB668-E9DD-60F4-CAAD-768A98174734> /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
             0x11f500000 -        0x11f75bff7  com.adobe.PSAutomate 13.0 (13.0) <6EE89DAF-28E8-B15F-1C4B-18D8D19F6452> /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/Scri ptingSupport
             0x11f86d000 -        0x11f95efff  com.adobe.AdbeScriptUIFlex ScriptUIFlex 6.2.29 (6.2.29.18602) <2BD3388F-976E-0B1C-55DB-B97A5AF95724> /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIFlex
             0x11fa6b000 -        0x11fa91ff7  com.adobe.ape 3.3.8.19346 (3.3.8.19346) <79E11A18-8AF4-2515-59F7-4CBE161BF020> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
             0x12063c000 -        0x120645ff7  com.logitech.cmio.DAL.LogiWiFiCam 201.0 (3120) <615A3600-C34E-3925-A669-5FDC9AB6AC57> /Library/CoreMediaIO/*/LogiWiFiCamera.plugin/Contents/MacOS/LogiWiFiCamera
             0x13771e000 -        0x1386a3fd7  com.adobe.ape.engine 3.3.8.19346 (3.3.8.19346) <5E188E32-37F7-4E0B-0674-E8D16B60074F> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         accountsd [191]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       5669 pages
      Thread 0x692      DispatchQueue 1          priority 14       
      17 start + 1 (libdyld.dylib) [0x10963b7e1]
        17 ??? (accountsd + 3048) [0x10550fbe8]
          17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x1073110e2]
            17 __CFRunLoopRun + 1078 (CoreFoundation) [0x107311916]
              17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10730c233]
                17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10980b686]
                 *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x6a1      DispatchQueue 2          priority 33       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1096009ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x10980dd16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x10550f000 -        0x10550ffff  accountsd <454A20EE-966C-3964-A67D-F6D0A264D60E> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
             0x1072dc000 -        0x1074c6ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x1095fc000 -        0x109611ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x109639000 -        0x10963cff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x1097fb000 -        0x109816ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AdobeCrashDaemon [4442]
    Path:            /Applications/Adobe/*/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Required/AdobeCrashDaemon.app/Co ntents/MacOS/AdobeCrashDaemon
    Architecture:    x86_64
    Parent:          Adobe Photoshop CS6 [4440]
    UID:             501
    Task size:       4512 pages (+1)
    CPU Time:        0.001s
    Process:         AirPort Base Station Agent [292]
    Path:            /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Sudden Term:     Clean
    Task size:       2483 pages
      Thread 0x16ce     DispatchQueue 1          priority 31       
      17 ??? (AirPort Base Station Agent + 3676) [0x105714e5c]
        17 ??? (AirPort Base Station Agent + 71073) [0x1057255a1]
          17 CFRunLoopRun + 97 (CoreFoundation) [0x105779dd1]
            17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10576b0e2]
              17 __CFRunLoopRun + 1078 (CoreFoundation) [0x10576b916]
                17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x105766233]
                  17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1076ab686]
                   *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x16d0     DispatchQueue 2          priority 33       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1074979ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x1076add16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x16d4     priority 31       
      17 thread_start + 13 (libsystem_c.dylib) [0x1075261e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1075397a2]
          17 __select + 10 (libsystem_kernel.dylib) [0x1076ad322]
           *17 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x105714000 -        0x10572afff  com.apple.AirPortBaseStationAgent 2.0 (200.4) <76A9C7FD-FFC5-3AB2-B7FD-9349F8AB5F2D> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
             0x105736000 -        0x105920ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x107493000 -        0x1074a8ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x107525000 -        0x1075f1ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x10769b000 -        0x1076b6ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         aosnotifyd [87]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       6799 pages
      Thread 0x2b2      DispatchQueue 1          priority 31       
      17 start + 1 (libdyld.dylib) [0x1034197e1]
        17 ??? (aosnotifyd + 37439) [0x1009ff23f]
          17 ??? (aosnotifyd + 36529) [0x1009feeb1]
            17 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x101749f5e]
              17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10137f0e2]
                17 __CFRunLoopRun + 1078 (CoreFoundation) [0x10137f916]
                  17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10137a233]
                    17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1035e7686]
                     *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x322      DispatchQueue 2          priority 33       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1033e49ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x1035e9d16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x373      priority 63       
      17 thread_start + 13 (libsystem_c.dylib) [0x1034661e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1034797a2]
          17 __NSThread__main__ + 1345 (Foundation) [0x101744cd2]
            17 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x1016e6b66]
              17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10137f0e2]
                17 __CFRunLoopRun + 1078 (CoreFoundation) [0x10137f916]
                  17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10137a233]
                    17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1035e7686]
                     *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x58c      priority 31       
      17 thread_start + 13 (libsystem_c.dylib) [0x1034661e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x1034797a2]
          17 __select + 10 (libsystem_kernel.dylib) [0x1035e9322]
           *17 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x1009f6000 -        0x100a3efff  aosnotifyd <A3543B5E-3291-3025-A09C-1B7087B1A9EA> /usr/sbin/aosnotifyd
             0x10134a000 -        0x101534ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x1016af000 -        0x101a0cff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x1033e0000 -        0x1033f5ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x103417000 -        0x10341aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x103465000 -        0x103531ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x1035d7000 -        0x1035f2ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         appleeventsd [81]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       2614 pages
      Thread 0x2f5      DispatchQueue 2          priority 33       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1076b69ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x1078c2d16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2f6      DispatchQueue 7          priority 31       
      17 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x1076b3d85]
        17 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x1078c2566]
         *17 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0x3ebba    priority 31       
    *17 ??? (mach_kernel + 3907200) [0xffffff80005b9e80]
      Binary Images:
             0x105b41000 -        0x105b41fff  appleeventsd <33899092-67A8-3A39-A63C-27BAC6C22174> /System/Library/CoreServices/appleeventsd
             0x1076b2000 -        0x1076c7ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x1078b0000 -        0x1078cbff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppleIDAuthAgent [172]
    Path:            /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       2124 pages
      Thread 0x658      DispatchQueue 2          priority 33       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1047289ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x104938d16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x65a      DispatchQueue 7          priority 31       
      17 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x104725d85]
        17 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x104938566]
         *17 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Thread 0x851      DispatchQueue 16         priority 31       
      17 start_wqthread + 13 (libsystem_c.dylib) [0x1047b41d1]
        17 _pthread_wqthread + 404 (libsystem_c.dylib) [0x1047c9d0b]
          17 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x1047271c3]
            17 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x1047272f1]
              17 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x104727448]
                17 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x104727305]
                  17 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x10472829b]
                    17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x1047260b6]
                      17 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x10472a96f]
                        17 _dispatch_client_callout + 8 (libdispatch.dylib) [0x1047260b6]
                          17 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x104729f01]
                            17 ??? (AppleIDAuthAgent + 9227) [0x10252540b]
                              17 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x1049366c2]
                               *17 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Binary Images:
             0x102523000 -        0x102553fff  AppleIDAuthAgent <91A3B8DC-AD42-399C-9A44-413CF8DF2CA4> /System/Library/CoreServices/AppleIDAuthAgent
             0x104724000 -        0x104739ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x1047b3000 -        0x10487fff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x104926000 -        0x104941ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         AppleSpell [350]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [141]
    UID:             501
    Sudden Term:     Clean
    Task size:       5365 pages
      Thread 0x4387     DispatchQueue 1          priority 46       
      17 start + 1 (libdyld.dylib) [0x10d1237e1]
        17 ??? (AppleSpell + 7271) [0x10b622c67]
          17 -[NSSpellServer run] + 73 (Foundation) [0x10b877516]
            17 CFRunLoopRun + 97 (CoreFoundation) [0x10c05edd1]
              17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x10c0500e2]
                17 __CFRunLoopRun + 1078 (CoreFoundation) [0x10c050916]
                  17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x10c04b233]
                    17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x10d2f6686]
                     *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x438f     DispatchQueue 2          priority 48       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x10d0ed9ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x10d2f8d16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Binary Images:
             0x10b621000 -        0x10b6d6ff7  com.apple.AppleSpell 1.9 (173.1) <9390CDCC-0038-3174-864D-05CD9454CA7F> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
             0x10b6f5000 -        0x10ba52ff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x10c01b000 -        0x10c205ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x10d0e9000 -        0x10d0feff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x10d121000 -        0x10d124ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x10d2e6000 -        0x10d301ff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         apsd [86]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       6550 pages
      Thread 0x2b1      DispatchQueue 1          priority 31       
      17 start + 1 (libdyld.dylib) [0x1015337e1]
        17 ??? (apsd + 21734) [0x10003d4e6]
          17 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x1001d275a]
            17 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x100239f5e]
              17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x100b610e2]
                17 __CFRunLoopRun + 1078 (CoreFoundation) [0x100b61916]
                  17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x100b5c233]
                    17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1016ff686]
                     *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x31e      DispatchQueue 2          priority 33       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1014fd9ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x101701d16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x35d      priority 63       
      17 thread_start + 13 (libsystem_c.dylib) [0x10157c1e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x10158f7a2]
          17 __NSThread__main__ + 1345 (Foundation) [0x100234cd2]
            17 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x1001d6b66]
              17 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x100b610e2]
                17 __CFRunLoopRun + 1078 (CoreFoundation) [0x100b61916]
                  17 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x100b5c233]
                    17 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x1016ff686]
                     *17 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4ef      priority 31       
      17 thread_start + 13 (libsystem_c.dylib) [0x10157c1e1]
        17 _pthread_start + 327 (libsystem_c.dylib) [0x10158f7a2]
          17 __select + 10 (libsystem_kernel.dylib) [0x101701322]
           *17 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x100038000 -        0x1000b6ff7  apsd <44247DBB-E2FB-3858-9CDD-F5C3C5FBAA6A> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
             0x10019f000 -        0x1004fcff7  com.apple.Foundation 6.8 (945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
             0x100b2c000 -        0x100d16ff7  com.apple.CoreFoundation 6.8 (744.18) <A60C3C9B-3764-3291-844C-C487ACF77C2C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
             0x1014f9000 -        0x10150eff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x101531000 -        0x101534ff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
             0x10157b000 -        0x101647ff7  libsystem_c.dylib <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
             0x1016ef000 -        0x10170aff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         autofsd [85]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1961 pages
      Thread 0x2f9      DispatchQueue 2          priority 33       
      17 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x1071249ee]
        17 kevent + 10 (libsystem_kernel.dylib) [0x107336d16]
         *17 ??? (mach_kernel + 3467664) [0xffffff800054e990]
      Thread 0x2fa      DispatchQueue 7          priority 31       
      17 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x107121d85]
        17 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x107336566]
         *17 ??? (mach_kernel + 3576624) [0xffffff8000569330]
      Binary Images:
             0x106c95000 -        0x106c96fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
             0x107120000 -        0x107135ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
             0x107324000 -        0x10733fff7  libsystem_kernel.dylib <5A961E2A-CFB8-362B-BC43-122704AEB047> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6> /mach_kernel
    Process:         bash [444]
    Path:            /bin/bash
    Architecture:    x86_64
    Parent:          login [443]
    UID:             501
    Task size:       1145 pages
      Thread 0x755e     DispatchQueue 1          priority 31       
      17 start + 1 (libdyld.dylib) [0x102b897e1]
        17 ??? (bash + 10713) [0x1029eb9d9]
          17 ??? (bash + 117763) [0x102a05c03]
            17 ??? (bash + 118794) [0x102a0600a]
              17 ??? (bash + 123820) [0x102a073ac]
                17 ??? (bash + 156876) [0x102a0f4cc]
                  17 __wait4 + 10 (libsystem_kernel.dylib) [0x102d6e69a]
                   *17 ??? (mach_kernel + 3576624) [0xffffff8000569330]
     

    If you didn't tell it to migrate, then it won't migrate anything.
    It just does a quick check at launch to see if there is a previous version, then asks you if you would like to migrate presets from that previous version.  It only does any significant work if you tell it to migrate the old presets.
    It is remotely possible that even the quick check for old versions could take a while if there was something wrong with your disk or volumes mounted on your system - but I haven't seen that happen.

  • What tools should I use to create a UI for an AEGP plugin for CS6 on a Mac

    I see that for CC the suggested UI tool is HTML5, but what should be used for developing a plugin that must also run in CS6 on a Mac?

    For CS6, you can create panels using ScriptUI, to add a custom panel to the Window menu. 
    A script like this would be installed here: ..\Adobe After Effects CS6\Support Files\Scripts\ScriptUI Panels\
    For ScriptUI, there is some documentation in the JavaScript Tools Guide, accessible from the ExtendScript Toolkit application > Help > JavaScript Tools Guide; and also here - http://www.kahrel.plus.com/indesign/scriptui.html

  • TreeView doesn't display in Bridge CS6 but it does in ESTK

    running Bridge CS6 on Windows 7. 
    Although I tried a lot of existing .jsx scripts first, I have narrowed down my test case to this code typed into the ESTK with targets of ExtendScript Toolkit CS6, Bridge CS5.1 (4.1), Bridge CS6 (5.032), and Bridge CS6 (64 bit) (5.064).
    var w = new Window('dialog');
    var tv = w.add('treeview',undefined);
    tv.add('node','root');
    w.show();
    It works properly with ESTK and CS5.1 targets. 
    On both CS6 targets, the window opens but the treeview widget is blank.  This is the same behavior I saw running SnpXMLTreeView.jsx and the scriptui-2.0.pdf examples.
    On more complex (existing) scripts, it will crash or lockup Bridge CS6.
    A search around the forums and the web shows that I am not the only one having this problem.

    Yes there are a lot of problems with CS6 Bridge Scripting but the Bridge team have still not acknowledged them...
    As an example...
    http://feedback.photoshop.com/photoshop_family/topics/extendscript_ui_not_drawing_correctl y_in_bridge?utm_content=topic_link&utm_medium=email&utm_source=reply_notification
    It would be nice to get an update to fix these problems.

  • AfterFX CS6, Timeline Mouse-Lag! (with video description, vimeo)

    I created a video of the problem and uploaded it to my vimeo account. Hope it helps to understand:
    http://vimeo.com/43892712
    Windows 7 Pro 64bit
    Intel Core 2 Quad 2.4GHz
    8GB Ram
    Nvidia GTX 580 Phantom
    256 Samsung SSD
    Supertalent SSD (Dedicated to Adobe Media Cache and Windows Temp file)
    3 HDD(dedicated to Video and Project and exports)
    This is a fresh and clean install on the new Samsung SSD (latest firmware), AHCI enabled.
    Only system drivers and the whole Production Premium CS6 are installed.
    Problem:
    There is a clear Mouse lag while clicking and selecting/marking things in the timeline window. The more layers I have and the more keyframes are shown, the bigger the mouse lag is. It is even bigger than in the video with other comps I have.
    This happened to me in CS4 (but I guess that was due to an issue with the wacom tablet driver that supposedly was solved with CS5).
    But the driver and Wacom tablet aren't even installed yet, and I experienced this lag with CS4, CS5, CS5.5 and now CS6. Even though it was stated that the GUI is accelerated a lot in this release (via an Nvidia GPU). So I bought a new Nvidia Card (GTX 580), and indeed working is more fun now, but the timeline lag still appears. Before I had an GTX 260.
    Turning on or off the preference "Hardware accelerate panels" doesn't do any difference. Also "Use multi CPU rendering" doesn't help the lag.
    Is this the old processor Core 2 Quad @ 2.4 and the old SATA2 Bus? I'm willing to invest into a new Ivy Bridge CPU and 32GB of RAM (and a new mainboard), but I already did invest into a new GPU , a new SSD, new CS6 (which is supposed to drew faster on the screen in AFX). And it didn't really help the lag issue. SO I just don't want to get disappointed again.
    I also tried a different mouse (PS2 cable), but that didn't help either.
    Anybody having the same issues?
    Any advice or help, please?
    Thanx,
    Martin

    (Sorry to double post)
    A couple of other aspects of my AE are a bit off. I have a feeling this may all be interconnected, as they are all GUI related. These other issues are of little consequence, but if it is indeed all connected, it may help troubleshoot the issue.
    Firstly is the behavior of scriptUI panels. My AE struggles when drawing ScriptUI panels, sometimes takes 4+ seconds to load the panel, sometimes (rarely) the panel doesnt show at all, throwing an error (I cant remember the exact error). I also get a slight lag when clicking dropdowns and interacting with all ScriptUI panels.
    Furthermore, after my inital install, the CTI updates very slowly while RAM Previewing (it's fine while scrubbing). I solved this issue with a bit of help from this thread. It turns out in my AE prefs I had "Time needle update frequency (seconds)" = "0.250000", changing the value to 0.05000 fixed the issue. In that thread it was suggested that perhaps AE automatically set this value on first launch- based off its understanding of the system capability (to save on resources)... If this is correct, AE obviously failed to make a correct evaluation of the system's capability... I wonder what else it "got wrong"?
    I just had a look through the prefs file (C:\Users\UserName\AppData\Roaming\Adobe\After Effects\11.0\Adobe After Effects 11.0-x64 Prefs.txt)
    There's a bunch of stuff in there, but not knowing "what-does-what" I dont want to mess around in there just yet.
    Has anyone else suffering from our timeline issues experienced anything like the above?
    Update:
    Okay, finally some feedback from After Effects.
    Today when launching after effects it has crashed with the following error
    This article from Adobe explains the use of GPU in AECS6
    OpenGL, the GPU, and After Effects CS6
    You'll notice toward the bottom of the article, Level 2 hardware requirment covers hardware acceleration of of composition, layer and footage panels.
    Im thinking this really is a problem with AE + GPU. This might explain why swithcing hardware accelerated panels doesnt make any difference to our problem... perhaps its just not working at all. any thoughts?

  • CS5 ScriptUI dialogs open with no minimum width or height

    Hi There,
    Running my script as ScriptUI in CS5 seems to cause a strange issue with window drawing / resizing.  I am unable to reproduce the issue in CS6 or CC.  In some cases, when I run the script targeting CS5 from within ESTK, the initial window panel will appear very small and requires a user to resize it until it becomes totally visible.  Also, when I spawn a new dialog window from within a button's click handler, the dialog displays, but appears to have no specified or determined width or height.  As a workaround, I set the "resizing" for the dialog to true even though I would prefer not to let the user resize this particular dialog.  I tried setting preferredSize on almost all the elements so that I could minimize the use of automatic layout, but that didn't seem to do the trick.
    Has anybody encountered this?  Does CS5 require that the Bounds property is set?  It doesn't seem to be the case for CS6+
    If anyone has encountered this type of UI issue in CS5, any help or suggestions to fix would be appreciated.
    Thank you for your time and help!
    --Arie

    You can't "minimize the use of automatic layout". Either you use it, either you don't.
    I can't speak for others, but when using layout.layout(true), i often have to do many tries until "it behaves as i wanted to" (which actually means: until i find how things should be written).
    There are few rules though, and one is that preferredSize is irreliable, better use minimumSize and maximumSize (can't remember where i read that but i did, probably in the Javascript Tools Guide).
    What i do all the time is create a big group (in the exemple below it is called 'content') within the window and specify min or max dimensions for that group, not the window itself.
    Also, if you dont want the window to be resized, just set its creation property 'resizeable' to false.
    var win = new Window("palette", "myScript", undefined, {resizeable: false});
    win.alignChildren = ['left', 'top'];
    win.margins=8;
    win.content = win.add("group{ orientation:'column', margins: 0, spacing: 5, alignChildren:['left', 'top'],\
                                                " /* more stuff here */  + "\
    win.content.minimumSize = [500,300];
    win.layout.layout(true);
    win.layout.resize();
    win.show();
    If this doesnt help, please provide a bit of your code. I have CS5.5 and never encountered your issue.
    Xavier.

  • CS6 Crashing upon Start (Mavricks)

    Hello,
    I keep getting this error pasted below upon start-up of photoshop cs6 not allowing me to use photoshop. Any help would be greatly appreciated.
    Process:         Adobe Photoshop CC [582]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Identifier:      com.adobe.Photoshop
    Version:         14.1.2 (14.1.2.427)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [191]
    Responsible:     Adobe Photoshop CC [582]
    User ID:         501
    Date/Time:       2013-11-27 22:42:14.288 -0800
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  9F448ABF-339A-DF15-AFAE-553F50FE5DE4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x0000000141487240
    VM Regions Near 0x141487240:
        MALLOC_TINY            0000000141200000-0000000141300000 [ 1024K] rw-/rwx SM=COW
    --> __TEXT                 0000000141300000-0000000142286000 [ 15.5M] r-x/rwx SM=COW  /Library/Application Support/Adobe/*/adbeapecore.framework/Versions/A/Libraries/adbeapeeng ine.bundle/Contents/MacOS/adbeapeengine
        __DATA                 0000000142286000-000000014240e000 [ 1568K] rw-/rwx SM=COW  /Library/Application Support/Adobe/*/adbeapecore.framework/Versions/A/Libraries/adbeapeeng ine.bundle/Contents/MacOS/adbeapeengine
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.ape.engine                    0x0000000141487240 APXGetHostAPI + 1385392
    1   com.adobe.ape.engine                    0x0000000141a0d923 SWFLPlayer_Initialize + 2571587
    2   com.adobe.ape.engine                    0x00000001419f7df1 SWFLPlayer_Initialize + 2482705
    3   com.adobe.ape.engine                    0x0000000141a959e8 SWFLPlayer_Initialize + 3128840
    4   com.adobe.ape.engine                    0x0000000141a0b374 SWFLPlayer_Initialize + 2561940
    5   com.adobe.ape.engine                    0x0000000141a585bc SWFLPlayer_Initialize + 2877916
    6   com.adobe.ape.engine                    0x00000001415e1248 APXGetHostAPI + 2802616
    7   com.adobe.ape.engine                    0x00000001417674dc APXGetHostAPI + 4400716
    8   com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    9   ???                                     0x0000000142ebd7c2 0 + 5417719746
    10  com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    11  ???                                     0x0000000142ebed95 0 + 5417725333
    12  com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    13  ???                                     0x0000000142ebfc28 0 + 5417729064
    14  com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    15  ???                                     0x0000000142ec0380 0 + 5417730944
    16  com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    17  ???                                     0x0000000142ec110b 0 + 5417734411
    18  com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    19  ???                                     0x0000000142ec9f97 0 + 5417770903
    20  ???                                     0x0000000142ec150d 0 + 5417735437
    21  com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    22  ???                                     0x0000000142e9c241 0 + 5417583169
    23  com.adobe.ape.engine                    0x0000000141a95867 SWFLPlayer_Initialize + 3128455
    24  ???                                     0x000000014346f15f 0 + 5423690079
    25  ???                                     0x000000014346fc76 0 + 5423692918
    26  ???                                     0x0000000142eaa95b 0 + 5417642331
    27  com.adobe.ape.engine                    0x0000000141412c28 APXGetHostAPI + 908696
    28  com.adobe.ape.engine                    0x00000001414160c8 APXGetHostAPI + 922168
    29  com.adobe.ape.engine                    0x00000001415b633d APXGetHostAPI + 2626733
    30  com.adobe.ape.engine                    0x0000000141760f59 APXGetHostAPI + 4374729
    31  com.adobe.ape.engine                    0x0000000141761573 APXGetHostAPI + 4376291
    32  com.adobe.ape.engine                    0x000000014179c0cf SWFLPlayer_Initialize + 9455
    33  com.apple.CoreFoundation                0x00007fff8d2718f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    34  com.apple.CoreFoundation                0x00007fff8d263062 __CFRunLoopDoSources0 + 242
    35  com.apple.CoreFoundation                0x00007fff8d2627ef __CFRunLoopRun + 831
    36  com.apple.CoreFoundation                0x00007fff8d262275 CFRunLoopRunSpecific + 309
    37  com.apple.HIToolbox                     0x00007fff9386df0d RunCurrentEventLoopInMode + 226
    38  com.apple.HIToolbox                     0x00007fff9386db85 ReceiveNextEventCommon + 173
    39  com.apple.HIToolbox                     0x00007fff9386dabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    40  com.apple.AppKit                        0x00007fff8f46128e _DPSNextEvent + 1434
    41  com.apple.AppKit                        0x00007fff8f4608db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    42  com.adobe.AdbeScriptUIFlex              0x000000013c232e1b ScriptUI::APE_Player::apProcessAppFunctionEvent() + 91
    43  com.adobe.AdbeScriptUIFlex              0x000000013c23b60e ScriptUI::FlexServer::initializeServerPlayer(Opaque_APEPlayer*, bool, bool) + 414
    44  com.adobe.AdbeScriptUIFlex              0x000000013c23b400 ScriptUI::FlexServer::createServerPlayer(bool, bool) + 496
    45  com.adobe.AdbeScriptUIFlex              0x000000013c24ad64 ScriptUI::Flex_ScriptUI::start(ScCore::Error*) + 5812
    46  com.adobe.PSAutomate                    0x000000013bf04688 0x13bf00000 + 18056
    47  com.adobe.PSAutomate                    0x000000013bf027e5 0x13bf00000 + 10213
    48  com.adobe.PSAutomate                    0x000000013bf01fd2 0x13bf00000 + 8146
    49  com.adobe.PSAutomate                    0x000000013bf017ac 0x13bf00000 + 6060
    50  com.adobe.Photoshop                     0x00000001008f1678 0x100000000 + 9377400
    51  com.adobe.Photoshop                     0x00000001003206f9 0x100000000 + 3278585
    52  com.adobe.Photoshop                     0x0000000100320a97 0x100000000 + 3279511
    53  com.adobe.Photoshop                     0x000000010008e24a 0x100000000 + 582218
    54  com.adobe.Photoshop                     0x000000010008789c 0x100000000 + 555164
    55  com.adobe.Photoshop                     0x0000000100087723 0x100000000 + 554787
    56  com.adobe.Photoshop                     0x00000001002f20b4 0x100000000 + 3088564
    57  com.adobe.Photoshop                     0x00000001003287a8 0x100000000 + 3311528
    58  com.adobe.PSAutomate                    0x000000013bf02515 0x13bf00000 + 9493
    59  com.adobe.Photoshop                     0x00000001002f16f6 0x100000000 + 3086070
    60  com.adobe.Photoshop                     0x000000010008e24a 0x100000000 + 582218
    61  com.adobe.Photoshop                     0x000000010008789c 0x100000000 + 555164
    62  com.adobe.Photoshop                     0x0000000100087723 0x100000000 + 554787
    63  com.adobe.Photoshop                     0x00000001016bbed4 0x100000000 + 23838420
    64  com.apple.Foundation                    0x00007fff9123c094 __NSFireTimer + 96
    65  com.apple.CoreFoundation                0x00007fff8d2a7724 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    66  com.apple.CoreFoundation                0x00007fff8d2a725f __CFRunLoopDoTimer + 1151
    67  com.apple.CoreFoundation                0x00007fff8d31876a __CFRunLoopDoTimers + 298
    68  com.apple.CoreFoundation                0x00007fff8d262aa5 __CFRunLoopRun + 1525
    69  com.apple.CoreFoundation                0x00007fff8d262275 CFRunLoopRunSpecific + 309
    70  com.apple.HIToolbox                     0x00007fff9386df0d RunCurrentEventLoopInMode + 226
    71  com.apple.HIToolbox                     0x00007fff9386dcb7 ReceiveNextEventCommon + 479
    72  com.apple.HIToolbox                     0x00007fff9386dabc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    73  com.apple.AppKit                        0x00007fff8f46128e _DPSNextEvent + 1434
    74  com.apple.AppKit                        0x00007fff8f4608db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    75  com.apple.AppKit                        0x00007fff8f4549cc -[NSApplication run] + 553
    76  com.adobe.Photoshop                     0x00000001016bbde2 0x100000000 + 23838178
    77  com.adobe.Photoshop                     0x00000001016bd0cc 0x100000000 + 23843020
    78  com.adobe.Photoshop                     0x0000000100087f62 0x100000000 + 556898
    79  com.adobe.Photoshop                     0x00000001002d48dc 0x100000000 + 2967772
    80  com.adobe.Photoshop                     0x00000001002d49b9 0x100000000 + 2967993
    81  com.adobe.Photoshop                     0x0000000100002a34 0x100000000 + 10804
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff960e9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e1f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b8e4fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff960ea662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8c11943d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8c119152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff960e9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e1f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b8e4fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff960e9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e1f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8b8e4fb9 start_wqthread + 13
    Thread 5:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   MultiProcessor Support                  0x000000011321ff9b 0x1131da000 + 286619
    3   MultiProcessor Support                  0x000000011321fe53 0x1131da000 + 286291
    4   MultiProcessor Support                  0x000000011323fee4 0x1131da000 + 417508
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 6:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   MultiProcessor Support                  0x000000011321ff9b 0x1131da000 + 286619
    3   MultiProcessor Support                  0x000000011321fe53 0x1131da000 + 286291
    4   MultiProcessor Support                  0x000000011323fee4 0x1131da000 + 417508
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 7:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   MultiProcessor Support                  0x000000011321ff9b 0x1131da000 + 286619
    3   MultiProcessor Support                  0x000000011321fe53 0x1131da000 + 286291
    4   MultiProcessor Support                  0x000000011323fee4 0x1131da000 + 417508
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 8:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   MultiProcessor Support                  0x000000011321ff9b 0x1131da000 + 286619
    3   MultiProcessor Support                  0x000000011321fe53 0x1131da000 + 286291
    4   MultiProcessor Support                  0x000000011323fee4 0x1131da000 + 417508
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 9:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   MultiProcessor Support                  0x000000011321ff9b 0x1131da000 + 286619
    3   MultiProcessor Support                  0x000000011321fe53 0x1131da000 + 286291
    4   MultiProcessor Support                  0x000000011323fee4 0x1131da000 + 417508
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 10:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   MultiProcessor Support                  0x000000011321ff9b 0x1131da000 + 286619
    3   MultiProcessor Support                  0x000000011321fe53 0x1131da000 + 286291
    4   MultiProcessor Support                  0x000000011323fee4 0x1131da000 + 417508
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 11:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   MultiProcessor Support                  0x000000011321ff9b 0x1131da000 + 286619
    3   MultiProcessor Support                  0x000000011321fe53 0x1131da000 + 286291
    4   MultiProcessor Support                  0x000000011323fee4 0x1131da000 + 417508
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 12:: Lens Profile Manager
    0   com.apple.CoreServices.CarbonCore          0x00007fff8da08f72 LLConvertUTF8toUTF16 + 108
    1   com.apple.CoreServices.CarbonCore          0x00007fff8da08eff LLConvertUTF8toUCS2 + 26
    2   com.apple.CoreServices.CarbonCore          0x00007fff8da08e9e ConvertUTF8toUTF16 + 73
    3   com.apple.CoreServices.CarbonCore          0x00007fff8da08e36 ConvertPOSIXNametoUTF16 + 122
    4   com.apple.CoreServices.CarbonCore          0x00007fff8da02a22 PBGetCatalogInfoSync + 725
    5   com.apple.CoreServices.CarbonCore          0x00007fff8da02741 FSGetCatalogInfo + 43
    6   com.adobe.Photoshop                     0x0000000100de36e8 0x100000000 + 14563048
    7   com.adobe.Photoshop                     0x0000000100de3830 0x100000000 + 14563376
    8   com.adobe.Photoshop                     0x0000000101653faf 0x100000000 + 23412655
    9   com.adobe.Photoshop                     0x00000001016548b0 0x100000000 + 23414960
    10  com.adobe.Photoshop                     0x00000001016e6af4 0x100000000 + 24013556
    11  libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    12  libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    13  libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff960e9a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff94788e60 nanosleep + 200
    2   com.adobe.PSAutomate                    0x000000013c042518 0x13bf00000 + 1320216
    3   com.adobe.PSAutomate                    0x000000013c027fce 0x13bf00000 + 1212366
    4   com.adobe.PSAutomate                    0x000000013c0420b5 0x13bf00000 + 1319093
    5   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 14:: General Background Service
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   com.adobe.Photoshop                     0x00000001002a4b0d 0x100000000 + 2771725
    3   com.adobe.Photoshop                     0x000000010199c978 0x100000000 + 26855800
    4   com.adobe.Photoshop                     0x000000010199ba6c 0x100000000 + 26851948
    5   com.adobe.Photoshop                     0x000000010199d25a 0x100000000 + 26858074
    6   com.adobe.Photoshop                     0x00000001016e6af4 0x100000000 + 24013556
    7   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff960e5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff960e4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff8d263315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff8d262939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff8d262275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff8f6011ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine                    0x000000014159b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine                    0x00000001413495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000014159b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine                    0x000000014159b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine                    0x000000014159b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine                    0x000000014159b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine                    0x00000001413495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000014159b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine                    0x000000014159b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine                    0x000000014159b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine                    0x000000014159b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine                    0x00000001413495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000014159b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine                    0x000000014159b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine                    0x000000014159b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c3b _pthread_cond_wait + 727
    2   com.adobe.ape.engine                    0x000000014159b3dd APXGetHostAPI + 2516301
    3   com.adobe.ape.engine                    0x00000001413495c1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine                    0x000000014159b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine                    0x000000014159b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine                    0x000000014159b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine                    0x000000014159b3a0 APXGetHostAPI + 2516240
    3   com.adobe.ape.engine                    0x00000001415b35ab APXGetHostAPI + 2615067
    4   com.adobe.ape.engine                    0x000000014159b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine                    0x000000014159b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine                    0x000000014159b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff960e9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8b8e2c77 _pthread_cond_wait + 787
    2   com.adobe.ape.engine                    0x000000014159b3a0 APXGetHostAPI + 2516240
    3   com.adobe.ape.engine                    0x000000014172e073 APXGetHostAPI + 4166115
    4   com.adobe.ape.engine                    0x000000014159b4a1 APXGetHostAPI + 2516497
    5   com.adobe.ape.engine                    0x000000014159b51a APXGetHostAPI + 2516618
    6   com.adobe.ape.engine                    0x000000014159b649 APXGetHostAPI + 2516921
    7   libsystem_pthread.dylib                 0x00007fff8b8e0899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff8b8e072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff8b8e4fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000142fae5b8  rbx: 0x0000000142fae5b8  rcx: 0x0000000143c1dc80  rdx: 0x0000000000000004
      rdi: 0x0000000142fae5b8  rsi: 0x0000000143155740  rbp: 0x00007fff5fbf9100  rsp: 0x00007fff5fbf90e8
       r8: 0x0000000000000038   r9: 0x0000000000000010  r10: 0x000000000000007f  r11: 0x00000001432f4030
      r12: 0x0000000143155740  r13: 0x0000000143192468  r14: 0x0000000142a3dd90  r15: 0x0000000108e3fe00
      rip: 0x0000000141487240  rfl: 0x0000000000010202  cr2: 0x0000000141487240
    Logical CPU:     2
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
           0x100000000 -        0x103bb5f07 +com.adobe.Photoshop (14.1.2 - 14.1.2.427) <CC99E953-1231-383F-BC67-BCE95BA4E2A7> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
           0x104301000 -        0x10432dff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/libtbb.dylib
           0x104347000 -        0x104366fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/libtbbmalloc.dylib

    If your whole computer freezes - then the cause is not an application. Applications cannot cause the entire system to freeze, restart, or shutdown. Only bugs in the OS, low level drivers, or defective hardware can do that.
    Based on your description, I would be looking for a problem with a disk drive of some sort (internal, external, or USB drive).
    We have frequently seen bad RAM, bad GPUs, bad motherboards, and bad power supplies cause the same issues (and infrequently defective CPUs, but that's been a while).

  • How to remove titlebar icon in ScriptUI dialog?

    When I create a dialog with ScriptUI, its titlebar gets an ugly icon. How can I remove this?
    Using a palette instead of a dialog removes the icon, but I want a dialog in this case.

    I think the dialog wind may look different between Platforms OS versions Adobe applications and versions. What dies the window with the Icon you don't like look like post a screen capture,
    For example I use windows 7 these days.  On Windows 7 system with CS2 My dialogs have a title but no icon. There the is an icon when I use CS6, CC and CC 2014. The icon is the same in the three version of Photoshop..  Is this the ugly icon your referring to?

  • CS6 iconbutton issue

    var w = new Window ("palette");
    var f = File ("~/Desktop/Script tests/Icons/folder.png");
    var a = File ("~/Desktop/Script tests/Icons/accept.png");
    var button = w.add ("iconbutton", undefined,ScriptUI.newImage  ( f,undefined, a, undefined), {style:'toolbutton', toggle:true});
    w.show ();
    The following code doesn`t work propely in CS6.
    Icon button doesn`t switch to accept.png. There is always folder.png icon.
    CC and CC2014 versions works fine.
    Does anyone have the same issue?

    Thank you David. Just wanted to know for sure.
    I`ll post my solution below if someone else will have the same issue.
    var w = new Window ("palette");
    var f = File ("~/Desktop/Script tests/Icons/folder.png");
    var a = File ("~/Desktop/Script tests/Icons/accept.png");
    if(parseFloat(app.version) < 12){
    var button = w.add ("iconbutton", undefined,ScriptUI.newImage  ( f, {toggle:true});
    button.onClick = function(){
        (button.value == false)?button.icon = ScriptUI.newImage(f) : button.icon = ScriptUI.newImage(a);    
        }else{
    var button = w.add ("iconbutton", undefined,ScriptUI.newImage  ( f,undefined, a, undefined), {style:'toolbutton', toggle:true});
    w.show ();

  • PSD cs6 scipts

    Can anyone please give me some help with some scripts?
    I have been given a job of finding or writing a script for PSD cs6 that generates a new file name with predefined file info and sequential number as well as reducing the image size by ?% and introducing the reduction size into the file name. I do not know much about scripting apart from using it so I realise I might be asking the impossible but would really appreciate any help or tips regarding this.

    No not Russell---- X     
    Here is what I see.. Russell has been pulled off of Photoshop by Adobe
    Welcome to the Russell Brown Show and this helpful set of scripts, panels, and actions that can assist with several of your design and production tasks. These utilities can be extremely helpful, but they are definitely not perfect. They can occasionally fail and cause some inconveniences.  (Photoshop has more the its share of bugs my comment)
    Most of my scripts will only work with Adobe Photoshop CS5 or CS6. Please note! I will not be able to update any of my scripts, and panels for future versions of Adobe Photoshop. Sorry for this inconvenience, but please take note that I am releasing the source code so others can make adjustments to my script and panels.
    The Open Source code is now available for many of my script and panels
    Because of new projects and a changing demand for my time, it will be necessary for me to move on to new projects at Adobe. For this reason I will no longer be able to support, or update many of my scripts and panels.
    I am releasing the source code for many of my programs and if you are a programmer then you can use this code to modify and change my scripts to meet your needs.
    If you are not a programmer then I recommend working with anyone on the list of programmers that I have supplied below.
    If none of these techniques have fixed your problems then I highly recommend that you uninstall my scripts and panels from your system.
    German Programming Support
    Matthias Alph
    English Programming Support
    Sandra Voelker
    Trevor Morris
    Michael Hale
    Ross Huitt [email protected]
    Then there the Adobe scripting forum where Ross Huitt wrote
    xbytor2, Sep 19, 2013 3:15 PM   in reply to MSSDedalus Report
    Adobe moved some photo oriented features that were implement in jsx to Bridge several revs ago to a new scripting framework (AUM). See the Output workspace in Bridge. They may have intended publishing the interface to that framework but it never happened and it was more complicated than it needed to be because you don't have the full PS/JS API available in Bridge. Customers got really upset that Contact Sheet II was no longer supported in PS, so they brought it back in a slightly improved form for CS6. However, there is a slow degradation in the PS/JS implementation. Existing bugs don't get fixed, new ones appear with each rev, and new features are generally not well (or at all) supported in JS.
    Scripting a UI is a mess. Each rev is slightly different than the previous one. Automatic layout is such a minefield that I gave up within a rev of  its release. Then they added the Flash/AS mechanism and maybe something else. Then there is the undocumented UI layout that their own scripts use (Latte). And the not-quite-complete HTML stuff in ScriptUI. And no WYSIWYG UI layout tools. My guess long term is that they are leaning towards HTML5 for the JS UI stuff which is fine, but I've tossed in the towel. I'll maintain CSX, xtools, and Image Processor Pro for the foreseeable future but I have no intention of doing any major new projects.
    CS6 is still getting ACR updates and bug fixes so I continue to work there in spite of the fact that I have a CC license for a year. I don't want to inadvertently start using features that will lock me into CC and be screwed when my license expires. Also, I sure don't need no steenkeen cloud. I'll probably keep updating Lightroom, however, and may look into scripting some stuff there if there is anything interesting that can be done there now.
    </rant

Maybe you are looking for

  • 3G iPod - no more "OK to disconnect" screens, a Firewire problem

    I have an old 3G iPod - 15GB with the 4 touch buttons - that still works fine. This is a model that can sync via USB or Firewire, but can only get power from Firewire. For the first couple of years it synced with a Win2000 machine just fine via Firew

  • Transmission Configuration issue

    Hi all, I'm now setting a SFTP transmission in Oracle R12.1.2 in the following procedures: 1. Log into Payment System Admin resp 2. Navigate to Payment System--- Transmission Protocol 3. Create a protocol for "Secure File Tranfer Protocol For Static

  • How do I get my music in FCE?

    I'm sure this is really simple, and I've probably just missed a step but I have converted my songs to AIFF and I tried importing, I tried dragging and dropping... How do I get them in FCE?

  • Reschedule multiple missed webi reports

    We have a large number of scheduled webi reports that did not run for whatever reason. Is there a way to find all the pending scheduled reports and reschedule them? Or do we have to recreate the schedules for each report?

  • How to recover from STOP: 0x0000007E Error?

    Satellite L25-S119 Windows XP Home Edition The other day while trying to install a new iPod Touch the laptop died with the blue screen of death as IE was trying to open with the iPod connected to the USB port. Every time the machine boots now this bl