Book a Demo

Author Topic: What's a little red "A" at bottom-right?  (Read 7816 times)

rustyx

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
What's a little red "A" at bottom-right?
« on: March 27, 2019, 10:27:07 pm »
What is this and how do I get rid of it?



Looked everywhere to no avail.

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: What's a little red "A" at bottom-right?
« Reply #1 on: March 27, 2019, 10:43:48 pm »
Ha, one of the classics again  ;D

It indicates that this element has a linked document. Right click on it and select "Linked Document" to edit it.

Geert

rustyx

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: What's a little red "A" at bottom-right?
« Reply #2 on: March 28, 2019, 02:10:57 am »
It indicates that this element has a linked document. Right click on it and select "Linked Document" to edit it.
You're a saviour!

Thelonius

  • EA User
  • **
  • Posts: 274
  • Karma: +6/-0
  • I think. Therefore I get paid.
    • View Profile
Re: What's a little red "A" at bottom-right?
« Reply #3 on: March 28, 2019, 10:14:54 am »
It would be very useful to have that in the Archimate 3 MDG...

Glassboy

  • EA Practitioner
  • ***
  • Posts: 1367
  • Karma: +112/-75
    • View Profile
Re: What's a little red "A" at bottom-right?
« Reply #4 on: March 28, 2019, 10:56:33 am »
It would be very useful to have that in the Archimate 3 MDG...

It's not in the ArchiMate spec.

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: What's a little red "A" at bottom-right?
« Reply #5 on: March 28, 2019, 03:29:57 pm »
It would be very useful to have that in the Archimate 3 MDG...

It's not in the ArchiMate spec.
It's not in the UML spec either, but that didn't stop them.

Geert

Paolo F Cantoni

  • EA Guru
  • *****
  • Posts: 8626
  • Karma: +259/-129
  • Inconsistently correct systems DON'T EXIST!
    • View Profile
Re: What's a little red "A" at bottom-right?
« Reply #6 on: March 28, 2019, 05:04:50 pm »
It would be very useful to have that in the Archimate 3 MDG...

It's not in the ArchiMate spec.
It's not in the UML spec either, but that didn't stop them.

Geert
You might well think that.  I couldn't possibly say that!

Paolo
Inconsistently correct systems DON'T EXIST!
... Therefore, aim for consistency; in the expectation of achieving correctness....
-Semantica-
Helsinki Principle Rules!

Glassboy

  • EA Practitioner
  • ***
  • Posts: 1367
  • Karma: +112/-75
    • View Profile
Re: What's a little red "A" at bottom-right?
« Reply #7 on: April 03, 2019, 08:57:51 am »
It's not in the UML spec either, but that didn't stop them.

We get far more "how can I make ArchiMate not ArchiMate" questions than "how can I make UML not UML", and UML is more amenable to change.

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: What's a little red "A" at bottom-right?
« Reply #8 on: April 03, 2019, 09:49:48 am »
It would be very useful to have that in the Archimate 3 MDG...
Take the example I gave in the other thread and add the following to your shape script.

Code: [Select]
decoration linked_document
{
orientation= "SE";
h_Align="right";
v_Align="bottom";
if(hasproperty("haslinkeddocument","true"))
{
SetFontColor(255,0,0);
print("A");
}
}