Could not be converted flash.display:Sprite

Cannot convert flash.display::Sprite@39394a9 to flash.display.MovieClip.

Some examples of code

var enemyArray:Array = new Array();

var mySprite:Sprite;
mySprite = new Sprite();
addChild (mySprite);

var myEnemy:Enemy;
myEnemy = new Enemy();

mySprite.addChild (myEnemy);
enemyArray.push (myEnemy);

removeEnemy(e:Enemy)
{
for (var i in enemyArray)
{
If (enemyArray [i] == e)
{
enemyArray.splice(1,i);
}
}
}
----------------------------------------
-------
the enemy class: If anemy is off the screen, it will attract the deleteEnemy
then it will remove the enemy soon after that that he will call the parent removeChild() to eliminate the enemy to the table

deleteEnemy()
{
MovieClip (parent) .removeEnemy (this);
parent.removeChild (this);
}

Then, it will get the error above,

I guess the problem is, class enemy cant access the removeEnemy() in the parent class

but when I remove the sprite like this:

addChild (myEnemy);

instead:

mySprite.addChild (myEnemy);

then it will be ok, but my goal is, how can enemy called the removeEnemy() in parent while it is inside the sprite

Here is the structure if no sprite:

main > examples > enemy

Sample - is the clip parent of enemy

-now enemy can call the removeEnemy() of the sample

with sprite:

main > examples > sprite > enemy

-now the enemy cannot call the removeEnemy() in the sample

My goal is, enemy can call the removeEnemy() of the sample while its inside a sprite

TNX for the help in advance...

you said, "How can enemy called the removeEnemy() to parent."  If that were true, the code that I proposed would have worked.

If removeEnemy() is not the parent of the enemy, where it is relatively to the enemy?  in your 2nd post, you said:

sample > sprite > enemy

which indicates that removeEnemy() is the enemy parent.parent:

MovieClip (parent.parent) .removeEnemy)

Tags: Adobe Animate

Similar Questions

  • Property not found on flash.display.Loader charger and there is no default value

    Hi, I want to drag a single image of set of images loaded via xml, but it is showing an error.

    ReferenceError: Error #1069: property not found on flash.display.Loader charger and there is no default value.

    "hand / mouseDownHandler ()" thanks in advance...

    XML

    /////////////////////////////////////

    <? XML version = "1.0" encoding = "utf-8" standalone = "yes"? >

    < GALLERY >

    < IMAGE THUMB = "photo_tb/pic1.jpg" / > "

    < IMAGE THUMB = "photo_tb/pic2.jpg" / > "

    < IMAGE THUMB = "photo_tb/pic3.jpg" / > "

    < IMAGE THUMB = "photo_tb/pic4.jpg" / > "

    < / GALLERY >

    /////////////////////////////////////////////

    package

    {

    import flash.display. *;

    import flash.events. *;

    flash.net import. *;

    import flash.display.Sprite;

    import flash.display.Loader;

    import flash.events.MouseEvent;

    main/public class extends MovieClip

    {

    private var levelXML:XML;

    private var myLoader:URLLoader;

    private var my_images:XMLList;

    private var my_total:Number;

    private var my_thumb_width:Number;

    private var container_mc:MovieClip;

    private var my_mc:MovieClip;

    public void main()

    {

    levelXML = new XML();

    var XML_URL:String = "data / data.xml."

    var myXMLURL:URLRequest = new URLRequest (XML_URL);

    myLoader = new URLLoader (myXMLURL);

    myLoader.addEventListener (Event.COMPLETE, lanceApp);

    }

    private void startApp(e:Event):void

    {

    var myXML:XML = new XML (e.target.data);

    my_images = myXML.IMAGE;

    my_total = my_images.length ();

    createContainer();

    callThumbs()

    for each {(var niveau: XML dans levelXML.level)}

    trace (Level.leveltitle);

    trace (Level.identifyme);

    //}

    }

    private function createContainer (): void

    {

    container_mc = new MovieClip();

    container_mc.x = 50;

    container_mc.y = 50;

    my_mc.x = 100

    my_mc.y = 100

    addChild (container_mc);

    }

    private function callThumbs (): void

    {

    trace (my_total)

    for (var i: Number = 0; i < my_total; i ++)

    {

    'loader_' + i

    my_thumb_width = 100

    var thumb_url = my_images[i].@THUMB;

    var thumb_loader = new Loader();

    thumb_loader. Load (new URLRequest (thumb_url));

    thumb_loader.contentLoaderInfo.addEventListener (Event.COMPLETE, thumbLoaded);

    thumb_loader. Name = i;

    thumb_loader.x = (my_thumb_width * I);

    }

    }

    private void thumbLoaded(e:Event):void

    {

    var my_thumb:Loader = Loader (e.target.loader);

    container_mc. AddChild (my_thumb);

    my_thumb.contentLoaderInfo.removeEventListener (Event.COMPLETE, thumbLoaded);

    Sprite: var loader = Loader (e.target);

    var my_thumb:Loader = Loader (e.target);

    trace (my_thumb)

    my_thumb.addEventListener (MouseEvent.MOUSE_DOWN, mouseDownHandler);

    my_thumb.addEventListener (MouseEvent.MOUSE_UP, mouseUpHandler);

    }

    private void mouseDownHandler(e:MouseEvent):void {}

    var my_thumb:Loader = Loader (e.target.loader);

    container_mc. AddChild (my_thumb);

    e.target.startDrag ();

    }

    private void mouseUpHandler(e:MouseEvent):void {}

    trace ("mouseUpHandler");

    var sprite: Sprite = Sprite (event.target);

    sprite.removeEventListener (MouseEvent.MOUSE_MOVE, OnMouseMoveHandler);

    sprite.stopDrag ();

    }

    private void mouseMoveHandler(event:MouseEvent):void {}

    trace ("mouseMoveHandler");

    event.updateAfterEvent ();

    }

    }

    }

    In your function mouseDownHandler target you 'e.target.loader', however, e.target is a Loader and Chargers have no property loader.

    private void mouseDownHandler(e:MouseEvent):void {}

    var my_thumb:Loader = Loader (e.target.loader);

    Try just "e.target" instead since this should be your code is looking for.

    var my_thumb:Loader = Loader (e.target);

    Although you might find you need to use "e.currentTarget" instead since e.target can point to the content of the loader instead of the charger itself

  • TypeError: Error #1034: Type coercion failed: cannot convert flash.display::MovieClip@64e6ca1 in fla

    Hi all

    I get this window pop-out error when I pressed a button. The earpiece button contains the following code:

    btn_start.addEventListener(MouseEvent.CLICK, gotoStart);
    function gotoStart(e:MouseEvent):void{ 
         btn_start.removeEventListener(MouseEvent.CLICK, gotoStart);
         gotoAndStop("START");
    }
    

    TypeError: Error #1034: Type ISP led constraint: cannot convert flash.display::MovieClip@64e6ca1 to flash.display.SimpleButton

    at flash.display::MovieClip/gotoAndStop()

    to attendanceCheck / gotoStart () [attendanceCheck::frame2:31]

    After searching the cause for a while, I can't find what's wrong with it...

    Help me please...

    Thank you

    Zainuu

    As I said, there is nothing wrong with this code.  So, since the error indicates that you treat a MovieClip, as if it were a SimpleButton control, somewhere in your design you have done something to try to force this MovieClip to be a button (or possibly vice versa if it's actually a button).  Check the properties panel and elsewhere to see if you have something that could be tempting to be that touches another object type than it is selected.

    Try to create a new movieclip and assign it to that name (detached from each other) and see if you still receive the error.  If it works, then I recommend just create a new movieclip and replace the current where the problem arose.

  • ReferenceError: Error #1069: property not found on flash.display.Stage length

    Hi all

    I have 3 input textfield. Each textfield has a string pre-loaded in it. When the user presses Tab, the focus must be cycled around textfield 1-3. Now, I'm trying to set the index of the caret to the last letter of the TextField. What is the problem with the code?

    Code:

    public function myTabKeyDown(event:KeyboardEvent):void
              {
                 if (event.keyCode == Keyboard.TAB)
                 {
                        //set caret selection
                        event.currentTarget.setSelection(event.currentTarget.length, event.currentTarget.length);
                 }
              }
    

    Error:

    ReferenceError: Error #1069: the property not found on flash.display.Stage length and there is no default value.

    Thank you

    Zainuu

    If your textfields are named (you went for each text field properties and gave it a unique name) you can use the Manager of Focus see IFF it has focus to set the selection to the end.

    http://help.Adobe.com/en_US/FlashPlatform/reference/ActionScript/3/FL/managers/FocusManage r.html? filter_flash = cs5 & filter_flashplayer = 10.2 & filter_air = 2.6

  • ReferenceError: Error #1069: m_viewerController property not found on flash.display.AVM1Movie and there is no default value.      at intro_fla::MainTimeline/_onEnterFrame()

    (1) what is flash.display.AVM1Movie? I'm using as3

    (2) what is m_viewerController?

    (3) _onEnterFrame is usually a function name that by default it needs?

    function onMclLoaded(event:Event):void

    {

    This.MCL.Visible = false;

    this.addEventListener (Event.ENTER_FRAME, _onEnterFrame);

    }

    Maybe it's part of a component any which is used in the file that you upload.  Code is associated with this object is unable to find it.

  • Could not initialize a flash form.  The mxml.cfswf file is displaying a 404 error.

    I'm running ColdFusion 11 IIS 8.5 and try to view a simple flex form.  It generates the infrastruction of the form in the browser.  However, when he attempts to access the < number >. MXML.cfswf file I see a 404 error in the IIS log.

    Any help with this problem would be appreciated.

    I have solved my problem.  The servlet was not enabled in the web.xml file.  Once, I turned on the servlet and restarted the ColdFusion page initalized process server service.

  • Could not start the Flash Builder 4.5

    I can't begin to Flash Builder. To the right of the start screen, I get an error saying to look in the log file, but I don't see where the problem is in the log file. Could someone help me. I'll post the error log file.

    ! SESSION 2011-06-30 09:03:22.543-

    eclipse.buildId = I20100608-0911

    Java.version = 1.6.0_16

    Java.Vendor Sun Microsystems Inc. =.

    BootLoader constants: OS = win32, ARCH = x 86, WS = win32, NL = en_US

    Command line arguments:-OS win32 - ws win32-arch x 86

    ! ENTRY org.eclipse.osgi 4 0 09:03:28.440 2011-06-30

    ! An unexpected ERROR has occurred.

    ! BATTERY 0

    org.eclipse.swt.SWTError: no more handles

    to org.eclipse.swt.SWT.error(SWT.java:4109)

    to org.eclipse.swt.SWT.error(SWT.java:3998)

    to org.eclipse.swt.SWT.error(SWT.java:3969)

    to org.eclipse.swt.widgets.Widget.error(Widget.java:468)

    to org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

    to org.eclipse.swt.widgets.TaskBar. < init > (TaskBar.java:92)

    to org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.getTaskItem (Workbench. java: 300)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.worked (Workbench.java: 265)

    to org.eclipse.ui.internal.Workbench$ StartupProgressBundleListener.bundleChanged (Workbench.j ava: 417)

    to org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent (BundleContextImp l.java:919)

    to org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

    to org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous (ListenerQueue. java: 149)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged (.java:1349 context)

    to org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent (Framework.java:1300)

    to org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

    to org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

    to org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

    to org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

    to org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass (EclipseLa zyStarter.java:106)

    to org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass (ClasspathManager.java:453)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass (DefaultClassLoade r.java:216)

    to org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

    to org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass (SingleSourcePackage.java:3 3)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass (DefaultClassLoader.jav, a: 107)

    at java.lang.ClassLoader.loadClass (unknown Source)

    at java.lang.ClassLoader.loadClassInternal (unknown Source)

    to com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

    to org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

    to org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

    to org.eclipse.ui.internal.WorkbenchWindow. < init > (WorkbenchWindow.java:408)

    to org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow (Workben ch3xImplementation.java:31)

    to org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

    to org.eclipse.ui.internal.Workbench.access$ 14 (Workbench.java:1879)

    to org.eclipse.ui.internal.Workbench$ 21.runWithException(Workbench.java:1199)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

    to org.eclipse.ui.internal.Workbench$ 31.runWithException(Workbench.java:1567)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

    to org.eclipse.ui.internal.Workbench.access$ 4 (Workbench.java:2438)

    to org.eclipse.ui.internal.Workbench$ 7.run(Workbench.java:671)

    to org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

    to org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

    to org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

    to com.adobe.flexbuilder.standalone.FlashBuilderApplication.start (FlashBuilderApplication.ja goes: 108)

    to org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication (EclipseAppLau ncher.java:110)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start (EclipseAppLauncher.jav one: 79)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    to org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

    to org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

    to org.eclipse.equinox.launcher.Main.run(Main.java:1407)

    ! ENTRY org.eclipse.ui.workbench 4 0 09:03:28.442 2011-06-30

    ! Message

    ! BATTERY 0

    org.eclipse.swt.SWTError: no more handles

    to org.eclipse.swt.SWT.error(SWT.java:4109)

    to org.eclipse.swt.SWT.error(SWT.java:3998)

    to org.eclipse.swt.SWT.error(SWT.java:3969)

    to org.eclipse.swt.widgets.Widget.error(Widget.java:468)

    to org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

    to org.eclipse.swt.widgets.TaskBar. < init > (TaskBar.java:92)

    to org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.getTaskItem (Workbench. java: 300)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.worked (Workbench.java: 265)

    to org.eclipse.ui.internal.Workbench$ StartupProgressBundleListener.bundleChanged (Workbench.j ava: 417)

    to org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent (BundleContextImp l.java:919)

    to org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

    to org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous (ListenerQueue. java: 149)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged (.java:1349 context)

    to org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent (Framework.java:1300)

    to org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

    to org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

    to org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

    to org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

    to org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass (EclipseLa zyStarter.java:106)

    to org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass (ClasspathManager.java:453)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass (DefaultClassLoade r.java:216)

    to org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

    to org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass (SingleSourcePackage.java:3 3)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass (DefaultClassLoader.jav, a: 107)

    at java.lang.ClassLoader.loadClass (unknown Source)

    at java.lang.ClassLoader.loadClassInternal (unknown Source)

    to com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

    to org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

    to org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

    to org.eclipse.ui.internal.WorkbenchWindow. < init > (WorkbenchWindow.java:408)

    to org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow (Workben ch3xImplementation.java:31)

    to org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

    to org.eclipse.ui.internal.Workbench.access$ 14 (Workbench.java:1879)

    to org.eclipse.ui.internal.Workbench$ 21.runWithException(Workbench.java:1199)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

    to org.eclipse.ui.internal.Workbench$ 31.runWithException(Workbench.java:1567)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

    to org.eclipse.ui.internal.Workbench.access$ 4 (Workbench.java:2438)

    to org.eclipse.ui.internal.Workbench$ 7.run(Workbench.java:671)

    to org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

    to org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

    to org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

    to com.adobe.flexbuilder.standalone.FlashBuilderApplication.start (FlashBuilderApplication.ja goes: 108)

    to org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication (EclipseAppLau ncher.java:110)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start (EclipseAppLauncher.jav one: 79)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    to org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

    to org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

    to org.eclipse.equinox.launcher.Main.run(Main.java:1407)

    ! ENTRY org.eclipse.osgi 4 0 09:03:28.447 2011-06-30

    ! An unexpected ERROR has occurred.

    ! BATTERY 0

    org.eclipse.swt.SWTError: no more handles

    to org.eclipse.swt.SWT.error(SWT.java:4109)

    to org.eclipse.swt.SWT.error(SWT.java:3998)

    to org.eclipse.swt.SWT.error(SWT.java:3969)

    to org.eclipse.swt.widgets.Widget.error(Widget.java:468)

    to org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

    to org.eclipse.swt.widgets.TaskBar. < init > (TaskBar.java:92)

    to org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.getTaskItem (Workbench. java: 300)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.worked (Workbench.java: 265)

    to org.eclipse.ui.internal.Workbench$ StartupProgressBundleListener.bundleChanged (Workbench.j ava: 417)

    to org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent (BundleContextImp l.java:919)

    to org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

    to org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous (ListenerQueue. java: 149)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged (.java:1349 context)

    to org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent (Framework.java:1300)

    to org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

    to org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

    to org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

    to org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

    to org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass (EclipseLa zyStarter.java:106)

    to org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass (ClasspathManager.java:453)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass (DefaultClassLoade r.java:216)

    to org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

    to org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass (SingleSourcePackage.java:3 3)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass (DefaultClassLoader.jav, a: 107)

    at java.lang.ClassLoader.loadClass (unknown Source)

    at java.lang.ClassLoader.loadClassInternal (unknown Source)

    to com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

    to org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

    to org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

    to org.eclipse.ui.internal.WorkbenchWindow. < init > (WorkbenchWindow.java:408)

    to org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow (Workben ch3xImplementation.java:31)

    to org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

    to org.eclipse.ui.internal.Workbench.access$ 14 (Workbench.java:1879)

    to org.eclipse.ui.internal.Workbench$ 21.runWithException(Workbench.java:1199)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

    to org.eclipse.ui.internal.Workbench$ 31.runWithException(Workbench.java:1567)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

    to org.eclipse.ui.internal.Workbench.access$ 4 (Workbench.java:2438)

    to org.eclipse.ui.internal.Workbench$ 7.run(Workbench.java:671)

    to org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

    to org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

    to org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

    to com.adobe.flexbuilder.standalone.FlashBuilderApplication.start (FlashBuilderApplication.ja goes: 108)

    to org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication (EclipseAppLau ncher.java:110)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start (EclipseAppLauncher.jav one: 79)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    to org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

    to org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

    to org.eclipse.equinox.launcher.Main.run(Main.java:1407)

    ! ENTRY org.eclipse.ui.workbench 4 0 09:03:28.449 2011-06-30

    ! Message

    ! BATTERY 0

    org.eclipse.swt.SWTError: no more handles

    to org.eclipse.swt.SWT.error(SWT.java:4109)

    to org.eclipse.swt.SWT.error(SWT.java:3998)

    to org.eclipse.swt.SWT.error(SWT.java:3969)

    to org.eclipse.swt.widgets.Widget.error(Widget.java:468)

    to org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

    to org.eclipse.swt.widgets.TaskBar. < init > (TaskBar.java:92)

    to org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.getTaskItem (Workbench. java: 300)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.handleTaskBarProgressU pdated(Workbench.java:316)

    to org.eclipse.ui.internal.Workbench$ TaskBarDelegatingProgressMontior.worked (Workbench.java: 265)

    to org.eclipse.ui.internal.Workbench$ StartupProgressBundleListener.bundleChanged (Workbench.j ava: 417)

    to org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent (BundleContextImp l.java:919)

    to org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227)

    to org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous (ListenerQueue. java: 149)

    at org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged (.java:1349 context)

    to org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent (Framework.java:1300)

    to org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:380)

    to org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:284)

    to org.eclipse.osgi.framework.util.SecureAction.start(SecureAction.java:417)

    to org.eclipse.osgi.internal.loader.BundleLoader.setLazyTrigger(BundleLoader.java:265)

    to org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter.postFindLocalClass (EclipseLa zyStarter.java:106)

    to org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass (ClasspathManager.java:453)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass (DefaultClassLoade r.java:216)

    to org.eclipse.osgi.internal.loader.BundleLoader.findLocalClass(BundleLoader.java:393)

    to org.eclipse.osgi.internal.loader.SingleSourcePackage.loadClass (SingleSourcePackage.java:3 3)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:466)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:422)

    to org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:410)

    to org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass (DefaultClassLoader.jav, a: 107)

    at java.lang.ClassLoader.loadClass (unknown Source)

    at java.lang.ClassLoader.loadClassInternal (unknown Source)

    to com.adobe.flexbuilder.standalone.FlashBuilderWorkbenchAdvisor.createWorkbenchWindowAdviso r(FlashBuilderWorkbenchAdvisor.java:56)

    to org.eclipse.ui.internal.WorkbenchWindow.getWindowAdvisor(WorkbenchWindow.java:3483)

    to org.eclipse.ui.internal.WorkbenchWindow.fireWindowOpening(WorkbenchWindow.java:1295)

    to org.eclipse.ui.internal.WorkbenchWindow. < init > (WorkbenchWindow.java:408)

    to org.eclipse.ui.internal.tweaklets.Workbench3xImplementation.createWorkbenchWindow (Workben ch3xImplementation.java:31)

    to org.eclipse.ui.internal.Workbench.newWorkbenchWindow(Workbench.java:1881)

    to org.eclipse.ui.internal.Workbench.access$ 14 (Workbench.java:1879)

    to org.eclipse.ui.internal.Workbench$ 21.runWithException(Workbench.java:1199)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

    to org.eclipse.ui.internal.Workbench$ 31.runWithException(Workbench.java:1567)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

    to org.eclipse.ui.internal.Workbench.access$ 4 (Workbench.java:2438)

    to org.eclipse.ui.internal.Workbench$ 7.run(Workbench.java:671)

    to org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

    to org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

    to org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

    to com.adobe.flexbuilder.standalone.FlashBuilderApplication.start (FlashBuilderApplication.ja goes: 108)

    to org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication (EclipseAppLau ncher.java:110)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start (EclipseAppLauncher.jav one: 79)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    to org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

    to org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

    to org.eclipse.equinox.launcher.Main.run(Main.java:1407)

    ! ENTRY org.eclipse.osgi 4 0 09:03:28.896 2011-06-30

    ! Application error MESSAGE

    ! BATTERY 1

    org.eclipse.swt.SWTError: no more handles

    to org.eclipse.swt.SWT.error(SWT.java:4109)

    to org.eclipse.swt.SWT.error(SWT.java:3998)

    to org.eclipse.swt.SWT.error(SWT.java:3969)

    to org.eclipse.swt.widgets.Widget.error(Widget.java:468)

    to org.eclipse.swt.widgets.TaskBar.createHandle(TaskBar.java:99)

    to org.eclipse.swt.widgets.TaskBar. < init > (TaskBar.java:92)

    to org.eclipse.swt.widgets.Display.getSystemTaskBar(Display.java:2499)

    to org.eclipse.ui.internal.WorkbenchWindow.createProgressIndicator (WorkbenchWindow.java:3325)

    to org.eclipse.ui.internal.WorkbenchWindow.createDefaultContents(WorkbenchWindow.java:1104)

    to org.eclipse.ui.internal.WorkbenchWindowConfigurer.createDefaultContents (WorkbenchWindowCo nfigurer.java:623)

    to org.eclipse.ui.application.WorkbenchWindowAdvisor.createWindowContents (WorkbenchWindowAdv isor.java:268)

    to org.eclipse.ui.internal.WorkbenchWindow.createContents(WorkbenchWindow.java:1010)

    to org.eclipse.jface.window.Window.create(Window.java:431)

    to org.eclipse.ui.internal.Workbench$ 22.runWithException(Workbench.java:1208)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.application.WorkbenchAdvisor.openWindows(WorkbenchAdvisor.java:803)

    to org.eclipse.ui.internal.Workbench$ 31.runWithException(Workbench.java:1567)

    to org.eclipse.ui.internal.StartupThreading$ StartupRunnable.run (StartupThreading.java:31)

    to org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)

    to org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134)

    to org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041)

    to org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660)

    to org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2548)

    to org.eclipse.ui.internal.Workbench.access$ 4 (Workbench.java:2438)

    to org.eclipse.ui.internal.Workbench$ 7.run(Workbench.java:671)

    to org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)

    to org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)

    to org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)

    to com.adobe.flexbuilder.standalone.FlashBuilderApplication.start (FlashBuilderApplication.ja goes: 108)

    to org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication (EclipseAppLau ncher.java:110)

    to org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start (EclipseAppLauncher.jav one: 79)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)

    to org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    to org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)

    to org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)

    to org.eclipse.equinox.launcher.Main.run(Main.java:1407)

    Thank you

    This happens because the Eclipse workspace is corrupted. The best way I found to recover from this is the following:

    1. use the Windows Task Manager (Ctrl + Shift + Esc) to make sure that the FlashBuilder.exe is not running as a process. In this case, to end the process.

    2. go to your workspace folder (the default location is in your users folder "Adobe Flash Builder 4.5", although you may have placed is elsewhere).

    Mine is c:\Users\grayson\Adobe Flash Builder 4.5

    3. There is a folder named .metadata (on Windows 7, there is a problem where it may appear as a folder without a name, the windows open because truncating the 'extension')

    Move it to another location on your hard drive.

    4. launch Flash Builder to ensure that it has solved the problem.

    5. close Flash Builder (this writes the default settings of the workspace in the .metadata folder in your workspace)

    Inside of the original copy of the you .metadata folder, COPY the following folders to the same location in the newly created folder .metadata in your workspace file by replacing the files and folders that are there.

    .metadata\.plugins\org. Eclipse.Core.Resources\

    .metadata\.plugins\org. Eclipse.Core.runtime\

    (as I mentioned previously, Windows 7 may truncate the names of folders without the last part of the name, so you can see the two records that seem to be named "org.eclipse.core.runtime". Copying will still work)

    6. This will restore the projects, the workspace settings, and keyboard shortcuts. (available to dialog / will be reset to the default value and the external tool Configurations are not copied.) I looked but did not find where those are stored)

  • Could not launch - the screen displays "no signal".

    original title: System crashed!

    • OS crashed after request to restore to an earlier date. Impossible to restart.
    • I tried to use the button Reset, but in vain.
    • Off, not good.
    • Grateful for any suggestion.

    Have you tried the system restore and the last known configuration?

    Using thelast known good Configuration

    What isSystem Restore ?

    "A programmer is just a tool that converts the caffeine in code" Deputy CLIP - http://www.winvistaside.de/

  • Conversion fails with the error: COULD not: - ERROR - convert: converter.fault.FileCreationFault

    Hello, I try to convert a windows 2003 server of citrix server to vmware (the last of them succesfull 20).

    The job runs up to 95% one error:

    "Create von ' \\.\vstor2-mntapi10-shared-D587D58700001000000000000B000000\$Reconfig nicht possible."

    Logfile by saying:

    2013 04-07 T 14: 14:20.752 + 02:00 [error 12632 'Default'] [task, 350] [LRO] Unexpected Exception: converter.fault.FileCreationFault
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [task, 379] [task-72] - ERROR - convert: converter.fault.FileCreationFault
    -> (converter.fault.FileCreationFault) {}
    -> dynamicType = < unset >
    -> faultCause = (vmodl. NULL in MethodFault),
    -> file = "\\.\vstor2-mntapi10-shared-D587D587000010000000000005000000\$Reconfig$"
    -> msg = ""
    ->}
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 267] retrieved taskInfo to "converter.task.Task:task - 72" mapping to "converter.task.Task:task - 72".»
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 307] the task with id = "task-72" proved to be a task 'recent '.
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 321] no existing group of newspaper found to task with id = "task-72. The task is still 'young' so a bundle of newspapers going now is assigned.
    2013 04-07 T 14: 14:20.753 + 02:00 [12632 info 'Default'] [diagnosticManager, 790] recovery job related diagnostic for the tasks of server with id = "task-72.
    2013 04-07 T 14: 14:20.925 + 02:00 [10056 "Default" info] passage work 0 "job-72" completed with an error. -struct Converter::Server:Job:JobExecutor:SchedulerUpdateSpec __thiscall Converter::Server:Conversion: ("d:/build/ob/bora-875114/bora/sysimage/lib/converter/server/conversion/conversionJobExecutorImpl.cpp:405")
    2013 04-07 T 14: 14:21.125 + 02:00 [10056 "Default" info] suspended 1 elements of Planner for employment (job-72) - __thiscall Sub Converter::Server:Job:JobProcessorImpl:SuspendJobAux(const_class_Converter::Server::Job::InternalJob_&,class_Converter::VdbConnection_&) ("d:/build/ob/bora-875114/bora/sysimage/lib/converter/server/job/jobProcessorImpl.cpp:828")
    I run vCenter Converter Standalone 5.01 version 875114
    I tried to erbuild the mbr, the boot sector and the boot.ini, but no success yet a screen is blue with 0x00000007b
    any new idea

    Yes, something is not in communication with the pilot vstor2:

    2013 04-07 T 14: 13:11.545 + 02:00 [info 09908 "Default"] [, 0] Vmount library: 1450 error communication error with the pilot while
    2013 04-07 T 14: 13:11.545 + 02:00 [warning 07680 'Default'] [, 0] error 999 (hive to load error: unknown error 999 (0x3e7) (999)) temporary hive loading

    1450 error is "insufficient system resources exist to complete the requested service."

    999 error is "error performing a paging operation."

    Both are unusual. Try the task set up on destination VM, if the task fails you will need to restart the source machine and try to restart the conversion.

    HTH

    Just found/3 GB switch in your boot.ini file, there are rumors that sometimes you should remove this switch for successful conversion: http://communities.vmware.com/message/1708679#1708679

  • Could not be converted

    Software Adobe reader won't let me convert a Microsoft Works Doctument in pdf format

    That is right. Adobe Reader does not convert files to PDF format. It shows only PDF files.

    If you want to be able to convert from PDF files you need Acrobat or a subscription for the service Pack of PDF.

  • Could not import the flash file in presenter

    I am running presenter 7.0 in PPT 2007. Other than the problem I have with a video file flash, it seems to work correctly.

    I created a flash video in Captivate (it is a demonstration of the short software), and I want to integrate it into a presentation using Presenter. But when I select "insert a swf file" tab in Adobe Presenter, I never have a chance to select the swf file I want.

    I expect a file at this point selection dialog box. Instead, I went to Internet Explorer and more, nothing happens.

    The flash file works fine as a stand-alone running in Internet Explorer.

    Is "Insert a swf file" the right way to add this video? Is there a better way to incorporate this Captivate video?

    A dead end I tried already: I looked at the description of the problem ' video import failed. Adobe Presenter 7.0.7', but this is not my problem. I'm running (not 7.0.7) 7.0, and the registry key mentioned on the Adobe Presenter support site (TreatFLVCheckWarningAsError) is not present on my computer.

    Thanks for your help.

    -George

    OK, I recommend all first that inquire through the Adobe update 7.0.6 or 7.0.7 via the download available to the public at http://www.adobe.com/products/presenter/.

    As for your question to import the flash file, if you use Captivate 5 or 5.5 he published in AS3 (ActionScript 3) only, and presenter 7.0.0 - 7.0.6 is an AS2 application. Therefore, your Captivate SWF files will not work in presenter. So, if you use Captivate 5 or newer, you must go to introduce 7.0.7 to SWFs to work.

    The problem you describe seems to me that you are working on a PPT file located on a shared drive. Presenter do not work with files that are not on your computer and will tend to not show the Insert Flash, video or Audio dialogs if the presentation is on a shared drive.

  • How to know which formula excel could not be converted to numbers?

    Hey guys,.

    3.6.2 numbers I used to open an EXCEL spreadsheet that uses a few different formulas.

    When you open the xlsx file, it tells me that failure to support formulas were replaced last calculated values.

    I have totally accept that, but is it possible to know, formulas THAT had to be replaced?

    Best regards

    Often, you will see a blue triangle in the upper left corner of the cells that have formulas not supported.  When you click the blue triangle, you should see a message like this:

    SG

  • Error code "Could not find Macromedia Flash"

    My system is looking for a file or program that has been deleted, but... keeps poping up.

    JacksRWild,

    Welcome to the Microsoft Answers community.

    I found that for some have found a solution:

    Why do I get a macromedia flash warning?

    I hope this helps.

    Lisa
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • LabVIEW: TDMS file data could not be converted to the specified data type.



  • 1119: access of nativeWindow property possibly not defined through a reference with static type flash.display:Stage.

    I tried this code:

    http://help.Adobe.com/en_US/AS3/dev/WS5b3ccc516d4fbf351e63e3d118666ade46-7e08.html

    but it displays error: 1119: access of nativeWindow property possibly not defined through a reference with static type flash.display:Stage.

    package

    {

    import flash.display.Sprite;

    import flash.events.MouseEvent;

    import flash.text.TextField;

    SerializableAttribute public class MinimizeExample extends Sprite

    {

    public void MinimizeExample (): void

    {

    var minTextBtn:TextField = new TextField();

    minTextBtn.x = 10;

    minTextBtn.y = 10;

    minTextBtn.text = "minimize";

    minTextBtn.background = true;

    minTextBtn.border = true;

    minTextBtn.selectable = false;

    addChild (minTextBtn);

    minTextBtn.addEventListener (MouseEvent.CLICK, onMinimize);

    var maxTextBtn:TextField = new TextField();

    maxTextBtn.x = 120;

    maxTextBtn.y = 10;

    maxTextBtn.text = "zoom";

    maxTextBtn.background = true;

    maxTextBtn.border = true;

    maxTextBtn.selectable = false;

    addChild (maxTextBtn);

    maxTextBtn.addEventListener (MouseEvent.CLICK, onMaximize);

    var restoreTextBtn:TextField = new TextField();

    restoreTextBtn.x = 230;

    restoreTextBtn.y = 10;

    restoreTextBtn.text = "restore";

    restoreTextBtn.background = true;

    restoreTextBtn.border = true;

    restoreTextBtn.selectable = false;

    addChild (restoreTextBtn);

    restoreTextBtn.addEventListener (MouseEvent.CLICK, onRestore);

    var closeTextBtn:TextField = new TextField();

    closeTextBtn.x = 340;

    closeTextBtn.y = 10;

    closeTextBtn.text = 'close this window ';

    closeTextBtn.background = true;

    closeTextBtn.border = true;

    closeTextBtn.selectable = false;

    addChild (closeTextBtn);

    closeTextBtn.addEventListener (MouseEvent.CLICK, onCloseWindow);

    }

    function onMinimize(event:MouseEvent):void

    {

    this.stage.nativeWindow.minimize ();

    }

    function onMaximize(event:MouseEvent):void

    {

    this.stage.nativeWindow.maximize ();

    }

    function onRestore(event:MouseEvent):void

    {

    this.stage.nativeWindow.restore ();

    }

    function onCloseWindow(event:MouseEvent):void

    {

    this.stage.nativeWindow.close ();

    }

    }

    }

    You can not force-close a browser with the exception of a window with javascript window.

Maybe you are looking for

  • Boot Camp Windows does not show Macintosh HD in file Explorer what should I do?

    Hello I installed windows on boot camp 10 but windows file Explorer does not show my files on mac and I can't access them what should I do?

  • Several problems with Qosmio F10-136

    Howdy Having trouble with my F10, which began a few days ago...-He can't wake up after hibernation (freeze - black screen)-freeze in closin XP (gel - "shutting down... "mssg. doesn't matter if im tryin to shut down the system or reboot)-100% by 'syst

  • Sculpt Touch Microsoft Mouse keeps disconnecting under MacOS

    As the title suggests, continues to lose the Bluetooth connection constantly while idling, not. Reconnects sometimes alone, other times only by changing it power. There is no software to control or change all the settings for the Mac OS. Someone know

  • Screen display

    When I start the display shown moved about an inch to the left leaving a black line on the right side of the screen. All the icons are now small and all the boxes that come up. I tried to restore and successive attempts, he return day, week and month

  • Windows 7, it goes on to say impossible to update please reboot

    * O.T. > windows 7 Hello there im trying to update the secerity on windows 7, but it keeps saying unable to update please reboot your computer all the time can you help me please?