Sparx Systems Forum
Enterprise Architect => Suggestions and Requests => Topic started by: bockfu on August 19, 2016, 02:18:11 pm
-
i would like to optionally be able to paste unformatted text in an elements notes field.
Today only paste is supported and I typically open a text editor, copy from email/web browser/doc/IM , paste in text editor, copy, then paste in EA. This avoids the inconsistent results in pasting any rich text you may have originally copied.
Being able to copy from anywhere then paste as unformatted text would greatly improve my workflow.
Ive been using 12.0 thus far and am not aware of any such feature existing today.
Updated to request this as an optional feature.
-
Hi,
in my opinion this makes sense. But one has to be aware: The Notes contain formatting (e.g. EA additional features like Links and more).
In 13.1 most things are copied unformatted. From e.g. Word it uses formatting.
Kind regards,
Helmut
-
This is in discussion since ages and Sparx does seem to be interested in fixing it. If you paste formatted text, if shows all kinds of formatting inside the notes box. But then EA stores it in its own crippled format which you only recognize once you reload the notes for displaying.
q.
-
In other applications Ctrl-Shift-V pasts as unformatted text.
That might be a good idea for EA as well.
Geert
-
These days, most applications seem to paste whatever is on the clipboard by default, but offer a right-mouse-button context menu that offers an optional 'paste as unformatted text' option.
That is what I was going for.
So the default behavior would go unchanged.
I'll update the initial post.
-
Got my vote.
-
Made a workaround for this.
I use a program called AutoHotKey to automate some tasks in Sparx EA. Mainly for creating new elements from text selected in notes/linked documents, or linking selected text to existing elements.
But, I've also setup the hot key ctrl + alt + v so I can paste unformulated text in to my notes.
Autohotkey:
https://autohotkey.com/
Script:
^!v::
WinGetActiveTitle title
if(instr(title,"Enterprise Architect"))
{
Clipboard=%Clipboard%
Clipwait
Send ^v
}
exit
-
Made a workaround for this.
I use a program called AutoHotKey to automate some tasks in Sparx EA. Mainly for creating new elements from text selected in notes/linked documents, or linking selected text to existing elements.
But, I've also setup the hot key ctrl + alt + v so I can paste unformulated text in to my notes.
Autohotkey:
https://autohotkey.com/
Script:
^!v::
WinGetActiveTitle title
if(instr(title,"Enterprise Architect"))
{
Clipboard=%Clipboard%
Clipwait
Send ^v
}
exit
Nice ;D
Geert
-
Hi Geert,
looks as you have found a way to simply add features to EA by just a click.
I will give it a try.
Thanks, looks great.
Kind regards,
Helmut
-
Hi Geert,
looks as you have found a way to simply add features to EA by just a click.
I will give it a try.
Thanks, looks great.
Kind regards,
Helmut
I guess you meant Steve right?
Geert
-
Hi Geert, Steve
Geert, you are right.
@Steve
Thanks a lot. Can you elaborate on the usage of autohotkey and EA.
Regards,
Helmut
-
@Steve
Thanks a lot. Can you elaborate on the usage of autohotkey and EA.
Regards,
Helmut
Hi Helmut, I've put a bit of an explanation on my blog, http://stevenksavage.com/2016/09/18/using-autohotkey-with-sparx-ea-the-basics/
-
Hi Steve,
I got the picture.
Thanks for elaborating the example. It is helpful.
Kind regards,
Helmut
-
No problem, I plan to add another example on how you can make AutoHotKey behave differently depending on what part Sparx EA is currently in focus, e.g. the Diagram Pane, Project Browser, or Notes for example.
-
These days, most applications seem to paste whatever is on the clipboard by default, but offer a right-mouse-button context menu that offers an optional 'paste as unformatted text' option.
That is what I was going for.
So the default behavior would go unchanged.
I'll update the initial post.
+1