Help with opening editor

I can't seem to get into edit mode in any way. Any help?

Originally posted by: myersj.gmail.com
What versions of VE, EMF and GEF did you install? If you've installed a
version of VE that's compatible with Eclipse 3.1, and the associated
versions of EMF and GEF, please check for errors in the .log file in
your workspace's .metadata directory.
Hope this helps,
- Jeff

Similar Messages

  • Help with opening Adobe Reader and downloading updates

    I can not open Adobe .pdf files any longer (this started yesterday, prior to that I could open adobe files).
    When I double click a .pdf file I get this notice on my screen: Windows cannot access the specified device path or file. You may not have the appropriate permission to access file.
    So I went to the Adobe download site to download a new copy of Adobe.  When I start the download I get this on the screen:  The instruction at "0x0e3a0068" referenced memory at "0x0e3a0068."  The memory could not be written.  Then two options are listed: click OK to terminate or cancel to debug.  So I click on cancel and I get this on my screen: Internet Explorer has closed this webpage to help protect your computer.   A malfunctioning or malicious addon has caused I.E. to close this webpage.
    I don't have AVG running, I do have avast but I've disabled it.  I ran Registry Mechanic and an I.E. erasure program but nothing helps.
    I have gone into I.E. and reduced the security level to its lowest state but no joy.
    So, any ideas or suggestions on what's the problem and how to overcome it would be appreciated.  Thanks, in advance, for your reply.  Jim R.

    Hi Mike..tried that as well but no joy.  A friend of mine was looking at it all and noticed that it was an I.E. thing as far as not letting me redownload the reader so I went to Mozilla Firefox and I could download a new version but....whenever I attempt to open a .pdf file I get that message, "Windows can not open the specified device, path or file. You man not have the appropriate permissions to access the item." 
    Damn...this is irritating as I need to get to some of thos files as I need them for a Journal I'm working on as editor-in-chief. 
    It all worked just fine last Saturday but starting Monday when I was on my flight out to D.C.  no joy. 
    Sigh...Jim R.
    Jim R.
    Date: Tue, 1 Dec 2009 14:50:27 -0700
    From: [email protected]
    To: [email protected]
    Subject: Help with opening Adobe Reader and downloading updates
    Under the help menu, there is an option to repair the installation of reader. Did you try that?
    >

  • Need help with open hub

    Hi eveybody,
             I was trying to wok with open hub. Created infospoke, destination i gave was a csv file named d:/openmara.csv path, saved and activated the info spoke. I went to d:/ to view the uploaded files, two file was created, when i try to open a file it says "unable to read" , when i tried to open the second one i could open the file and see some datas but not in a correct format, why is that?
    Then i tried to load the data in database, so in the infospoke i selected the option for destination as database,saved and activated the infospoke, now where should i go to see the uploaded datas physically?
    Could anyone help me with this.
    Thanks,
    RR.

    Hi,
    Thanks for the reply. I created a infospoke and destination was database option. Opened the se16 gave the table name which starts with /bic/....(please correct me if i am wrong),then the initial screen of se16 came up with all the fields , but when i executed it, the table is empty.Could you say why it is happening.
    Thanks,
    RR.

  • Help with Open Browser Window

    I built a site named greenscapepump.com. I used the behavior
    "Open Browser Window" that allows a photo to be viewed in a smaller
    window. I have it set up to double-click the photo name to go to
    the browser window. It works on some computers but not others. I
    used the same behavior on other pages in the same web site and it
    is working on all computers.
    The three pages under the menu "Portfolio" are: Architectural
    Fountains, Waterfalls and Streambeds, and Floating Fountains, are
    the pages that have problems with this behavior on some computers.
    Is this an individual computer problem, or do I need to do
    something in Dreamweaver to fix it?

    OMG - the code on the architecturalfountains page is a horror
    Why do you need to use doubleclick.... most users are
    accustomed to clicking
    on a link wait for something to happen....
    Also, the code for that dropdown is massive... are you really
    committed to
    that menu?
    The validator found quite a few errors on that particular
    page - I didn't
    test each page (that's up to you :) these errors aren't
    helping with your
    page load also - one of the pages (can't recall which now)
    just kept trying
    to load and never did stop... try fixing the errors (some
    more important
    than others to the well being of your page) and then see
    where you are at
    with your pages... I'd also suggest changing the
    'doubleclick' to just the
    one click - really no need for anything else.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fgreenscapepump.com%2Farchitectura lfountains.html%23
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.DreamweaverResources.com
    |Tutorials|SEO |CSS Templates
    http://www.csstemplates.com.au
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    "texasgranny" <[email protected]> wrote in
    message
    news:ef9h1v$4h8$[email protected]..
    :I built a site named greenscapepump.com. I used the behavior
    "Open Browser
    : Window" that allows a photo to be viewed in a smaller
    window. I have it
    set up
    : to double-click the photo name to go to the browser window.
    It works on
    some
    : computers but not others. I used the same behavior on other
    pages in the
    same
    : web site and it is working on all computers.
    : The three pages under the menu "Portfolio" are:
    Architectural Fountains,
    : Waterfalls and Streambeds, and Floating Fountains, are the
    pages that have
    : problems with this behavior on some computers.
    : Is this an individual computer problem, or do I need to do
    something in
    : Dreamweaver to fix it?

  • Pls help with JTree editor problem

    Hi,
    I have a JTree where each node in the tree is a JPanel. In each
    JPanel are two JTextField objects. Only one of the JTextField objects
    is editable.
    When I click on node (a line in the JTree) with the mouse, it is
    painted using the custom editor (TreeCellEditor) that I have written.
    When the selected and editable JTextField has the focus, and when a
    certain key is hit, I capture that key, do some things, and then select
    a different node in the JTree.
    When selecting the new node, I need the node to be painted with
    the editor, just as if I had clicked on it with the mouse.
    In the method called as a result of the key binding, I call the
    following --
    TreeUI.stopEditing( JTree ) -- stops editing of the cell that resulted
    in the key binding call
    TreeUI.startEditingAtPath( JTree, TreePath )
    -- according to the JavaDocs, this should select the new cell and
    start editting of it.
    This last method does call my editor to get the components, but then my
    Renderer is also called (twice in fact). When the cell is painted, it is
    painted with the Renderer's components.
    PLEASE HELP HERE !

    Thank you so much for giving a reply to this problem.
    I will experiment with your suggestion. However, in looking at the JavaDocs
    I would need to make one class that implements both TreeCellEditor and
    TreeCellRenderer, with the methods getTreeCellEditorComponent() and getTreeCellRendererComponent(). Since currently, my editor is called and then
    my renderer is called, over-writing the editor's result, I would suspect that
    both of these methods would also be called (even though they are in the same
    class), having the same effect.
    Again, thank you.

  • Please help with opening old mac AE file on a pc

    Hi,
    With the latest version of AE on a pc I tried opening older mac version .aep file created I believe in 1999. I had very little hope so I wasn't surprised to see this message:
    "After Effects error: this file was created with an older version of After Effects [3.0 (Macintosh PPC)], and can’t be opened. You can convert this file using an older version of After Effect and resaving."
    It is not clear which version should be used, Pc or Mac, and if at the end that file could eventually be opened in thet latest AE on a pc.
    I will greatly appreciate any help with this.

    Thanks Mylenium
    Rebuilding is not an option. It is a lot of work and I need this as a portfolio item. I created a promotional interactive CD with Macromedia Director in 1999 for a sign company. I created 19 short animations for it with After Effects 3 using old PPC Mac.  I haven't used After effects since then but recently several new clients asked me if I can make animations from that nature. So, I'm trying to use my old work as a demonstration of my creative skills.  The problem is that the animations were rendered tiny with 309 x 228 pixels to fit in the interactive interface of the presentation intended for the small monitors used at that time. I took the animations from the interactive CD  and using the latest AE on a pc, I created a rough composition with running the animations one after another. To make the animations a bit larger I scaled most of them to 320 x 240 hoping it will look better.
    In my archives I have the project files and all .ai vector graphics used for the animations. I still have the old PPC Mac retired somewhere in the closets and installer CD with After Effects 3 and 4. I thought it would be great if I can somehow open the files in the latest version on a pc but if not I guess I have to take out that old mac are render to higher resolution using this ancient machine and AE version. And I'm wondering if all this is worth it.
    I will appreciate any tips, advices, things to be aware, etc, and how to make this looks better on YouTube.
    Oh, and another question by the way, I haven't been current to the animation software for a long time and wonder if this kind of presentational animations are best suited for creating with Flash or After Effects is still OK?

  • Help with opening a .PDF in browser (firefox) - have Adobe Acrobat 9 Pro Extender installed

    Hi all,
    I have Adobe Acrobat 9 ProExtender installed, whenever I go to my firefox options and change the .PDF setting to (USE ADOBE ACROBAT (in firefox)) setting, i get a screen which is whited out, and a message from Adobe Acrobat with a question mark (?), but no message is there to read.
    That is the scr
    een that pops up, I can back out and try the link again for it to work, but it does it to all my .PDF files I try to view on the page.  All I can do to prevent this is to save to disk, and open with adobe acrobat pro extender, but sometimes the file I need to look at are quick and would save a lot of time just opening it on the browser.
    Thanks for the help!

    walker81 wrote:
    Just change the windows settings that it should opens pdf files with Acrobat Pro (default).
    http://support.microsoft.com/kb/307859
    Unfortunately, it's not that simple because Acrobat and Reader share files, and that's why Adobe recommends not to have them both installed in the same machine.

  • Help with opening a fb file in Adobe reader

    HI i am trying to open a PDF file from facebook in adobe  reader. I had done this many times on my old iPhone 5 (I'm now using iOS 8 on a iphone 6plus)
    it does not give me the option to do this jiwrver . There no box with the arrow to select open in. I have tried holding down but still no luck! I rely on this option for work and can't seem to work thus out! Please help it's driving me crazy!
    The blew link is what I'm refering too.
    TIA gir any herp
    Tracey
    How to open PDF documents in Adobe Reader for iOS (iPhone on iOS 7 version)

    Because it's not a frequently asked question, we do not have the Facebook section in the FAQ document.  Sorry about that.
    There is no direct way to get a PDF document shown in the Facebook window into Adobe Reader for iOS.  You need to go from (1) Facebook to (2) Safari (web browser), then to (3) Adobe Reader on iPhone (and iPad as well).
    In the Facebook page showing a PDF document, tap the Share icon in the bottom toolbar.
    Select "Open in Safari" from the menu that appears.
    In Safari, tap anywhere in the document to show the toolbar (below the top toolbar).
    Tap "Open in..." (label) in the toolbar.
    Tap "Open in Adobe Reader".
    Please let us know if it doesn't work for you.

  • Help with opening up a Seagate Barracuda SATA Internal HardDrive on my Macbook Pro!

    Hi Everyone!
    I have two questions that I would really love someone to
    help me out with!!
    I really need help trying to open three Seagate Barracuda SATA Internal HardDrive that I was given to edit
    dailies for a feature film! I tried all three and only one worked - however, didn't opened but wanted me to intialize
    it and reformat it so it can be discovered and opened. But all three contain video and audio files within them, so I cannot
    reformat these drives!
    And with the other two, apparently they can be opened on a PC but I have to edit my dailies
    on Final Cut 7 - and from what I know, Final Cut Pro is not avaiable for PCs!!
    If there is anyone that can answer these two question, please respond soon!!
    Thanks!

    I suspect those HDDs are NFTS formats.  Paragon may be the answer for you then:
    http://www.paragon-software.com/home/ntfs-mac/
    Regarding Final Cut, I suggest you post that part of your query on the Final Cut forum where you will have  the best chances for an accurate solution.
    Ciao.

  • Elements 7 issues with opening editor

    I purchased Photoshop Elements 7 last year for my previous computer, however i recently got a new computer. It is a Dell with Windows Vista. So I downloaded Elements 7 on my new computer and when i try to use the Edit portion of the program I get an error message that says, "Adobe Photoshop Elements (Editor) has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available." I tried uninstalling it and reinstalling it several times. Can any please help find a solution? I will be angry if i wasted $100 on this program that does not work... Solutions?

    Unfortunately, there are many reasons why the PSE Editor might crash, and often it is hard to diagnose quickly the reason for the crash.   Here are some steps you can take to try to fix the problem:
    http://www.johnrellis.com/psedbtool/photoshopelements-6-7-faq.htm#_Troubleshooting_Editor_ crashes

  • HELP WITH OPENING ITUNES!!

    I recently had to restore my computer to default. I had Itunes on there and when I downloaded it again and now it won't open. It comes up with the message: "Itune's has encountered a problem and needs to close" It doesn't even bring it up at all. I want to buy more things from the Itunes store and don't know how to. Please HELP!!!!!!!!!!!!!!!!!!!!!

    Check to see if QUicktime works normally. iTunes cannot work if QUicktime doesn't.
    If QUicktime is OK, use this troubleshooting article:
    http://support.apple.com/kb/TS1421
    If QUicktime doesn't launch, give the error message in full.
    Then go to your control Panel Classic View and try to start Quicktime Preferences. Give the full text of any error message.
    Have you installed any of the following:
    ACE & K-Lite mega codecs package, QT alternative, Storm codec, WinAVI video converter, Mpcstar, (possibly starcodec pack, 3ivx)
    They are bad news for Quicktime and should be uninstalled.
    Post back with the results of your investigations.

  • Help with opening Photoshop?

    I just downloaded the 30 day free trial with Photoshop, and it's showing up in my apps but only with the option to 'view tutorials' - I can't actually open Photoshop to start trying it out.
    I am sure I am missing something simple but I can't work out what!
    Any help would be most appreciated, thanks.

    Are you in the Creative Cloud app, and is this what you see?
    That only means it's installed. The CC app is just for managing and checking status.
    To actually open the program, you do that in the normal way - Start Menu > All Programs (and from there you can put a shortcut on the taskbar).
    EDIT: assuming Windows here, obviously...

  • Help with opening up iBook to replace HD

    Hi all,
    I purchased an iBook G3 500/15GB/128MB (late 2001) on eBay a couple of months ago. Although I have an iMac I use as my main computer, I thought it worthwhile upgrading the HD & RAM of the iBook (as well as installing an AirPort card) just to make it a bit more useful. I could see that replacing the HD might be tricky, but as I already managed to replace the HD & RAM of my G3 iMac I thought this would not be too difficult with the right instructions.
    Yesterday, I finally got around to beginning "the operation" with all my tools ready & both the PBFixIt.com guide & the Apple service manual open on my iMac. I have managed to remove the lower case without too much drama, but I am now stuck on the screws on the upper case. They all seem to be so tightly screwed in! - well most of them, I managed to remove about 4 so far. I keep trying them from time to time whenever I am home, with no luck.
    Can some of you more seasoned iBook upgraders/repairers give me some tips? Even just suggestions for good screwdrivers, if that seemed to make a difference... Having got this far I'd hate to give up now...
    Thanks in advance!
    iBook G3 500 (Late 2001)   Mac OS X (10.4.5)  

    Thanks to both of you for your encouragement. Ronda guessed right, I was using a rather cheap'n'nasty #0 screwdriver plus a $2 set of precision tools. I paid a visit to a more specialised electronics store this afternoon & invested in an insulated screwdriver (I don't need the 1000 volts protection, but the rubber handle was a lot easier to grip) and also "Screwdriver Helper", a liquid that looks like drops of a nail file and apparently helps to increase the torque of screwdrivers.
    Armed with my new tools I was able to get off one nasty screw that had frustrated me for about an hour in just a few seconds... and so on with most of the others. Despite all this, I actually managed to grind out the head of one of the crucial screws on the top case, under the keyboard, and it looked like there was nothing I could do to get it out... :-/
    If you are faint-hearted when it comes to opening up computers you might not want to read further...
    I could prise up enough of the corner of the top case & shield to see where the hard drive was. So, I managed to unscrew & untape the shield in that corner & lift out & unplug the HD with the top case precariously pried up. What can I say, I'm stubborn & I hate getting other people in to fix something I feel I should be able to do myself. Anyway, to my surprise I was able to slide in the old HD & plug in the new one with less difficulty than I expected (but it would have been much, much easier if I'd had the whole top case off entirely instead of having to prise it open.)
    I put it all back together a lot easier than getting it apart, thanks to keeping my screws organised. I think I may have to have another go at getting the bottom case on better - I couldn't get the two long torx screws under the feet to go back in straight, so I left them off, and it's slightly out of alignment with the top case round the back where the display hinge is. But it's late & I really wanted to see whether the whole thing was still actually working or not...
    I was very anxious when I plugged in the power cable & pressed the power button! But pleasantly surprised when the iBook booted from the external firewire HD with no problems, & once I logged in Finder complained that it couldn't recognise the 74.5 GB disk I'd "inserted" - the new HD.
    Of course, time will tell whether or not I was completely successful. But right now Carbon Copy Cloner is copying all my old HD's contents over with no apparent problems...
    iMac G3 DV 400 / iBook G3 500 (Late 2001)   Mac OS X (10.4.5)  

  • Help with element editor

    I just bought adobe photo
    shop elements 8 i have windows 7 . i can not get the elements editor
    to open.  the organize opens but not the edit, i uninstalled and reinstalled and it still does not work. help i have a project i need done in a hurry thanks.

    Oh, you people are lifesavers! I just got a new notebook as my old one keeps crashing. Using Windows 7 now. I am NOT a techy sort of person at all. Started a photoshop class at the local community college and it was amazing, so I downloaded the trial version of Photoshop Elements and had the same problem as you. I spent many hours trying different things and learning about drivers, but nothing worked until this--I have a Dell printer and that is what I had to remove (as others in that thread had as well when they had same problem). Such an easy thing to do and one I wouldn't have known to try.
    Thanks so much, and I'll be editing away now!!! These forums are lifesavers, and I appreciate the posters willing to try to help!

  • HELP WITH OPEN OFFICE

    I recently downloaded open office. I followed all instructions (I am relatively computer illiterate and new to mac) and it works fine on its own. The problem is it will not allow me to copy something from the internet and paste it to a document. I'm sure there is a simple solution but I am at a loss. Any help is appreciated

    I used to use OOo and used the X11 front end. I now use NeoOffice which is OO with a Mac front end. Works great and you can paste internet text and graphics into a document. I would think that OO did the same thing.
    Do you high lite the text or graphic and right click on it and choose the copy option?
    Do you then go to your doc and and right click on it and choose paste?

Maybe you are looking for