Reputation: 12044
I have the following problem WHen lunching FlashBuilder.exe (BURRITO): it crashes and creates an error log file such us: hs_err_pid7084.log and following
But when I munch FlashBuilderC.exe : it opens a CMD dos window and flash builder starts. I tried to reinstall it : no way.
Can one help me ? I found a solution removeing some .metadatas in Eclips or similar but I cannot find it any more
Regards
Upvotes: 10
Views: 16279
Reputation: 5
I had the same experience as Apollo M. Deleting the .snap and .lock files didn't work for me.
I located the workbench.xml file (C:\Users[your name here]\Documents[your project directory].metadata.plugins\org.eclipse.ui.workbench) and deleted the individual entries under the "" tag.
Nice thing about this is that my workspace opened correctly, with no need to re-import my projects.
Upvotes: 0
Reputation: 4877
Try deleting:
C:\Users\[USERNAME]\Adobe Flash Builder 4.7\.metadata\.plugins\org.eclipse.ui.workbench
Upvotes: 1
Reputation: 39408
Upvotes: 0
Reputation: 1001
It may be a little bit late for an answer, but you can try to do this:
FOR WINDOWS:
C:\Users\[YOUR USER] \Adobe Flash Builder 4.5\.metadata\.plugins\org.eclipse.core.resources\
FOR OSX {FILES HIDDEN}:
[Flash Builder Workspace Directory]\.metadata\org.eclipse.core.resources\
C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.5\
I hope this helps someone.
Upvotes: 21
Reputation: 181
I've had this problem a couple of times. For the first time, deleting the .snap
file worked. Not the second time, however.
I looked at the log file for the workspace located under the .metadata
folder (inside your Flash Builder files, typically: c:\Users\[YOUR USER]\Adobe Flash Builder 4.5\
), and found the following line towards the end:
!MESSAGE Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown:
I solved this by deleting the file workbench.xml
in the org.eclipse.ui.workbench
folder under the .plugins
one, and then starting up the Flash Builder again.
The workspace at least opened, admittedly with a problematic project but at least I could fix it from there.
Upvotes: 8
Reputation: 2585
This was happening often enough for me that I ended up writing a batch file to fix the issue, using Marchar and fenomas's posts - thanks guys! (Note - ensure the Flash Builder process has been killed before running it)
cd C:\Users\[your name here]\Adobe Flash Builder 4.7\.metadata
del .lock
cd C:\Users\[your name here]\Adobe Flash Builder 4.7\.metadata\.plugins\org.eclipse.core.resources
del .snap
Upvotes: 0
Reputation: 1451
When this happens, I usuall just delete the metadata from my workspace and the reimport all the existing projects to workspace.
Run the following inside your workspace:
$ rm -rf .metadata
Upvotes: 0