Hi there.
Is there a way to show the Notes in Visio-Drawings? Or even a little beacon if there are notes available?
Thanks!

Hi Simon,
You could trigger an automation script to start when the Visual Overview gets opened and report the result back to the Visual Overview.
Keep in mind that the script only will run when opening the map.
Basically you need:
// For a View:
var request = new GetNotesMessage() { ObjectID = "123", ObjectType = Skyline.DataMiner.Net.Notes.NotesObjectType.View };
// For an Element:
var request = new GetNotesMessage() { ObjectID = "123456/123", ObjectType = Skyline.DataMiner.Net.Notes.NotesObjectType.Element };
// For a Service:
var request = new GetNotesMessage() { ObjectID = "123456/123", ObjectType = Skyline.DataMiner.Net.Notes.NotesObjectType.Service };
var rawResponse = engine.SendSLNetSingleResponseMessage(request);
var response = rawResponse as GetNotesResponse;
engine.AddScriptOutput(UIVariables.VisualOverview.CreateKey("NoteCount"),Convert.ToString(response.Notes.Count(note => note != null && !note.IsExpired),CultureInfo.InvariantCulture));
I'll send you am more complex example internally.
Cheers,
Felix