Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - R Glenn Walker

Pages: [1]
1
Bugs and Issues / Re: Crash on Manage Libraries
« on: May 03, 2024, 04:32:33 am »
I too had this issue with 16.1 Build 1628 64 bit version

2
Have tried both ways. But, no joy. The aggregation property is set properly. At this point, I am left with manually selecting and changing the direction of each link.

3
I have written a simple script that creates composition links between an element and any child elements. It works except that when I try to set the direction, I don't get the effect for which I am looking to achieve. I want "Source -> Destination". But it always sets it to "Destination -> Source". I

         var theElement as EA.Element;
         theElement = Repository.GetTreeSelectedObject();
         
         elements = new Enumerator(theElement.Elements);
         while (!elements.atEnd()) {
            var element as EA.Element;
            element = elements.item();
            connector = element.Connectors.AddNew("Part Of","composedOf");
            connector.SupplierId = theElement.ElementID;
            connector.Direction = "Source -> Destination";
                                 // Assuming need update here so that the supplier end is filled in properly.
            connector. Update();
                                // this works fine. Aggregation is showing properly.
            connector.SupplierEnd.Aggregation = 2;
            connector.Update();
            elements.moveNext();
         }

4
Suggestions and Requests / Re: MDG generation automation
« on: March 17, 2016, 06:35:23 am »
Has this ever been addressed? I am finding same issue. Easy to write a script, but need a way to call the function that assembles the profile. It would make updating / maintaining MDG's much easier.

Pages: [1]