Working around Component.setEnabled().

I'm having a lot of issues arising from events generated from setEnabled() due to the fact that they get added to the end of the queue. For some reason even running code using SwingUtilities.invokeLater() after the setEnabled() doesn't work, the offending code still ends up executed after what was in invokeLater(). I believe it's part of the UI's reaction to the property change but I haven't pin pointed it yet.
For example:
myJTextField.setEnabled(false);
SwingUtilities.invokeLater(new Runnable() {
    public void run() {
        myFocusCycleRoot.transferFocusDownCycle();
});Results in focus being transferred to myFocusCycleRoot's default component, then transferred to the component after myJTextField. This leads me to believe that code is run at the end of the queue and then THAT code runs code that gets added to the end of the queue which causes the focus to transfer. The code in invokeLater() would then end up executed between the two. Any ideas for a solution?

if I'm reading the snippet in Manning's book correct,
transferFocusDownCycle()
takes you to the next focus cycle,Either you are reading wrong or Manning is wrong.
Transfers the focus down one focus traversal cycle. If this Container is a focus cycle root, then the focus owner is set to this Container's default Component to focus, and the current focus cycle root is set to this Container. If this Container is not a focus cycle root, then no focus traversal operation occurs.
We're calling it on a focus cycle root and consequently the default component will have focus. According to the focus traversal policy installed the default component will be the first component found that is enabled, or null if none are enabled.
not the next component (again, if I'm reading
correctly, is what you're trying to do)Nope. Not what I want at all. That's the problem, setEnabled(false) indirectly results in focus transferring to the next component after focus has already been changed to the default component.
Let's say we have 10 components and we'll call them component 1 through component 10. Component 1 is the first component in the policy, component 10 is the last. The default component is the first enabled component found when iterating from 1 to 10. Now, a user may be viewing these components and may take some action. This action will result in those 10 components having their fields repopulated and some of them disabled based upon information from a model. Likewise, some of the components that may have been disabled prior to the user action may become enabled. Once this happens we want the focus to move to the default component, which may be before, or after, or even the same as the current component depending on what all was enabled/disabled. Unfortunately, if the current component happens to be disabled in this process then that disabling will cause focus to transfer to the next component after we've changed focus to the default component. So let's say we have thus:
Components 1-5 disabled component 6-10 enabled. The user is on component 6. The user takes said action. Now components 3, 4, 7, 9, 10 become enabled. Likewise components 1, 2, 5, 6, 8 become disabled. The default component will be the first enabled, 3, and using transferFocusDownCycle() the default component receives focus. So now the focus is on 3. However, 6 had focus before and was disabled, and somehow it's code only now results in transfering focus to 7, so it jumps to 7.
Now consider what happens if 7 became disabled. It happens before it has focus, so the focus transfer from 7 isn't triggered, but 7 still receives focus despite being disabled because the trigger in 6 happened before it was disabled. Now 7, a disabled component, receives focus but is disabled so focus ends up in limbo and nothing has it anymore.
Yes, it's a freaking nightmare and I'm about ready to file a bug because the more I think about it the dumber it sounds. Why should setEnabled() transfer focus? That should be left to the client to decide whether or not focus should even happen. Worst part of it is because of the way it's written if the next component becomes disabled between it's checking for focus owner and actually transferring focus then focus ends up in limbo and the next component gets a focus gained but never a focus lost. Plus, I don't see it documented in the API at all.
Oh, and I will try to put together a compilable example though it most certainly won't be short.

Similar Messages

  • Work-around The Whine: why does this work? And is it BAD?

    Hello everybody, sorry to bring up The Whine again, but I was wondering if anyone can figure out why the following trick works to eliminate the noise.
    Also, could doing this regularly (all the time, basically) potentially be bad for the system in any way?
    This is the work-around I've been using:
    1. Open Photobooth, then Force Quit that application (you must Force Quit rather than simply quit)
    2. Put the Macbook to sleep, waiting a few seconds until the indicator light starts pulsing.
    3. Wake up the computer.
    Voila. That always does the trick, eliminating the whine until either the next time I boot up or the next time I open and quit Photobooth in the normal way.
    I suppose force quitting may keep the processor slightly busy somehow?
    Don't know...

    John P.,
    You say that all the notebooks that you know of make
    some kind of noise. How many notebooks is that? Not
    trying to be a jerk or anything but it better be like
    dozens and dozens to make this claim. I have heard
    the exact opposite of this claim from users that have
    owned a few notebooks as well.
    Hi Jerome,
    No problem... I'll clarify..
    5 notebooks personally, so when I say "all notebooks that I know of", it's a true claim because that is exactly what I'm saying.
    If this noise is caused by capacitor that is at some
    miniature threshold then why does the noise go away
    when said remedies are employed? Does the capacitor
    get bigger? Doesn't make sense but I appreiate that
    you want to reassure original poster.
    Actually I may have misspoken--it may be called a "voltage regulator" and it sits directly West of the CPU and controller chip. They do make noise and from what I have been told and remember, they can dampen it w/ a capacitor but that's about it. It's just the nature of the beast for that type of component, I'm told.
    What "I" think it may be is the power fluctuations, or lack thereof, in the Intel chip causing it--when you put a load on it, there's a power fluctuation because your CPU usage is going up/down a little bit, but when you're not doing anything it's very little it causes it to make a little noise. No big deal, but just as long as it's not blaring in your ear when you're trying to use your computer. My ZV6000 does the same thing, but it doesn't matter when you've got a load or not--seems to do it more when I have Cool 'n' Quiet enabled.
    This is not right. I am sorry.
    If this noise is normal then I'll take no MacBook.
    You know it is being fixed apparently on the MacBook
    Pros by motherboard replacement.
    I never said anything about pro. I don't own one, nor have I used one. I can't say how profound in comparison to the Macbook (non pro) it is.
    I'm sure if Apple thought it was a big enough problem, they would act either more quickly about it, but it's not stopping me from checking my e-mail or going on the Web.

  • Bundle export/import questions and work arounds

    Hello,
    I've begun to use bundles to migrate components from our test server to our production server. Bundles are a great feature which i missed the last time i worked with N1SPS a few years back. But i've found a few things that i had to work around.
    1. It would be very nice to be able to set version to something like "latest" in the bundle, so i always get the latest version of all components when i do an export.
    2. The bundle should be able to export in a certain order, first folder then components, then containers and lastly plans. Today i have to add everything to the bundle in this order or change the XML-file in the jar afterwards. A function to change the order in the bundle would also help.
    3. Then the bundle is imported the container reefers to components of version 1.1 for some reason (in this case a directory), but it will import that component to version 1.0? I had to change the version reference in the XML to get this to work.
    Any workaround or is it all RFE:s and bugfixes?
    Regards
    Henrik

    Thank you for your fast reply. Is (1) something that could be object for a RFE? I think it's a common work flow to export the latest versions from a development server to a production server.
    Regards
    Henrik

  • [Universal Apps] Working around XamlRenderingBackgroundTask restrictions

    Hi,
    I'm still trying to wrap my head around the introduction of the XamlRenderingBackgroundTask for Universal apps. I'm currently planning my next app and I want it to have custom XAML bitmaps on tiles. Now I have a few questions on this:
    All samples and references recommend to write the XamlRenderingBackgroundTask in C++. While I'm generally not opposed to that, I still have a few problems regarding to accessing the app's functionality while rendering the tile. E.g. I want to get
    the newest updates from a server and calculate locally on what I should show on the tile. The same functionality is used within the full app and is written in C#, and I think implementing the whole functionality in C++ would be a lot of work (server
    communication, SQLite and Linq usage). This
    sample here shows one implementation of the XamlRenderingBackgroundTask but it is fairly limited in functionality because it only displays in time.
    I have thought of a two possibilites to work around the XamlRenderingBackgroundTask restrictions and I wanted to get some opinions on what the best way would be:
    Create two background tasks, one in C# and one in C++. The C# background task calculates the data that will be used and stores it locally for the C++ background task.
    The problem here is: Will the memory/CPU quotas hit the limit here? How can I guarantee the sequence (First C#, then C++)?
    Store the C# logic in a WinRT component and reference it from the C++ background task.
    I can't imagine this works, because the C# component will load the CLR runtime and I will hit the memory limit.
    Also I have another question regarding background tasks:
    Are the memory restrictions cummulative or is 16 MB on a 512 MB RAM phone device an upper limit that shall never be exceeded? E.g.:
    I create an image and update the tile which takes 14 MB. If I flush the tile correclty etc. do I again have 16 MB to work with or only the remaining 2 MB?
    The reason I ask is, because I wanted to allow the user to pin multiple (secondary) tiles to the start screen. If I only can create a tile once, it could never update (with XAML images) the other tiles.
    I'd be thankful for any thoughts on this.

    Hey, thanks for the replies so far!
    I don't control the server side, so I can't create the image there and push it to the device.
    I definitely want to create it in a BackgroundTask, otherwise there would be no value to these Live Tiles. Now, I did some digging around and played with the XAMLRenderingBackgroundTask types in both C# and C++. I created a sample app, which monitors
    the memory usage of a C++ and a C# background task and saves the results to files in the pictures library whenever the time zone is changed. You can download the source code here:
    Download solution
    My findings:
    1. If you have two separate Background tasks registered (e.g. one C# and one C++) and both tasks are run at the same time the limit will sum up, e.g. I got 60 MB as a limit and not 30, which is nice :) This means, that I can go ahead with the two
    Background tasks mailbox scenario, which will only result in a small time delay.
    2. Weirdly, it appears that the memory usage of the C# Background task is sometimes lower than the C++ one. Also, I never really got the C++ one below the C# Background task. Both Background tasks inherit from XamlRenderingBackgroundTask,
    but I never really try to render an image, is this the problem? Otherwise, I fail to see the reason why I can't use the XamlRenderingBackgroundTask on low memory devices ...
    Sample results from the tasks:
    C#
    Limit: 40
    Current usage: 3.296875
    Usage after memory allocation: 8.59375
    Concurrent: false
    C++
    Limit: 40
    Current usage: 4.50781
    Usage after memory allocation: 9.63672
    Concurrent: false
    C#
    Limit: 60
    Current usage: 6.0703125
    Usage after memory allocation: 6.4921875
    Concurrent: true
    C++
    Limit: 60
    Current usage: 6.12109
    Usage after memory allocation: 11.6563
    Concurrent: true
    Limit 40 means the debugger is still attached, otherwise the limit is 30 because I have a Lumia 925.
    Any ideas?

  • Work-around for ObjectListDataProvider bugs?!

    Everyone knows that ObjectListDataProvider will only work for showing up results from a List but will not update them if you change data on them, for example.
    So, does anyone have any work-arounds they would like to share? I have committed the mistake of beginning a project with SJSC and now I have nowhere to run because it is 80% done and ObjectListDataProvider just won't work.
    Also, does anyone know when SJSC 3 will come out? I desperately want this new version.

    I have sereral ObjectListDataProvider that are already working (runtime, design time is broken) by having an implemenation that retrieves the list from a Hibernate backend.
    I am using JSC Update 1 with all the updates from the update center.
    I have since created a new page and now get
    Caused by: java.lang.NoClassDefFoundError: com/sun/data/provider/impl/ObjectListDataProvider
    What is the best way of resolving this classpath issue?
    The complete stacktrace is shown below:
    Caught java.lang.reflect.InvocationTargetException in SLP.invokeGetter com.sun.rave.web.ui.component.RadioButton.value
    INFORMATIONAL *********** Exception occurred ************ at 5:11 AM on Sep 20, 2006
    java.lang.IllegalStateException: [Winsys] TopComponent MVCTC[name=null, peer=[model=current=com.sun.rave.project.jsfloader.JsfJavaEditorSupport$DesignerDesc@15f3a64]] throws runtime exception from its componentOpened() method. Repair it!
    [catch] at org.openide.windows.WindowManager.componentOpenNotify(WindowManager.java:254)
    at org.netbeans.core.windows.WindowManagerImpl.notifyTopComponentOpened(WindowManagerImpl.java:876)
    at org.netbeans.core.windows.Central.addModeOpenedTopComponent(Central.java:583)
    at org.netbeans.core.windows.ModeImpl.addOpenedTopComponent(ModeImpl.java:249)
    at org.netbeans.core.windows.WindowManagerImpl.topComponentOpen(WindowManagerImpl.java:972)
    at org.openide.windows.TopComponent.open(TopComponent.java:279)
    at org.openide.windows.TopComponent.open(TopComponent.java:271)
    at org.openide.windows.CloneableOpenSupport.openCloneableTopComponent(CloneableOpenSupport.java:164)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport.access$000(JsfJavaEditorSupport.java:85)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport$2.run(JsfJavaEditorSupport.java:139)
    at org.openide.util.Mutex.doEvent(Mutex.java:1024)
    at org.openide.util.Mutex.writeAccess(Mutex.java:330)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport.open(JsfJavaEditorSupport.java:137)
    at org.netbeans.modules.project.ui.ProjectUtilities.openProjectFiles(ProjectUtilities.java:424)
    at org.netbeans.modules.project.ui.OpenProjectList.open(OpenProjectList.java:170)
    at org.netbeans.modules.project.ui.OpenProjectsTrampolineImpl.openAPI(OpenProjectsTrampolineImpl.java:43)
    at org.netbeans.api.project.ui.OpenProjects.open(OpenProjects.java:92)
    at com.sun.rave.welcome.WelcomePanel2.openRecentProject(WelcomePanel2.java:192)
    at com.sun.rave.welcome.WelcomePanel2.access$800(WelcomePanel2.java:122)
    at com.sun.rave.welcome.WelcomePanel2$10.mouseClicked(WelcomePanel2.java:782)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:212)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:211)
    at java.awt.Component.processMouseEvent(Component.java:5491)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3901)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    ==>
    java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
    at com.sun.rave.insync.ModelSet.getInstance(ModelSet.java:325)
    at com.sun.rave.insync.ModelSet.getInstance(ModelSet.java:307)
    at com.sun.rave.insync.Model.getInstance(Model.java:56)
    at com.sun.rave.insync.models.FacesModel.getInstance(FacesModel.java:146)
    at com.sun.rave.designer.WebForm.isWebFormDataObject(WebForm.java:152)
    at com.sun.rave.designer.DesignerServiceProvider.getMultiViewElementForDataObject(DesignerServiceProvider.java:912)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport$DesignerDesc.createElement(JsfJavaEditorSupport.java:498)
    at org.netbeans.core.multiview.MultiViewModel.getElementForDescription(MultiViewModel.java:185)
    at org.netbeans.core.multiview.MultiViewModel.getActiveElement(MultiViewModel.java:105)
    at org.netbeans.core.multiview.MultiViewModel.getActiveElement(MultiViewModel.java:101)
    at org.netbeans.core.multiview.MultiViewPeer.showCurrentElement(MultiViewPeer.java:213)
    at org.netbeans.core.multiview.MultiViewPeer.peerComponentOpened(MultiViewPeer.java:190)
    at org.netbeans.core.multiview.MultiViewCloneableTopComponent.componentOpened(MultiViewCloneableTopComponent.java:127)
    at org.openide.windows.WindowManager.componentOpenNotify(WindowManager.java:252)
    at org.netbeans.core.windows.WindowManagerImpl.notifyTopComponentOpened(WindowManagerImpl.java:876)
    at org.netbeans.core.windows.Central.addModeOpenedTopComponent(Central.java:583)
    at org.netbeans.core.windows.ModeImpl.addOpenedTopComponent(ModeImpl.java:249)
    at org.netbeans.core.windows.WindowManagerImpl.topComponentOpen(WindowManagerImpl.java:972)
    at org.openide.windows.TopComponent.open(TopComponent.java:279)
    at org.openide.windows.TopComponent.open(TopComponent.java:271)
    at org.openide.windows.CloneableOpenSupport.openCloneableTopComponent(CloneableOpenSupport.java:164)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport.access$000(JsfJavaEditorSupport.java:85)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport$2.run(JsfJavaEditorSupport.java:139)
    at org.openide.util.Mutex.doEvent(Mutex.java:1024)
    at org.openide.util.Mutex.writeAccess(Mutex.java:330)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport.open(JsfJavaEditorSupport.java:137)
    at org.netbeans.modules.project.ui.ProjectUtilities.openProjectFiles(ProjectUtilities.java:424)
    at org.netbeans.modules.project.ui.OpenProjectList.open(OpenProjectList.java:170)
    at org.netbeans.modules.project.ui.OpenProjectsTrampolineImpl.openAPI(OpenProjectsTrampolineImpl.java:43)
    at org.netbeans.api.project.ui.OpenProjects.open(OpenProjects.java:92)
    at com.sun.rave.welcome.WelcomePanel2.openRecentProject(WelcomePanel2.java:192)
    at com.sun.rave.welcome.WelcomePanel2.access$800(WelcomePanel2.java:122)
    at com.sun.rave.welcome.WelcomePanel2$10.mouseClicked(WelcomePanel2.java:782)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:212)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:211)
    at java.awt.Component.processMouseEvent(Component.java:5491)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3901)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
    at com.sun.rave.insync.ModelSet.getInstance(ModelSet.java:323)
    ... 53 more
    Caused by: java.lang.NoClassDefFoundError: com/sun/data/provider/impl/ObjectListDataProvider
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at com.sun.rave.insync.java.LocalJarsOverrideClassLoader.urlClassLoaderLoadClass(LocalJarsOverrideClassLoader.java:99)
    at com.sun.rave.insync.java.InSyncSpecializedLocalJarsOverrideClassLoader.loadClass(InSyncSpecializedLocalJarsOverrideClassLoader.java:27)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at org.netbeans.ProxyClassLoader.loadInOrder(ProxyClassLoader.java:564)
    at org.netbeans.ProxyClassLoader.smartLoadClass(ProxyClassLoader.java:516)
    at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:150)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:242)
    at com.sun.rave.insync.java.ClassUtil.getClass(ClassUtil.java:54)
    at com.sun.rave.insync.beans.BeansUnit.getBeanClass(BeansUnit.java:904)
    at com.sun.rave.insync.beans.BeansUnit.getBeanInfo(BeansUnit.java:935)
    at com.sun.rave.insync.beans.BeansUnit.bindBean(BeansUnit.java:502)
    at com.sun.rave.insync.beans.BeansUnit.bindBeans(BeansUnit.java:442)
    at com.sun.rave.insync.beans.BeansUnit.bind(BeansUnit.java:237)
    at com.sun.rave.insync.beans.BeansUnit.sync(BeansUnit.java:183)
    at com.sun.rave.insync.live.LiveUnitWrapper.sync(LiveUnitWrapper.java:113)
    at com.sun.rave.insync.models.FacesModel.syncImpl(FacesModel.java:936)
    at com.sun.rave.insync.Model.sync(Model.java:207)
    at com.sun.rave.insync.ModelSet.syncAll(ModelSet.java:646)
    at com.sun.rave.insync.models.FacesModelSet.syncAll(FacesModelSet.java:1258)
    at com.sun.rave.insync.models.FacesModelSet.<init>(FacesModelSet.java:325)
    [catch] ... 58 more
    *********** Exception occurred ************ at 5:11 AM on Sep 20, 2006
    java.lang.NoClassDefFoundError: com/sun/data/provider/impl/ObjectListDataProvider
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at com.sun.rave.insync.java.LocalJarsOverrideClassLoader.urlClassLoaderLoadClass(LocalJarsOverrideClassLoader.java:99)
    at com.sun.rave.insync.java.InSyncSpecializedLocalJarsOverrideClassLoader.loadClass(InSyncSpecializedLocalJarsOverrideClassLoader.java:27)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at org.netbeans.ProxyClassLoader.loadInOrder(ProxyClassLoader.java:564)
    at org.netbeans.ProxyClassLoader.smartLoadClass(ProxyClassLoader.java:516)
    at org.netbeans.ProxyClassLoader.loadClass(ProxyClassLoader.java:150)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:242)
    at com.sun.rave.insync.java.ClassUtil.getClass(ClassUtil.java:54)
    at com.sun.rave.insync.beans.BeansUnit.getBeanClass(BeansUnit.java:904)
    at com.sun.rave.insync.beans.BeansUnit.getBeanInfo(BeansUnit.java:935)
    at com.sun.rave.insync.beans.BeansUnit.bindBean(BeansUnit.java:502)
    at com.sun.rave.insync.beans.BeansUnit.bindBeans(BeansUnit.java:442)
    at com.sun.rave.insync.beans.BeansUnit.bind(BeansUnit.java:237)
    at com.sun.rave.insync.faces.FacesPageUnit.bind(FacesPageUnit.java:376)
    at com.sun.rave.insync.beans.BeansUnit.sync(BeansUnit.java:183)
    at com.sun.rave.insync.live.LiveUnitWrapper.sync(LiveUnitWrapper.java:113)
    at com.sun.rave.insync.models.FacesModel.syncImpl(FacesModel.java:936)
    at com.sun.rave.insync.Model.sync(Model.java:207)
    at com.sun.rave.insync.Model.sync(Model.java:173)
    at com.sun.rave.designer.DesignerTopComp.sync(DesignerTopComp.java:705)
    at com.sun.rave.designer.DesignerTopComp.createDesignerPane(DesignerTopComp.java:749)
    at com.sun.rave.designer.DesignerTopComp.componentOpened(DesignerTopComp.java:151)
    at com.sun.rave.designer.DesignerTopComp.componentShowing(DesignerTopComp.java:779)
    at org.netbeans.core.multiview.MultiViewPeer.peerComponentShowing(MultiViewPeer.java:162)
    at org.netbeans.core.multiview.MultiViewCloneableTopComponent.componentShowing(MultiViewCloneableTopComponent.java:107)
    at org.openide.windows.WindowManager.componentShowing(WindowManager.java:287)
    at org.netbeans.core.windows.WindowManagerImpl.componentShowing(WindowManagerImpl.java:924)
    at org.netbeans.core.windows.view.DefaultView.changeGUI(DefaultView.java:132)
    at org.netbeans.core.windows.ViewRequestor.dispatchRequest(ViewRequestor.java:238)
    at org.netbeans.core.windows.ViewRequestor.processRequest(ViewRequestor.java:214)
    at org.netbeans.core.windows.ViewRequestor.postRequest(ViewRequestor.java:152)
    at org.netbeans.core.windows.ViewRequestor.scheduleRequest(ViewRequestor.java:91)
    at org.netbeans.core.windows.Central.activateModeTopComponent(Central.java:1396)
    at org.netbeans.core.windows.WindowManagerImpl.topComponentRequestActive(WindowManagerImpl.java:994)
    at org.openide.windows.TopComponent.requestActive(TopComponent.java:553)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport$2.run(JsfJavaEditorSupport.java:140)
    at org.openide.util.Mutex.doEvent(Mutex.java:1024)
    at org.openide.util.Mutex.writeAccess(Mutex.java:330)
    at com.sun.rave.project.jsfloader.JsfJavaEditorSupport.open(JsfJavaEditorSupport.java:137)
    at org.netbeans.modules.project.ui.ProjectUtilities.openProjectFiles(ProjectUtilities.java:424)
    at org.netbeans.modules.project.ui.OpenProjectList.open(OpenProjectList.java:170)
    at org.netbeans.modules.project.ui.OpenProjectsTrampolineImpl.openAPI(OpenProjectsTrampolineImpl.java:43)
    at org.netbeans.api.project.ui.OpenProjects.open(OpenProjects.java:92)
    at com.sun.rave.welcome.WelcomePanel2.openRecentProject(WelcomePanel2.java:192)
    at com.sun.rave.welcome.WelcomePanel2.access$800(WelcomePanel2.java:122)
    at com.sun.rave.welcome.WelcomePanel2$10.mouseClicked(WelcomePanel2.java:782)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:212)
    at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:211)
    at java.awt.Component.processMouseEvent(Component.java:5491)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
    at java.awt.Component.processEvent(Component.java:5253)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3901)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Window.dispatchEventImpl(Window.java:1774)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    [catch] at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

  • Possible work-around for AirTunes/802.11n co-existance

    I wanted to share this because it may be useful for anyone wanting to run 802.11n and still maintain 802.11 b/g capability and use AirTunes. After purchasing an Apple AirPort Extreme (AAE) I went looking for an 802.11n AirTunes component. Apple don't make AirTunes as 802.11n compatible (yet!).
    Here's a work-around that works; connect your AirTunes to your AAE with an Ethernet cable. Your AirTunes box will still advertise it's speakers as it did for your 802.11 b/g network but now your streamed-music will go, via your 802.11n connection, to your AAE and then via wired-ethernet to your AirTunes.
    This arrangement is proving so successful I've moved my iTunes music library to an AirDisk and my 802.11n network is easily handling iTune's data-traffic. An added bonus is that my AirTunes box is still running a, separate, 802.11 b/g network so I have backward compatability for non-802.11n equipment in our home.
    Observation
    While experimenting with this work-around I ran a protocol analyser (WireShark) on my iTunes/AirTunes streamed-music data and noticed it uses IPv6! Apple's implemented next-generation IP for iTunes
    iMac Core Duo2   Mac OS X (10.4.9)   AirPort Extreme + AirTunes

    After posting my 'how-to' I realized the forum considers it a question. As my post is a 'how-to' I'll mark it as answered.

  • I have an Iad2 and ever since ios6-there are issues.I get occasional lock-ups and have to reboot. The WSJ app freezes when running their videos to the end. The only work-around is to stop the video before it's over. Worse than windows me !!!!!

    My Ipad2 worked perfectly before ios6 upgrade. It now freezes occasionally and I have to reboot to get it to work. Also the WSJ app will now freeze if I try and run one of their videos that is imbedded in the article. My only work-around is to stop (press done) before the end of the video or I have to do a total reboot. The problems remind me of Windows ME . Will Apple resolve these issues or become more like Microsoft. Hopefully there will be a restore button in the future like Microsoft was forced to do because a lot of upgrades are just terrible. Am I crazy or are there other people having the same issues with ios6, or could this just be a coincidence and my ipad2 is starting to fail just when ios6 arrives ?

    I know this will not help but, the bluetooth headset I purchased for my wife works great and it pairs with our car and our sound bar in the livingroom (Motorola Droid Razr) 98.72.16.XT912.Verizon.en.US
    However I did not upgrade over the air but from a android web site and placed it on my external sd card. I believe this made the difference in why we had no issues and upgraded functionality has been great.
    Please note when I mention these bluetooth devices I mean the Razr connects with no problems.
    It also had no internet issues and none of the problems others have complained about in other threads.
    unfortunately when you say thousands have these issues I cannot say that is accurate. The hope is when large numbers of owners have updated to the Jelly Bean and are complaining inmase then Motorola will issue a patch to verizon to get out to the affected users.
    Of course now that Google owns Motorola Mobility and has laid off loads of workers it may never issue an os patch.

  • Does anyone know of a work around for this problem? : iphone 5 will not work on Chryslers uconnect.  I found out that they are working on it but have no ETA.   However, they will not help you if your vehicle is older thatn 2008.

    Do not get an iphone 5 if you want to use it with a Chrysler product.  The Chrysler Uconnect system might pair with your phone but the uconnect system will usually abend and become unusable after a few telephone conversations.  I have been to the dealer twice.  They have reset the uconnect system twice and I find it works for about 2 to 3 phone calls then it abends and uconnect becomes useless.  They had me call Chrysler at 1-800-247-9753.  I was told that the iphone five is not compatable at this time with any chrysler uconnect phone through the dash system, even the new vehicles.  He had me get on this web site: www.uconnectphone.com as a place to monitor as when it would be compatable.  They told me that Samsung seems to be working harder to make it compatible than apple is and they had no idea when it would begin to work.  In effect Chrysler was telling me dump the iphone and get a Samsung if you want it to work in a Chrysler.  Also, the site would only give you information for Chrysler that were 2008 or newer, they gave the following number to call if your vehicle was older.    I called that number and they told me that Chrysler and Uconnect had no plans at all to make the iphone 5 work, in the future, on any Chrysler older than 2008.  So.......If you have a Chrysler or Dodge that is older than 2008 you will NEVER  be able to use an iphone5 on the uconnect through the dash system.   Do not buy an iphone if you have an older vehicle.  It will never be supported for the $1,000 you paid for this uconnect system on your car.  My car is a 2005 Town and Country.  I asked both Chrysler and uconnect if their was some sort of work around so I could use my phone.  They both told me their was not and that they had no plans to resolve this situation for my vehicle.  This means that I need to either get rid of my $42,000 vehicle with low milage or get rid of my Iphone 5.  Niether are really good options. 
    I was also givne the following places to send formal complaints, even though I was told that neither Chrysler, Dodge or Apple were going to do anything to correct my problem: 
    for email:   [email protected]   or Mail:  Chrysler customer Assistance  P.O. Box 218004, Auburn Hills, Michigan  48321
    If anyone hears of a work around to be able to use an Iphone 5 in a Chrysler or Dodge product, please let me know. 

    This response is a little late as I just read about your problem. I have a 2012 Dodge Charger and a 2012 Chrysler Town and Country and both worked flawlessly with the iPhone 5s my wife and I had. However, we just upgraded to the iPhone 6 and Uconnect will receive calls but you cannot answer them. You can callout successfully, however. the annoyance being the inability to answer incoming calls in the HandsFree mode.

  • Security settings changing. Is there a work around?

    Hello,
    I work for a "Company" that has ten's of thousands computers loaded with the latest version of Adobe Reader X. Unfortunately when we create a form in Adobe  Acrobat 9 Pro it cannot be signed by anyone using Adobe Reader X. Some how the security settings are changing when the form is open in Reader X. When the form is opened using Acrobat 9 Standard the form can be signed...the security settings have remain the same as when we built it in Pro. Is there a work around or something I have missed? This is a rather urgent issue as it will be effecting our whole "Company" and in the meantime we have been told to use another product until a solution is found. Your input is greatly appreciated!

    The usage rights must be enabled in Acrobat Pro.

  • Is there a work around for my Akai Pro EIE Pro interface to work with mountain lion

    Does anyone have a work around for the Akai EIE Pro Audio interface that just stopped working after the mountain lion upgrade. Akai has no response currently.

    Yep,
    They say they're working on it.
    It ***** though
    effo

  • Is there a work around to use two Apple IDs across and iPhone and a MB Pro?

    iPhone 5 and Macbook Pro Retina late 2013.  iOS 8.1 and Yosemite. 
    It's a company iPhone and a personal MBP.  Phone has an Apple ID associated with company credit card and MBP personal Apple ID with personal credit card.
    There is a cross platform issue as you cannot use two Apple IDs in Facetime and Messages.  Therefore my iPhone and MBP do not interoperate correctly, for example, a text message in messages on the iPhone will not appear in Messages on the MBP.  Similar situation for FaceTime.  When you try to enter the second email associated with the second Apple ID on either platform you get "cannot verify because email is already in use".
    Any work arounds?
    This is something Apple should have really anticipated as iPhones become more widespread in corporate use.

    Thank you for your continued interest and research on my behalf on this situation. I was on the phone with Apple support (at no charge) for over an hour yesterday. Becasue I have what they cal a "vintage computer"(7 1/2 years old), there are some additional issues.  We thought it was solved at teh end of the phone call but aparently it was not. I am going to call them now and see what else can be done. I will keep you posted.
    Thanks again.

  • Is there a work around to connect an archos 80 g9 to a-digital editions?

    My tablet is not listed in the supported devices list for adobe digital editions - but I am hoping there is some work-around/app that will enable me to read content vial ADE from our local library.
    Works fine with a different tablet that my wife has - but the ADE software somehow does not "see" the archos 80 g9 even though the PC has correctly identified it and loaded drivers etc.
    Gratefull for any tips...?

    My tablet is not listed in the supported devices list for adobe digital editions - but I am hoping there is some work-around/app that will enable me to read content vial ADE from our local library.
    Works fine with a different tablet that my wife has - but the ADE software somehow does not "see" the archos 80 g9 even though the PC has correctly identified it and loaded drivers etc.
    Gratefull for any tips...?

  • Insane XML Import, Huge Project, Duplicate file names work around...

    I planned on kicking off my journey attempting to edit a massive multi year documentary on FCPX with a nice introduction of the blog I'm going to keep about the experience, but I've run into a bit of a roadblock, or maybe major speed bump at least before even getting to that point. I wanted to share what is working as a work around for me and you guys can tell me how I'm doing it wrong.
    Ok, I will try to explain this as succinctly as possible. I'll write in somewhat stream of consciousness just to try and get through it quicker... Basically, after discovering the work around below, I am now utterly confused on how FCPX handles the relationship between its own database of where media is stored, and the actual media itself. I have plenty experience on FCPX now, probably done 30-40 pro commercial jobs on it over the last year since XML became doable as I'm also a Resolve Colorist and all the FCPX projects where hardcore coloring product spots. For commercial work, I never needed to worry about splitting up footage up over multiple Events. Everything, all in one, FCPX handled it no problem. (well the occasional beach ball, but that seems to be a thing with FCPX in general)
    This will be my 10th feature documentary as an Editor. Every one before it was either on Avid's many flavors over the last 12 years or FCP Studio. When this new film came along, I made the decision a few months ago to use FCPX for a few reasons, but mostly because I'm insane and I like to try to mix it up for myself in a career that can get stale quick if you aren't willing to be that way. The film was shot over 2+ years, every shoot was multi cam 5D (yes i know, looks great, but please kill me), I haven't done the math on length, but there is over 10,000 clips of video (this is actually medium in size compared to what I've dealt with before). Its 5D, so theres external audio for everything. FCPX's syncing is great, but I've learned that theres an unsaid window of heads and tales clips must fall within to sync properly with the nearby clips, if they are too far apart FCPX gives up. One shoot day could have 3 cams, 50 clips each, and 2 audio files to sync to, FCPX simply cannot handle this, so off to Plural eyes they went, no problems.
    Ok, all this is relevant eventually I swear! Again, in the past, all in one event, no problem. I tried for fun to bring all media into one Event on this film. It worked, but there is a 10+ second spinning beach ball for every single move you make, so thats no good. Ok, I'll separate the Events out to, lets say, each shoot month. Well that's dumb, in verite documentary, any shot could be the first, any shot could be the last, you need a command over all searchable footage at all times. Shift selecting all events to search *****, and it actually takes longer for FCP to reload each event each time than it does to just have the one massive one. So no go there. Next hair brained idea... What if make a new Event that is just Compound Clips of all the other Event's contents and do more with Markers and Favorites in logging that I was planning to parse it all out. That way I'm working with and FCPX is dealing with 50-60 clips instead of 10,000+ Quick test, Cmd-A, Opt-G, boom, boom, boom, move all to dedicated to Event, hide huge Event, BEHOLD, that works! FCPX chokes a little bit on the insane length of some of the clips, but searching, and general performance is back on par!
    So your saying to yourself "Ok *********, sounds like you figured it out, what's the problem." Well to you I say, "Not so fast!" Remember, that was just a quick test using the media I had imported into the massive 10,000+ clip Event. To do this project proper, I am having to import Multicam sync'd XMLs from Plural Eyes. And this is where it all starts to fall apart. A little foreshadowing for your eager eyes. 10,000+ files all shot with multiple 5D's over the course of years. What does that mean? many, many duplicate file names!
    FCPX as well all know irritatingly imports XML's as new Events, not into existing ones. This obviously takes a lot of burden off media management because with a new Event comes a new database referencing its own version of the raw media. All well and good, and I'm betting its starting to click for some if you advanced users where I'm finally going with this. So I have 50 or so XMLs to bring in, all done no problem. Now I want to replicate that singular Event like I did with the Compound Clip test and have it all in one place to be my master as extensive logging begins for easy searching once editing begins. Highlight the Events, click Merge Events. NOPE. I get a new "Kill Yourself Now" error (a term I coined for Out of Memory and General Error messages in FCP Legacy meaning there ain't much you can do about it): "Two or more files have the same name. Change the names and try again, because I don't know what the **** to do with them." Ok I made up that last part but that's basically what it's saying. Just take the variable out of the equation, this happens with every which way you could try to get the clips together. Merge Events, dragging events on top of each other, dragging just the Multicam clip alone, nothing gets passed that message. What's worse is that while Batch Renaming seems like a solution, the renames do not populate inside the created clips and there is no way to Batch Rename those. Renaming everything at the finder level isn't so great because then I'd have to resync and theres an offline/online thing going here where the film has to be reconformed eventually.
    Basically, I've found that FCPX handles media management in completely different ways depending on whether you are importing into one Event yourself or doing essentially what is a new import with FCPX moving or merging Events. If you bring in all the media to one Event, on a macro level FCPX goes through file by file making aliases referencing the master file. If it hits a duplicate, it makes a parenthesis counter, and keeps going. And with the genius of FCPX metadata, that file name doesn't even matter, you can change it at the Finder level and FCPX will keep the link intact. BUT for some reason if you try to do this outside the realm of a single Event and combine files after the fact a different process takes over in creating this database system and can't handle the duplicates. I can't totally figure the reason other than it probably is scared to change the originally referenced alias to something else (which it shouldn't be scared of since Merge Events deletes the original anyway).
    This is where it gets INSANE and where I lose all understanding of what is going on, and believe me it was a delicate understanding to begin with. It comes in to play with the work around I figured out. I make the master Event with the 10,000+ clips. Then I import all the XMLs as dedicated Events. Now, I then drag the Multicam clips into the master Event, it WORKS! just takes it, no "Kill Yourself Now" error. Stranger still, now with the switched referenced Event, it even takes into account which aliased duplicate file name it's referencing in the Original Media folder. Somehow, it's taking into account the original file path and saying "Ok, I see 5 instances of MVI_5834.mov. Based on the original file path or maybe creation date or god knows what, it must be MVI_5834 (fcp3).mov." It connects perfectly. I can even remove the old XML imported Event with no problem. Crazier yet, I can now move those again to the dedicated Event I wanted originally that only contains those Multicam or Compound Clips.
    So instead of going straight from A to C, going from A to B to C works even though that actually seems way more complicated. Why can't FCPX handle Merge Events and dragging clips the same way it handles media imported into a single Event. And weirder still, why can't FCPX handle the (fcp1,2,3...) appending in the same scenario. But if the appended links are already there, No Problem. And for the love of god, it'd be nice to important XML's into existing Events and make the correct referencing happen right from the get go, which is really the source of all the above headache. I'd have no problem helping FCPX with a little manual pointing in the right direction just like any other NLE needs.
    Ok, having said all of that crap above, my question is, have I missed something completely simple I should have done instead? Now that I have everything in place how I originally envisioned, I think I will still play around a little bit more to make sure FCPX is really going to be able to handle this project. I'm at a stage right now where going another direction is still an option, although the dare devil in me wants to make this work. Media management aside, once you start editing on a FCPX timeline, its hard to go back to anything else. Apple is going to have to figure out some way not to access to everything at all times to work fluidly or big projects like this are never going to be practical in FCPX.
    Sorry for the long confusing post....

    I'm having the exact same problem, but I know nothing of ruby scripts. I've exhausted my resources with tech support, and after literally hours of work with them it seems I now am faced with either re-rating each individual song, or pointing iTunes to each song that it can't locate. Is yours a solution that could help me? How can I find out more about Ruby Scripts? Thanks for your help, hellolylo (or anyone else who might also be able to help...)
    Kenn

  • The App Store asks to "verify" my personal information, For my name, state, credit card, etc. I don't even live in the US and I don't have a CC, nor do I want to give away my personal information. I just want to download free apps. Any work-arounds?

    Title says it all.
    I'm really getting sick of websites getting more and more into your business. Google forcing you to get a G+ account and asking for your identifying information, for example (like your phone number).
    It's extremely irritating, and I'm opting out of everything that enforces the such. If Apple begins pushing like this, I will just close my relationship with the company and obtain apps by using third-party software to force them onto the phone.
    But before going that far, I'd like to find work arounds.
    First of all, I don't even know why it asks me for my "state". I don't even live in the USA anymore, as I moved to China (though I won't use the Chinese store as I don't speak or understand the local language, which is Chinese).
    All I want... is to continue using the English App Store to get free apps from here in my home in China, without getting stopped by Apple asking for more info on me. I don't want to share my name, I don't want to share my address, and I can't even complete the form as I no longer have a "state" and don't have any credit info.
    So that's just that. If there's no way around it I'll find another way to install apps without the App Store.
    Sorry for the message tone, I'm just really irritated with the way the internet is getting.
    Thanks in advance!
    - Alex

    The living issue is complex in my case. Legally speaking, I have no personal residence globally. I just live wherever my father goes, which is everywhere. I'm an expat and it seems that these sites aren't really expat-friendly. They seem to be built for localization and assume everyone stays in the same place.
    I don't know what I'd be considered. I'm a US passport holder and live in China, but I only speak some Chinese and I can't read it (it using non-latin characters is just too much for my mind's memory to handle). Besides that, I'm not interested in popular Chinese apps. They tend to just be annoying and kooky and generic and put together badly, often full adware and spyware (speaking for most Chinese software, in fact). In fact, a lot of apps I want are illegal in China (YouTube, Facebook, etc) and I use a VPN to use the services. I assume I wouldn't find these apps on the Chinese store. In fact, last I checked, there wasn't many English apps on the Chinese app store. This is probably due to their strict moderation or something.
    I've been going to international schools since I got here and college would be in English too. I can speak some Chinese, but not read it.
    Well, I guess the answer is that I can't use the App Store in English. So I guess I'll just sign out everything on my phone involving my Apple account and just start using third-party tools to do my business.

  • Work-around for Mavericks USB-sync crippleware?

    Has anyone found one? Does reinstalling 10.8 work?
    I grudgingly started using iCloud when I had no choice. It is not reliable. Constant problems syncing calendars, contacts, mail accounts, etc. And I am currently in New York City, with excellent mobile data coverage and frequent access to Wifi. But I spend large parts of my life in places with no Internet. And still do not understand why Apple apps on two pieces of Apple hardware should not be able to talk to each other with the USB cord that Apple provided with purchase.
    So is there a work-around? Ideally one that does not involve wasting any more time uninstalling and reinstalling operating systems?

    Yes it's back! ( and works! ) Thank you Apple!
    Thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you.
    Sometimes it's just the simple things...
    My world is put back....
    jeff
    ...now if we could just get double clicks on Folders in the Finder to open new windows.....
    <sigh>

Maybe you are looking for

  • Jar file in Web Dynpro Java Application!

    Hi All: I needed a Jar file in my WDJ App. I am using SP16. Can someone provide ideas/instructions on how to do this? Thanks in Advance!

  • Question about file conversion in the sender file adapter

    Hi, all. I am trying to get the file adapter to parse a file. The message type is the following: JOB    Msg  0..1       Transaction  0 ... unbounded          Data   0 ... 1             f1 string             f2 string How would you define the recordse

  • ZLM Agent Install Fails - NOTHING_PROVIDES_DEP:

    Hi, I am trying to install the zlm agent (ZLM 7.3 IR2) on a SLES 11 box. I have extracted the ZLM Server ISO image files, and put it on an NFS server. The client box then mounts the NFS share and I run the command ./zlm-install -a -i Sometimes the in

  • What is the parameter list and why does it keep on coming up?

    What is the parameter list and why does it keep on coming up when I try to finalize the video or share it?

  • What causes this

    Hi Just installed Leopard dont know if its the cause, but I get this http://www.everettpainting.biz/screen_shot.tiff in imovie06 and motion now when ever i import a movie or have to render an effect. The clips are from a small digital camera and impo