Bug in SP.JS with SP.List.set_enableVersioning(bool)

Currently their are two functions used for getting/setting major versioning for sharepoint lists in javascript. list.get_enableVersioning() and list.set_enableVersioning(). The get operation works fine, however the set will come back as successful with no
changes actually performed on the list.
The following is a code sample which shows the behavior :)
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>
<script>
$(document).ready(function()
SP.SOD.executeFunc('sp.js', 'SP.ClientContext', function()
$('div#log').append("SharePoint Client Object Model Loaded<br/>");
var ctx;
function GetContext()
ScanWeb($("#scURL").val());
function ScanWeb(URL)
var wCtx;
var features;
var web;
var url;
var webs;
var guid;
var view;
var feature;
var list;
var views;
var viewFields;
url = URL;
//get SPWeb at specified URL
function scan()
$('div#log').append("Starting scan of " + URL + "<br/>");
wCtx = new SP.ClientContext(URL);
web = wCtx.get_web();
wCtx.load(web);
$('div#log').append("Loaded site at: " + URL + "<br/>");
CheckAndUpdateVersioning();
ScanForSubwebs();
function ScanForSubwebs()
$('div#log').append("Loading whether site contains subsites<br/>");
wCtx = new SP.ClientContext(URL);
webs = wCtx.get_web().get_webs();
wCtx.load(webs)
wCtx.executeQueryAsync(function(sender, args)
var wEnum = webs.getEnumerator();
while(wEnum.moveNext())
var w = wEnum.get_current();
$('div#log').append("Opened site " + w.get_url() + "<br/>");
ScanWeb(w.get_url());
}, Function.createDelegate(this, this.Error));
function CheckAndUpdateVersioning()
list = web.get_lists().getByTitle('Documents');
wCtx.load(list);
wCtx.executeQueryAsync(function(sender, args)
$('div#log').append(web.get_url() + " Library EnableVersioning is enabled: " + list.get_enableVersioning()+ "<br/>");
if(list.get_enableVersioning() == false)
EnableVersions();
}, Function.createDelegate(this, this.Error));
function EnableVersions()
list.set_enableVersioning(true)
list.update();
wCtx.executeQueryAsync(function(sender, args)
$('div#log').append("Versioning enabled: " + vr + "<br/>");
}, Function.createDelegate(this, this.Error));
function Error(sender, args)
$('div#log').append("<div style='color:red'>Error: " + URL + "<br/>" + args.get_message() + "<br/>" + args.get_stackTrace() + "<div>");
scan();
</script>
<div id="log">
<b>Progress:</b><br/>
</div>
<span>
Site Collection URL
<input id="scURL" type="text" />
<input id="activateBtn" type="button" value="Enable Versioning" onclick="GetContext();return false;"/>
</span>
My CodePlex -
My Blog - My Twitter
Join me at the San Francisco SharePoint User Group!
If this post helped you or answered your question please remember to mark it! :)

You probably need to load the list into the context after you set the property and call the update method. The code below is working for me:
function setListVersioning() {
hostweburl = decodeURIComponent(getQueryStringParameter('SPHostUrl'));
appweburl = decodeURIComponent(getQueryStringParameter('SPAppWebUrl'));
context = new SP.ClientContext.get_current();
hostWebContext = new SP.AppContextSite(context, hostweburl);
currentWeb = hostWebContext.get_web();
list = currentWeb.get_lists().getByTitle("Documents");
list.set_enableVersioning(true);
list.update();
context.load(list);
context.load(currentWeb);
context.executeQueryAsync(function () {
var success = list.get_enableVersioning();
}, failure(function(sender,e){
alert(e);
Blog | SharePoint Field Notes Dev Tools |
SPFastDeploy | SPRemoteAPIExplorer

Similar Messages

  • [svn:bz-trunk] 18926: bug fix BLZ-570 Double linked list with lot of objects result in BlazeDS Error deserializing error  : StackOverflowError

    Revision: 18926
    Revision: 18926
    Author:   [email protected]
    Date:     2010-12-01 14:07:19 -0800 (Wed, 01 Dec 2010)
    Log Message:
    bug fix BLZ-570 Double linked list with lot of objects result in BlazeDS Error deserializing error : StackOverflowError
    We put hard limit to the max object nest level to prevent StackOverFlowError. the default max object nest level is 1024 and it can be configured in the endpoint/serialziation section in service-config.xml.
    This needs documentation.
    Checkintests pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-570
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/errors.properties
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java
        blazeds/trunk/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf0Input.java
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf3Input.java
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/AmfIO.java

  • Set a default value for a radio button populated with a List of value

    Hi,
    I am using jdeveloper 11.1.1.3.0. I need to set a default value for a radio button populated with a List of value(Yes/No). Here's the selectonechoice code.
    <af:selectOneRadio value="#{bindings.Code.inputValue}"
    label="#{bindings.Code.label}"
    required="#{bindings.Code.hints.mandatory}"
    shortDesc="#{bindings.Code.hints.tooltip}"
    id="sor1" autoSubmit="true"
    valuePassThru="true" layout="horizontal">
    <f:selectItems value="#{bindings.Code.items}" id="si1"/>
    </af:selectOneRadio>
    I want to have the selectonechoice set to No by default. In the previous versions, I set the default value in the base attribute VO. But it is not working in the new version.
    Thanks

    Hi,
    this should work in JDeveloper 11.1.1.3 the same as in 11.1.1.2. If it doesn't then it is better to file a bug than to work around it
    Frank

  • [svn:fx-trunk] 12552: DataGroup now tracks the indices of the active virtual item renderers with a list , rather than the min/max values.

    Revision: 12552
    Revision: 12552
    Author:   [email protected]
    Date:     2009-12-04 13:45:12 -0800 (Fri, 04 Dec 2009)
    Log Message:
    DataGroup now tracks the indices of the active virtual item renderers with a list, rather than the min/max values. 
    DataGroup/addItemRendererToDisplayList() now respects the overlay.
    QE notes:
    Doc notes:
    Bugs: sdk-24052
    Reviewer:
    Tests run: DataGroup, List
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-24052
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DataGroup.as

    Hello Martin:
    Thanks for your input.  However I am not certain we have resolved this issue adequately, or understand the principles governing the css as regards this spry menu framework 2.0 (1.0).
    For example, the menu only works in IE 6.0 if the css remains in the head.  I agree with your original post that it shouldn't make any difference whether the css is posted in the head or in a separate style sheet (so long as specificity issues are addressed).  Both should work -- and yet it doesn't.
    If the CSS is placed in the separate style sheet governing the total site, it doesn't work for 6.0.  If placed at the top of the style sheet, conflicts of specificity prevent the menu from rendering properly in any of the browsers causing the rules for general links to govern the menu.   This has been verified using a cross browser testing.  If the styles are placed at the bottom of the style sheet to help them take precedence, they work in all the browsers except for IE 6.
    The website I am building needs to support IE 6 for a variety of reasons, and because it is catering to the non-profit community and to low income persons, I am mindful of even small differences in page weight.
    So for me, at least, the issue remains baffling.
    I appreciate your input, but also would appreciate the input from others, and especially Adobe Community Professionals and employees.  The spry framework in this regard is not well documented.  I am not certain if this is exclusively a CSS problem, if it might also be complicated by the architecture of the spry framework, or if indeed other variables are at play.
    I would be my hope that in resolving the problem, other users of the this particular spry framework might also benefit.
    Thanks,
    Steve.

  • ARD 3.6.1 running on 10.8.1 - Beach balls with smart list or other user created lists

    ARD 3.6.1 will always beach ball until I force quit if I have a smart group or list created. It will launch fine if there hasn't been any type of List, Group, Scanner, or Smart List set. If I create one, it works fine until I relaunch the app. With no lists, I can relaunch fine. With a list, next relaunch beach balls. I can remedy the issue by trashing the user pref for ARD. But once I recreate a list...beach ball on relaunch.
    Date/Time: 
    2012-09-17 10:13:30 -0400
    OS Version: 
    10.8.1 (Build 12B19)
    Architecture:
    x86_64
    Report Version:  11
    Command:   
    Remote Desktop
    Path:       
    /Applications/Remote Desktop.app/Contents/MacOS/Remote Desktop
    Version:   
    3.6.1 (3.6.1)
    Build Version:   1
    Project Name:
    RemoteDesktop
    Source Version:  471016000000000
    Parent:     
    launchd [201]
    PID:       
    445
    Event:     
    hang
    Duration:   
    1.82s
    Steps:     
    19 (100ms sampling interval)
    Hardware model:  MacBookPro8,1
    Active cpus:
    4
    Free pages: 
    1350965 pages (+2096)
    Pageins:   
    4 pages
    Pageouts:   
    0 pages
    Process:   
    Remote Desktop [445]
    Path:       
    /Applications/Remote Desktop.app/Contents/MacOS/Remote Desktop
    Architecture:
    x86_64
    Parent:     
    launchd [201]
    UID:       
    501
    Task size: 
    5521 pages (+6)
      Thread 0x17a4
    DispatchQueue 1     
    priority 46   
      19 ??? (Remote Desktop + 7380) [0x107288cd4]
    19 ??? (Remote Desktop + 283965) [0x1072cc53d]
    19 NSApplicationMain + 869 (AppKit) [0x7fff922b5656]
    19 -[NSApplication run] + 517 (AppKit) [0x7fff92310c03]
    19 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x7fff92319862]
    19 _DPSNextEvent + 1456 (AppKit) [0x7fff9231a2a6]
    19 AEProcessAppleEvent + 100 (HIToolbox) [0x7fff8e9f8e29]
    19 aeProcessAppleEvent + 318 (AE) [0x7fff8bd38c89]
    19 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37 (AE) [0x7fff8bd38dc9]
    19 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307 (AE) [0x7fff8bd38f68]
    19 EventHandlerThunk(AEDesc const*, AEDesc*, void*) + 99 (OpenScripting) [0x7fff8cbe98b1]
    19 InjectEventHandler + 96 (SIMBL) [0x10bc3d3cf]
    19 +[SIMBL installPlugins] + 426 (SIMBL) [0x10bc3e5a6]
    19 +[SIMBL loadBundle:] + 99 (SIMBL) [0x10bc3e69b]
    19 -[NSBundle principalClass] + 39 (Foundation) [0x7fff8f0a1f64]
    19 -[NSBundle load] + 19 (Foundation) [0x7fff8f0a135c]
    19 -[NSBundle loadAndReturnError:] + 581 (Foundation) [0x7fff8f0a15a6]
    19 _NSBundleLoadCode + 588 (Foundation) [0x7fff8f0a1ad0]
    19 _CFBundleLoadExecutableAndReturnError + 620 (CoreFoundation) [0x7fff9408278c]
    19 _CFBundleDlfcnLoadBundle + 183 (CoreFoundation) [0x7fff94086e07]
    19 dlopen + 57 (libdyld.dylib) [0x7fff8d328dd8]
    19 dlopen + 581 (dyld) [0x7fff66e9187c]
    19 dyld::runInitializers(ImageLoader*) + 89 (dyld) [0x7fff66e8be38]
    19 ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 54 (dyld) [0x7fff66e96eba]
    19 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 357 (dyld) [0x7fff66e97057]
    19 dyld::notifySingle(dyld_image_states, ImageLoader const*) + 230 (dyld) [0x7fff66e88e02]
    19 load_images + 130 (libobjc.A.dylib) [0x7fff8dfb7a3f]
    19 call_load_methods + 159 (libobjc.A.dylib) [0x7fff8dfb7d5a]
    19 -[NSWindow display] + 106 (AppKit) [0x7fff92422bd2]
    19 -[NSView displayIfNeeded] + 1830 (AppKit) [0x7fff9231d703]
    19 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675 (AppKit) [0x7fff9235379d]
    19 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314 (AppKit) [0x7fff92357b73]
    19 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817 (AppKit) [0x7fff92358122]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704 (AppKit) [0x7fff9235a509]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704 (AppKit) [0x7fff9235a509]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704 (AppKit) [0x7fff9235a509]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704 (AppKit) [0x7fff9235a509]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704 (AppKit) [0x7fff9235a509]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704 (AppKit) [0x7fff9235a509]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704 (AppKit) [0x7fff9235a509]
    19 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656 (AppKit) [0x7fff9235a0f1]
    19 -[NSView _drawRect:clip:] + 4217 (AppKit) [0x7fff9235ba94]
    19 -[NSTableView drawRect:] + 1269 (AppKit) [0x7fff92477676]
    19 -[NSTableView drawRowIndexes:clipRect:] + 397 (AppKit) [0x7fff92478c93]
    19 ??? (Remote Desktop + 461783) [0x1072f7bd7]
    19 ??? (Remote Desktop + 124912) [0x1072a57f0]
    19 MPEnterCriticalRegion + 179 (CarbonCore) [0x7fff90967754]
    19 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff909913e3]
    19 TSWaitOnCondition + 108 (CarbonCore) [0x7fff9099120c]
    19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff94c8e0fa]
    *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Thread 0x17b5
    DispatchQueue 2     
    priority 48   
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff93cdaa2a]
    19 kevent + 10 (libsystem_kernel.dylib) [0x7fff94c8ed16]
    *19 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x17bb
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 1582856) [0x107409708]
    19 ??? (Remote Desktop + 1583844) [0x107409ae4]
    19 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff8f0603da]
    19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8f0c7ace]
    19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff9405bdd2]
    19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff9405c606]
    19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff94056f23]
    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c686]
    *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x17bc
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __select + 10 (libsystem_kernel.dylib) [0x7fff94c8e322]
    *19 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0x17db
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 PrivateMPEntryPoint + 58 (CarbonCore) [0x7fff909687dc]
    19 ??? (Remote Desktop + 802837) [0x10734b015]
    19 read + 10 (libsystem_kernel.dylib) [0x7fff94c8effa]
    *19 hndl_unix_scall64 + 19 (mach_kernel) [0xffffff80002cecf3]
    *19 unix_syscall64 + 522 (mach_kernel) [0xffffff80005e17da]
    *19 read_nocancel + 130 (mach_kernel) [0xffffff8000576882]
    *19 ??? (mach_kernel + 3631710) [0xffffff8000576a5e]
    *19 soreceive + 5579 (mach_kernel) [0xffffff8000599acb]
    *19 sbwait + 175 (mach_kernel) [0xffffff800059ccdf]
    *19 msleep + 116 (mach_kernel) [0xffffff800056a2e4]
    *19 ??? (mach_kernel + 3579638) [0xffffff8000569ef6]
    *19 lck_mtx_sleep + 78 (mach_kernel) [0xffffff80002265ce]
    *19 thread_block_reason + 300 (mach_kernel) [0xffffff800022d9dc]
    *19 ??? (mach_kernel + 190225) [0xffffff800022e711]
    *19 machine_switch_context + 366 (mach_kernel) [0xffffff80002b3d3e]
      Thread 0x17dc
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 PrivateMPEntryPoint + 58 (CarbonCore) [0x7fff909687dc]
    19 ??? (Remote Desktop + 804382) [0x10734b61e]
    19 ??? (Remote Desktop + 652066) [0x107326322]
    19 ??? (Remote Desktop + 111328) [0x1072a22e0]
    19 MPEnterCriticalRegion + 179 (CarbonCore) [0x7fff90967754]
    19 TSWaitOnConditionTimedRelative + 132 (CarbonCore) [0x7fff909913e3]
    19 TSWaitOnCondition + 108 (CarbonCore) [0x7fff9099120c]
    19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff94c8e0fa]
    *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Thread 0x17de
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 759666) [0x107340772]
    19 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6da]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x17f1
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 663078) [0x107328e26]
    19 ??? (Remote Desktop + 665196) [0x10732966c]
    19 ??? (Remote Desktop + 123523) [0x1072a5283]
    19 +[NSBundle mainBundle] + 48 (Foundation) [0x7fff8f071c3f]
    19 -[NSRecursiveLock lock] + 22 (Foundation) [0x7fff8f071e39]
    19 __psynch_mutexwait + 10 (libsystem_kernel.dylib) [0x7fff94c8e122]
    *19 psynch_mtxcontinue + 0 (mach_kernel) [0xffffff80005b4650]
      Thread 0x17f2
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 657069) [0x1073276ad]
    19 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6da]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x17f3
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 673641) [0x10732b769]
    19 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6da]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x17f4
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 679428) [0x10732ce04]
    19 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6da]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x17f5
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 654777) [0x107326db9]
    19 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6da]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x17f6
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 688741) [0x10732f265]
    19 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6da]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x17fc
    priority 46   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 ??? (Remote Desktop + 82033) [0x10729b071]
    19 semaphore_timedwait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6da]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Thread 0x1b1f
    priority 48   
      14 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8bacf1b1]
    14 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8bae4cf3]
    14 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff94c8e6d6]
    *14 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Thread 0x1b24
    priority 48   
      14 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8bacf1b1]
    14 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8bae4cf3]
    14 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff94c8e6d6]
    *14 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Binary Images:
    0x107287000 -   
    0x1074fbff7  com.apple.RemoteDesktop 3.6.1 (3.6.1) <24853030-2C39-357D-BEA0-486A4DA05BEA> /Applications/Remote Desktop.app/Contents/MacOS/Remote Desktop
    0x10bc3c000 -   
    0x10bc3fff7  net.culater.SIMBL.osax 0.9.9 (0.9.9) <F0F26DED-2BF8-C0BF-8D26-30D50D989095> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    0x7fff66e87000 -
    0x7fff66ebb93f  dyld <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
    0x7fff8bace000 -
    0x7fff8bb9afef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    0x7fff8bd30000 -
    0x7fff8bd8dff7  com.apple.AE 645 (645) <9C3E54BA-EE6B-3F02-8775-9C4AF40F40CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8cbd6000 -
    0x7fff8cbf2fff  com.apple.openscripting 1.3.5 <ACDE22A1-6170-3289-AF26-E501E6326BD7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8d327000 -
    0x7fff8d32aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff8dfb2000 -
    0x7fff8e0caa27  libobjc.A.dylib <9FA80CDA-97F4-3801-8879-0C1B976BC5CA> /usr/lib/libobjc.A.dylib
    0x7fff8e98f000 -
    0x7fff8ecbeff7  com.apple.HIToolbox 2.0 <49C4A53E-9239-3B9A-95DC-8C7B398E491D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8f02d000 -
    0x7fff8f389ff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff908e4000 -
    0x7fff90bfbff7  com.apple.CoreServices.CarbonCore 1037 (1037) <5127E2AB-AE98-3393-AEF6-CA8C1090F921> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff921c3000 -
    0x7fff92dedfff  com.apple.AppKit 6.8 (1187) <C9309F5C-9441-3E5B-A120-B03FEDDA63F9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff93cd6000 -
    0x7fff93cebff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    0x7fff94027000 -
    0x7fff94210fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff94c7c000 -
    0x7fff94c97ff7  libsystem_kernel.dylib <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <3005059E-270B-3B9F-940D-7A66C05DDC9D> /mach_kernel
    Process:   
    accountsd [252]
    Path:       
    /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:
    x86_64
    Parent:     
    launchd [201]
    UID:       
    501
    Sudden Term:
    Clean (allows idle exit)
    Task size: 
    1360 pages
      Thread 0x90c 
    DispatchQueue 1     
    priority 31   
      19 start + 1 (libdyld.dylib) [0x7fff8d3297e1]
    19 ??? (accountsd + 3040) [0x106fc7be0]
    19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff9405bdd2]
    19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff9405c606]
    19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff94056f23]
    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c686]
    *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x929 
    DispatchQueue 2     
    priority 33   
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff93cdaa2a]
    19 kevent + 10 (libsystem_kernel.dylib) [0x7fff94c8ed16]
    *19 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Binary Images:
    0x106fc7000 -   
    0x106fc7fff  accountsd <6B917177-B1C5-3840-A150-895F9111AE9E> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    0x7fff8d327000 -
    0x7fff8d32aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff93cd6000 -
    0x7fff93cebff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    0x7fff94027000 -
    0x7fff94210fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff94c7c000 -
    0x7fff94c97ff7  libsystem_kernel.dylib <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <3005059E-270B-3B9F-940D-7A66C05DDC9D> /mach_kernel
    Process:   
    AirPort Base Station Agent [323]
    Path:       
    /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    Architecture:
    x86_64
    Parent:     
    launchd [201]
    UID:       
    501
    Sudden Term:
    Clean
    Task size: 
    500 pages
      Thread 0xd2d 
    DispatchQueue 1     
    priority 31   
      19 start + 1 (libdyld.dylib) [0x7fff8d3297e1]
    19 ??? (AirPort Base Station Agent + 71957) [0x101f98915]
    19 CFRunLoopRun + 97 (CoreFoundation) [0x7fff9406aa81]
    19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff9405bdd2]
    19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff9405c606]
    19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff94056f23]
    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c686]
    *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xd35 
    DispatchQueue 2     
    priority 33   
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff93cdaa2a]
    19 kevent + 10 (libsystem_kernel.dylib) [0x7fff94c8ed16]
    *19 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0xd3c 
    priority 31   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __select + 10 (libsystem_kernel.dylib) [0x7fff94c8e322]
    *19 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0xd3d 
    priority 31   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 ??? (AirPort Base Station Agent + 72800) [0x101f98c60]
    19 ??? (AirPort Base Station Agent + 10633) [0x101f89989]
    19 ??? (AirPort Base Station Agent + 73571) [0x101f98f63]
    19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff94c8e0fa]
    *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b5cb0]
      Binary Images:
    0x101f87000 -   
    0x101f9dff7  com.apple.AirPortBaseStationAgent 1.5.5 (155.7) <F3A0627B-7620-3A09-A390-3FEBA3DE9CCD> /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent
    0x7fff8bace000 -
    0x7fff8bb9afef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    0x7fff8d327000 -
    0x7fff8d32aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff93cd6000 -
    0x7fff93cebff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    0x7fff94027000 -
    0x7fff94210fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff94c7c000 -
    0x7fff94c97ff7  libsystem_kernel.dylib <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <3005059E-270B-3B9F-940D-7A66C05DDC9D> /mach_kernel
    Process:   
    aosnotifyd [104]
    Path:       
    /usr/sbin/aosnotifyd
    Architecture:
    x86_64
    Parent:     
    launchd [1]
    UID:       
    0
    Task size: 
    1977 pages (+6)
      Thread 0x361 
    DispatchQueue 1     
    priority 31   
      19 start + 1 (libdyld.dylib) [0x7fff8d3297e1]
    19 ??? (aosnotifyd + 36447) [0x10ba42e5f]
    19 ??? (aosnotifyd + 35537) [0x10ba42ad1]
    19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8f0c7ace]
    19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff9405bdd2]
    19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff9405c606]
    19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff94056f23]
    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c686]
    *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x37f 
    DispatchQueue 2     
    priority 33   
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff93cdaa2a]
    19 kevent + 10 (libsystem_kernel.dylib) [0x7fff94c8ed16]
    *19 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x4e3 
    priority 63   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __NSThread__main__ + 1345 (Foundation) [0x7fff8f0c2842]
    19 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff8f0647d6]
    19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff9405bdd2]
    19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff9405c606]
    19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff94056f23]
    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c686]
    *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x507 
    priority 31   
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8bacf1c1]
    19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8bae2782]
    19 __select + 10 (libsystem_kernel.dylib) [0x7fff94c8e322]
    *19 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0x1b26
    priority 33   
      14 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8bacf1b1]
    14 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8bae4cf3]
    14 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff94c8e6d6]
    *14 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Thread 0x1b2b
    priority 33   
      14 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8bacf1b1]
    14 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8bae4cf3]
    14 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff94c8e6d6]
    *14 ??? (mach_kernel + 3911152) [0xffffff80005badf0]
      Binary Images:
    0x10ba3a000 -   
    0x10ba81ff7  aosnotifyd <A9359981-2023-3781-93F1-89D423F0F712> /usr/sbin/aosnotifyd
    0x7fff8bace000 -
    0x7fff8bb9afef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    0x7fff8d327000 -
    0x7fff8d32aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff8f02d000 -
    0x7fff8f389ff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff93cd6000 -
    0x7fff93cebff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    0x7fff94027000 -
    0x7fff94210fff  com.apple.CoreFoundation 6.8 (744) <47AEA7C7-EF9B-3FC6-AEBF-CE02FC650301> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff94c7c000 -
    0x7fff94c97ff7  libsystem_kernel.dylib <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <3005059E-270B-3B9F-940D-7A66C05DDC9D> /mach_kernel
    Process:   
    appleeventsd [55]
    Path:       
    /System/Library/CoreServices/appleeventsd
    Architecture:
    x86_64
    Parent:     
    launchd [1]
    UID:       
    71
    Sudden Term:
    Dirty (allows idle exit)
    Task size: 
    749 pages
      Thread 0x20c 
    DispatchQueue 2     
    priority 33   
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff93cdaa2a]
    19 kevent + 10 (libsystem_kernel.dylib) [0x7fff94c8ed16]
    *19 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0x20d 
    DispatchQueue 7     
    priority 31   
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff93cd7dc9]
    19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff94c8e566]
    *19 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Binary Images:
    0x102d28000 -   
    0x102d28fff  appleeventsd <D689616F-79C5-301C-B260-30FAD64BC2A5> /System/Library/CoreServices/appleeventsd
    0x7fff93cd6000 -
    0x7fff93cebff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    0x7fff94c7c000 -
    0x7fff94c97ff7  libsystem_kernel.dylib <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <3005059E-270B-3B9F-940D-7A66C05DDC9D> /mach_kernel
    Process:   
    AppleIDAuthAgent [286]
    Path:       
    /System/Library/CoreServices/AppleIDAuthAgent
    Architecture:
    x86_64
    Parent:     
    launchd [201]
    UID:       
    501
    Sudden Term:
    Clean (allows idle exit)
    Task size: 
    546 pages
      Thread 0xc0f 
    DispatchQueue 2     
    priority 33   
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff93cdaa2a]
    19 kevent + 10 (libsystem_kernel.dylib) [0x7fff94c8ed16]
    *19 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Thread 0xc11 
    DispatchQueue 7     
    priority 31   
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff93cd7dc9]
    19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff94c8e566]
    *19 ??? (mach_kernel + 3581120) [0xffffff800056a4c0]
      Thread 0xd7b 
    DispatchQueue 16   
    priority 31   
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8bacf1b1]
    19 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff8bae4ceb]
    19 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff93cd9207]
    19 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff93cd9335]
    19 _dispatch_queue_drain + 180 (libdispatch.dylib) [0x7fff93cd948c]
    19 _dispatch_queue_invoke + 72 (libdispatch.dylib) [0x7fff93cd9349]
    19 _dispatch_source_invoke + 691 (libdispatch.dylib) [0x7fff93cda2d7]
    19 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff93cd80fa]
    19 _dispatch_after_timer_callback + 22 (libdispatch.dylib) [0x7fff93cdc9ab]
    19 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff93cd80fa]
    19 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff93cdbf3d]
    19 ??? (AppleIDAuthAgent + 12731) [0x1027bb1bb]
    19 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c6c2]
    *19 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233e90]
      Binary Images:
    0x1027b8000 -   
    0x1027e9fff  AppleIDAuthAgent <6CD06F27-701A-3FE6-B6CD-9A77FD389AE9> /System/Library/CoreServices/AppleIDAuthAgent
    0x7fff8bace000 -
    0x7fff8bb9afef  libsystem_c.dylib <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
    0x7fff93cd6000 -
    0x7fff93cebff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    0x7fff94c7c000 -
    0x7fff94c97ff7  libsystem_kernel.dylib <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <3005059E-270B-3B9F-940D-7A66C05DDC9D> /mach_kernel
    Process:   
    appleprofilepolicyd [372]
    Path:       
    /usr/libexec/appleprofilepolicyd
    Architecture:
    x86_64
    Parent:     
    launchd [1]
    UID:       
    0
    Task size: 
    206 pages
      Thread 0x1011
    DispatchQueue 1     
    priority 31   
      19 start + 1 (libdyld.dylib) [0x7fff8d3297e1]
    19 ??? (appleprofilepolicyd + 5329) [0x1059354d1]
    19 mach_msg_server + 335 (libsystem_kernel.dylib) [0x7fff94c8c433]
    19 mach_msg_overwrite_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c692]
    *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Binary Images:
    0x105934000 -   
    0x105935ff7  appleprofilepolicyd <9EE56742-EC28-3D80-908F-ECB1964958A1> /usr/libexec/appleprofilepolicyd
    0x7fff8d327000 -
    0x7fff8d32aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff94c7c000 -
    0x7fff94c97ff7  libsystem_kernel.dylib <F646589B-13F8-3685-8C17-92C77993AE86> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff800073d30c  mach_kernel <3005059E-270B-3B9F-940D-7A66C05DDC9D> /mach_kernel
    Process:   
    AppleSpell [271]
    Path:       
    /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:
    x86_64
    Parent:     
    launchd [201]
    UID:       
    501
    Sudden Term:
    Clean
    Task size: 
    702 pages
      Thread 0xaeb 
    DispatchQueue 1     
    priority 46   
      19 start + 1 (libdyld.dylib) [0x7fff8d3297e1]
    19 ??? (AppleSpell + 7271) [0x10573ac67]
    19 -[NSSpellServer run] + 73 (Foundation) [0x7fff8f1af066]
    19 CFRunLoopRun + 97 (CoreFoundation) [0x7fff9406aa81]
    19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff9405bdd2]
    19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff9405c606]
    19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff94056f23]
    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff94c8c686]
    *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xaf1 
    DispatchQueue 2     
    priority 48   
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff93cdaa2a]
    19 kevent + 10 (libsystem_kernel.dylib) [0x7fff94c8ed16]
    *19 ??? (mach_kernel + 3471600) [0xffffff800054f8f0]
      Binary Images:
    0x105739000 -   
    0x1057eeff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    0x7fff8d327000 -
    0x7fff8d32aff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x7fff8f02d000 -
    0x7fff8f389ff7  com.apple.Foundation 6.8 (945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff93cd6000 -
    0x7fff93cebff7  libdispatch.dylib <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
    0x7fff94027000 -
    0x7fff94210fff  com.apple.

    It is common for ARD prefs to get corrupted. I have to convert mine to XML and edit them in BBedit regularly (I don't want to just trash them or I lose all my saved machines.) It's widely accepted that ARD has been basically abandoned by Apple (updated to keep running, but no bug fixes or new features) so we're going to have to live with this. Keep backups of your prefs!

  • Centering a horizontal image with label list...

    Hi there,
    Image list is aligned to the left by default. I'd like to know if it's possible to aligned it to the center of page? If so, please educate me... Thank you in advance...
    Chris :)
    Edited by: Chris K.W. on Dec 11, 2009 8:54 AM

    You've caused very little hassle. Microsoft on the other hand...
    To do this using CSS you have to account for bugs in IE, meaning it takes 4 times longer than it needs to. We won't go into the ensuing unfortunate chain of events involving VMs, but it meant that I couldn't test this on IE8.
    1. Set the template for the containing region to "No Template".
    2. To cope with Microsoft's broken browsers, enter
    <!--[if lt IE 8]>
    <div style="text-align: center;">
    <![endif]-->in the Region Header, and
    <!--[if lt IE 8]>
    </div>
    <![endif]-->in the Region Footer.
    3. Add this internal style sheet to the page HTML Header
    <style type="text/css">
    .t13HorizontalImageswithLabelList {
      margin-left: auto;
      margin-right: auto;
    </style>If it doesn't work in IE8 then try removing 'lt' and '8' in step 2.
    This will center all Horizontal Images with Label Lists on a page: we can change this if necessary, but will skip redundant code if it's not required.

  • Bug Appeal: LV6 activeX with Excel; Error -2147319784

    At Thu, 16 Nov 2000 14:55:00
    "Dominic Lavoie" wrote:
    <-2147319784 Old format or invalid type library.
    Dominic and others
    This is an old bug in LabVIEW that I have been fighting
    with for several years. The problem (as I have seen it) is that
    LabVIEW for some reason on some PC's suddenly becomes unable to read
    from the (NT-) registry that Excel is installed as an
    available ActiveX component on the machine. In my case the
    Excel8.olb file.
    Under earlier verion of LabVIEW no error messages
    was generated, but you could see the problem when entering
    the list over ActiveX classes, Type library. Suddenly the Excel
    would be gone from this list, and it will not come back no matter
    how you try to install, reinstall or reconfigure the Excel (or Office)
    system. (And the Regsvr32 program does not handle OLB files.)
    The only way I have heard to fix it, is to reformat the
    harddisk and install the OS and everything fresh. But you might
    see the problem coming back again.
    There might be a possibility that this bug is not NI's, but one
    in the OS. When I use other programs to View/Edit the registry,
    these programs have no problems of detecting the Excel library.
    So I believe it is a LabVIEW bug !
    When working with Excel and ActiveX with this problem
    meant that you had to manually browse to the OLB file each time you
    would want to work with it, or you would sometimes get messed up
    the wires and VI's working against the Excel library.
    Now, under LabVIEW 6i, this situation creates the error message
    -2147319784, and the problem suddenly seems much bigger.
    I have reported this bug two month ago to NI, together with some
    other people that has seen the same problem. So far NI has not
    been able to locate the problem in detail or done anything with it,
    as far as I have been informed.
    This has been a very frustrating experience for me, because there are
    many other features under 6i that I would like to use right away.
    But since I am working a lot with Excel as a data format from LabVIEW,
    I cannot proceed with 6i before they have broken this bug.
    So now I would like the LabVIEW community to help me push NI
    a little in their effort to debug this one.
    All questions of course assuming that you have installed Excel
    on your PC.
    Could as many as possible out there check out if,
    when testing the ActiveX/Excel examples;
    A) under 6i; do you get the Error -2147319784 ? (YES or NO)
    B) under 5.1.1 or earlier; can you run the example Write Table to XL.vi ?
    (YES or NO)
    C) if B=NO, can you locate the Excel library in the ActiveX class list ?
    (YES or NO)
    D) Where in the world are you located (country) ?
    (Some has speculated that this bug might be connected to a problem
    with different OS versions in different parts of the world.)
    E) What version of Excel are you using ?
    F) What OS are you running ?
    If you can't do both A and B/C, send me the one you can.
    Please report your results directly to me.
    DO NOT REPLY TO THIS LIST. I will send a
    summary after a couple of weeks, to let you know
    the results. And also if NI seems to make any progress here.
    best regards
    Martin Plassen

    "[email protected]" wrote in message
    news:[email protected]...
    > Martin, I'm not sure how to reply directly to you. (I can't find your
    > email address or anything.) I may be experiencing a very similar
    > problem. I am trying to generate Excel reports using LabVIEW 6.0
    > under a Windows 2000 OS. Under Win95 in LabVIEW 4 I had no problem
    > but I recently updated. Now I can't even open Excel using the NI
    > distributed LabVIEW 6i Excel toolkits from ni.com. When I execute the
    > Open Excel vi I get a Windows error message, "Labview.exe has
    > generated errors and will be closed by windows. An error log is being
    > created." Could this be the same problem dominic was having under WIN
    > NT?
    dmbillings
    It seems NI has been so kind as to remove the fix on this problem
    from their Knowledgebase. Well, I dug up some old e-mails on the subject,
    and here's one you should look through. According to NI this problem
    should have been fixed under LV 6, so I really hope this is not what you are
    facing...
    Martin
    Good news for all of you,
    we have a bug-fix that seems to do the trick.
    Here's the recipe , with my words:
    Do You have the bug ?
    You can confirm that the bug is there, by opening a new file in LabVIEW,
    in the diagram, insert an Automation Open.VI, right-click on it,
    Select ActiveX class, Browse, and check the Type Library list.
    You should not see the Microsoft Excel5 and 8 library in the list,
    if the bug is there.
    As I have suspected for a long time, the whole bug was related to
    how LabVIEW read the registry at startup to locate all ActiveX
    components on the machine.
    Here's the fix to try out;
    1. Open the RegEdit program
    2. Under HKEY_CLASSES_ROOT locate the TypeLib
    3. Locate the Excel-key
    On my machine this is {00020813-0000-0000-C000-000000000046}
    (You will find it on top part, I think, not necessary to browse long
    down.)
    4. There are two base keys there, named "1.0" and "1.2".
    Under the "1.0"-key, right-click and create new key, name it "0"
    (zero).
    5. Under the new "0"-key, create a new key kalled "win32".
    6. Under the "1.0"-"9"-"win32" key you will find the link to the
    Excel5-library on the machine, copy this link into the key you created
    under pt 5.)
    On my machine this is "C:\Program Files\Microsoft
    Office\Office\XL5EN32.OLB".
    That's all. Exit RegEdit.
    Afterwards, check again that the Microsoft Excel5 and 8 libraries
    is on the LabVIEW list mentioned above. After restarting LabVIEW of
    course. It is not necessary to restart the PC.
    Attached you wil find two gifs showing how this should look
    in RegEdit before and after the described operation.
    Good luck
    PS: hacking around is the registry are do be done with
    caution. The wrong actions here could have large consequences.
    The two attached pictures should help you out,
    but if you feel uncomfortable by working with the registry,
    try to hook on to some hacker around that has been there before.
    As I understand it, this is the reason that NI asked me also not to
    give this info directly to the List-server. So please don't do it
    you either. I plan to put the word out about the fix, not with these
    details, but with a reference to the NI Knowledgebase that soon will
    have this info.
    You are welcome to send me a conformation that you see the
    fix is working, or worst case, not.
    Martin

  • [svn:fx-trunk] 6993: * Fixed a duplicate Bindable metadata bug that showed up with

    Revision: 6993
    Author:   [email protected]
    Date:     2009-05-16 23:57:42 -0700 (Sat, 16 May 2009)
    Log Message:
    Fixed a duplicate Bindable metadata bug that showed up with
      describeType().
    tests Passed: checkintests
    Needs QA: YES, just confirm the bug fix, please.
    Needs DOC: NO
    Bug fixes: SDK-21133
    API Change: NO
    Reviewer: Pete F.
    Code-level description of changes:
      BindableSecondPassEvaluator.java
        Modified moveMetaDataToNewDefinition() to no longer insert the new
        Bindable metadata into the definition's statement list, because
        prepMetaDataNode() already handles this.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21133
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableSecondPassEva luator.java

    I just noticed that for some reason the project is using an old path to my SVN repository. I recreated it and reimported the project but for some reason Xcode didn't realize that. I'm betting there's some little file somewhere that's causing my problem.

  • Data Sheet View - Cannot Connect to Server at This Time. You can continue working with this list, but some data may not be available

    After a couple of years of trouble free operation, one of the lists in our SharePoint Foundation site suddenly (overnight) started presenting the error against Datasheet views on lists.
    The view returns a large number of items when working correctly c.6K - however Throttling Settings have been adjusted accordingly some time ago without detrimental affect on SharePoint users and network in general. As admin and therefore throttling at 20k
    items the error message still presents.
    The view was working fine at 4:30pm Wednesday 27/3, but was returning the error at 8:30am the next morning. To my knowledge very few items (if any) had been added to the list between those times and no system level changes had been made (SharePoint,
    SQL Express, or virtual Windows 2008R2 server).
    The problem is most apparent on 2 lists in SharePoint. I've checked that the settings within SharePoint admin are set to deal with queries that should accommodate the
    number of rows that are returned by the views associated with that list. It is still possible to create new items to the list and access data via 'standard views' that are presented with groups that are collapsed.
    Items in Documents Libraries on other parts of SharePoint and within the same subsite can be accessed at what feels like pretty normal speed -though small query size
    may mean the problem is masked to a large extent.
    More Specific
    The lists still open in Standard View -though much more slowly than was the case before the above error started to present.
    List Details
    Referrals Tracker (10,442 items) -the list was 10,420 something items on Wednesday when all was working fine.
    LD Tracker (4,390 items)
    Both lists have grown incrementally over the period of a couple of years rather than by adding a block of data to the list. Items are added/ updated one at a time using the associated
    form or directly into cells within a datasheet  view.
    That it is also experienced against the smaller list suggests to me that the number of items in the Referrals Tracker is not the main factor here.
    In attempting to resolve the issue I have managed to get datasheet views working that deliver 100 items and c2k items. Both views present much more slowly than we would normally expect.
    Throttling Settings
    List view limit - 12K items - has been this high for some time without damaging SharePoint performance across the company.
    Actions Taken So Far (no improved performance seen)
    The SharePoint Foundation WSS Content DB did was closer to the 10GB SQL Express limit earlier this month, however a clear down and rationalisation of versioning settings
    was undertaken to ensure that did not become a problem going forward.
    We did a Shrink on Thursday (the day the issue started presenting) to rationalise whitespace as all indicators were that this was where the problem may lie, but this has
    not resolved the problem.
    The WSS Content DB now sits at c5.5GB.
    What I Need to Know
    1) I'd like to understand what is causing the problem?
    2) What the fix is? or,
    3) How I might go about diagnosing the problem further to arrive at a fix.
    With all the above, I'm part wondering if the problem is related to the virtual server or poss SQL Express related rather than being a 100% SharePoint issue?

    Hi
    afearn,
    More often this is related to columns which are not editable by user, some columns are not editable in datasheet view. Please check if there is any new column addition and then you started getting this issue.
    Also datasheet view displays all items on same page so definitely it takes little long time then load in standard view.
    Let us know your results, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Is there a way to fix ipod touch screen display problem with song list?

    I was wondering if anybody has had this problem? I have an ipod touch 64gig 5th gen for probably about 2 years. I hardly use it because I have it as a back up ipod until primary one dies. This is the first time I came across this problem. Upon turning on device, the first artist/song list I choose displays correctly. Once I start choosing any other artist/song list afterwards, the display for the 1st artist/song list re-appears. If the song list is only a single song to 3-4 songs it will display correctly. Any other song list I choose that consist more than 5 songs, the first artist/song list re-appears on screen like the display is messed up.
    For example: Upon turning on device, I choose Aaliyah with a list of 9 songs displaying.
    Upon trying to select a different artist and song, for example I choose Nachtmar with a  list of 20 songs.
    The Aaliyah with the list of 9 songs re appears in place of the song list I am attempting to choose. The songs play and it works, but the display is incorrect. Why is it doing this? Does anybody have this problem? I have tried resetting and it has currently been updated. I have came across this problem just very recently a couple of days ago. I have had a couple of hard resets requiring to erase all data in the past and I don't want to go that way again because I have about 3,500 songs. I have never experience this problem before in the past. I just want it to display the current list of songs. It's inconvenient having to type in every song while playing in the car instead of being able to easily pick an individual song.

    I have this problem too and it drives me crazy. When I view my ipod, I don't want to see a list of the first 8 songs in my ipod library. I just want to see the current song playing. It's like the ipod display goes into some type of "sleep" mode while your music plays,and the display defaults to show the first few songs in your ipod touch library, even though none of those songs are currently being played. I have to take the time to either flip the ipod over a couple of times in order for that list to disappear just to see the current song playing.
    This is an example of what I see on my display after the current song begins playing. These are the first songs in my ipod library. To get rid of this view, I have to either shake the ipod or flip it over a couple of times and the current song is now displayed, allowing you to see the current song, also allowing you access to the arrows to either fast forward or playback/reverse. On the display, the songs are in a grid or table format (unable to show that here).
    Acoustic Soul
    Aaliyah
    Adventers on the Wheels
    Adventures in Paradise
    After Tonight
    Will Downing

  • How to provide the user with a list of files to pick from...for downloading

    hai..
    I have uploaded the file succesfully.. now we need to download the file...... which has been uploaded..... for that we have implemnted the Query as..
    select max(id) from APEX_APPLICATION_FILES ,here the latest uploaded record will be retrieved and shown.
    Now We want to provide the user with a list of files to pick from for downloading..,Dat is he should be shown the list of files which is available from dat he has to select one file to downlaod ???
    can u plz tell me how to do it....
    anoo

    Hi Anoo,
    Create a report using the following SQL statement:
    SELECT ID,
    FILENAME,
    CREATED_ON
    FROM APEX_APPLICATION_FILES
    ORDER BY CREATED_ON DESCThere are other fields available from the table, but the above gives you a start.
    Then edit the report's Report Attributes.
    Edit the CREATED_ON column and pick a Number/Date Format to use for the display and Apply Changes
    Edit the ID column. In the Column Link section, enter:
    Link Text: &lt;img src="#IMAGE_PREFIX#download.gif" alt="Download"&gt;
    Target: URL
    URL: p?n=#ID#
    Apply Changes and run your report
    Andy

  • Excel Services with SharePoint List Data in SharePoint 2013 - Chart is not refreshing automatically

    Hi Everyone,
    This is My req: I m going to display pie chart and Bar chart in share point 2013.
    Steps I have follwed:
    1. Export the list to excel.
    2.Using the Power Pivot table I have done the chart.
    3. Uploaded into document Library.
    4. Added into the web part. 
    Chart are displaying. But When ever user added the data into the list chart is refreshing.
    Is there any option to refresh the data in chart? Waiting for valuable replies.
    Regards, Manoj Prabakar

    SharePoint lists as data sources in Excel Services is not supported.That's the reason refreshing is not working. There are some work around you can use  -
    Export as Data Feed - Export your SharePoint list as Data Feed , use this data feed to a PowerPivot for Excel workbook and publish this PowerPivot using Excel Services.
    User-defined functions  - write UDF in C# and extend the Excel Services functionality to work with SharePoint lists.
    https://msdn.microsoft.com/library/bb267252(office.12).aspx#Office2007ExcelServicesUnlimited_SharePointLists
    Web Services API -
    The Web Services API can be used to push data from a database and then refresh the data in a SharePoint Server list by using Excel Services.
    JavaScript Object Model - The JavaScript Object Model for Excel Services in Microsoft SharePoint Server 2010 provides many solutions for Excel Services.
    More details  - 
    https://technet.microsoft.com/en-us/library/gg576960.aspx
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Sharepoint list dataheet view error "Cannot connect to the server at this time. You can continue working with this list, but some data may not be available"

    I have a List which is having around 14000 items in it.while opening that list in datasheet view it is giving error .
    Below is a summary of the issue:
    After selecting datasheet view beow error occurs:
        "Cannot connect to the server at this time.  You can continue working with this list, but some data may not be available."
        "Unable to retrieve all data."
        The item counts displays say 100 out of 14000 items.
    Exporting List to excel is giving only 2000 records out of 14000 records.
    Other Observations   -  
    This is happening to only one list on the site .There are other lists in the site whose no. of records is equal to 8000 to 9000.They are working absolutely fine without any error.
    Also, If I am saving this list as a template and creating another list with it ,then it is working absolutely fine with 14000 records,so the issue does not seem to be related with no. of records as the template list is working fine.
    I have checked the Alternate access mapping setting ,its fine.
    It should not be related to lookup,datefield or any other column as the list created from it template is working fine with all these columns.
    I checked below links also ,but doesn't seem to work in my case.
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/974b9168-f548-409b-a7f9-a79b9fdd4c50/
    http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/87077dd8-a329-48e8-b42d-d0a8bf87b082
    http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/dc757598-f670-4229-9f8a-07656346b9b0

    I have spent two days to resolve this issue. Microsoft has released two KBs with reference to this issue...but are not appearing in search results at the top.
    I am sharing my finding.
    1. First install the
    KB2552989 (Hopefully you might have already installed it. The KB detetcts it and informs the user.)
    2. Then update registry by adding new key for data fetch timeout as mentioned inKB2553007
    These two steps resolved the issue in our environment. Hope it might help others as well.
    Pradip T. ------------- MCTS(SharePoint 2010/Web)|MCPD(Web Development) https://www.mcpvirtualbusinesscard.com/VBCServer/paddytakate/profile

  • How to schedule job with spool list recipient in CPS ?

    Dear Guru,
    i import job with spool list recipient from r3 to cps and schedule in CPS, job is finished but there is no spool send to the recipient ?
    Please advise ?
    Best regards,
    Supat Jupraphat.

    What job definition did you use? SAP_AbapRun? SAP_AbapRunPrint? SAP_AbapRunPrintExt?
    Do you have XBP 2.0 or 3.0 in the SAP system? (check SE38 > INITXBP2)
    Have you loaded the CPS transport files in the SAP system?
    Note that using spoollist recipients either involves SAP_AbapRunPrintExt in combination with XBP3.0
    OR
    It involves SAP_AbapRun or SAP_AbapRunPrint and XBP 2.0 using transportation files in the SAP System.
    Please check the section of the CPS admin guide called: "Enhanced SAP Interfaces with Redwood Transports"
    Regards,
    David

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

Maybe you are looking for

  • Open as Smart Object as Layers in Photoshop?

    I apologize if this has been addressed already, but I am looking for a way to open Smart Objects as LAYERS.  I do compositing work and would like to retain as much information as possible by using Smart Objects PRIOR to going into Photoshop.  My curr

  • Multiple Portal page loads cause Param to become undefined

    Sirs, I am new to this so please bear with me. I was very please to get SPRY "tab" and "accordion" panels to work in our PORTAL (oracle). The only roadblock I came across is beyond my control. The portal pages load twice. I cannot change that. On eac

  • Problems Installing Oracle 10GR2 & kernel parameters

    Hi there, I'm trying to install Oracle 10G on a new Solaris10 machine. After extensivley reading the oracle install guide and proceeding my install failed with an out of memory error. Ive read the posts regarding many similar problems and to set the

  • Is leaving my MBP plugged into mains a bad thing?

    Is there an FAQ on this kind of stuff anywhere? I bet my questions are very common. 1 - Is leaving my MBP plugged into mains power a bad thing? Someone told me today that it's bad for the battery. I've had the thing about 6 weeks now, yet I've only g

  • Elements 6.0 Organizer crashes

    Recently, I've developed a problem with Adobe Photoshop Elements 6.0. When I click on the Organize tab, the program crashes. I have repeatedly followed the advice given in earlier FAQs to delete the Organizer folder in the User Data sub directory. Ho