Folks,
I'm using Flex Builder 3 and trying to get the ECF datashare plugin
working with the flex editor. It works fine with the text editor but
I'm having some trouble getting it to behave for Flex.
The DataShare developer said I needed to add the following to the
plugin:
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:#CompilationUnitEditorContext">
<dynamic
class="org.eclipse.ecf.docshare.menu.DocShareRosterMenuContributionItem"
id="org.eclipse.ecf.editorshare.dynamic1">
</dynamic>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="popup:#TextEditorContext">
<dynamic
class="org.eclipse.ecf.docshare.menu.DocShareRosterMenuContributionItem"
id="org.eclipse.ecf.editorshare.dynamic2">
</dynamic>
</menuContribution>
</extension>
In order to get it to work for the flex editors I need the view ID for
them, and then I have to figure out where to put the above stuff. Can
anyone help me get this working? I'd like to be able to remotely
collaborate on Flex stuff with a teammate but just using the bare
bones text editor is somewhat unexciting.
Thanks,
Kirsten