Book a Demo

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 - aviv

Pages: [1]
1
General Board / Re: EA v12 (BETA) feedback
« on: November 10, 2014, 09:53:11 pm »
The beta is released for registered users only.
 Where can I register?
Thank.

2
Thanks. I'll try and update.

3
I would like to get all packages (also the nested ones) if a branch.  
(Isn't it a good idea for a new ability of API? I'm surprised it is not exist as a property of EA.Package [smiley=undecided.gif])

The way is to loop on the collection
Code: [Select]
package.Packages.Does EA.collection implements <IEnumerable>?

4
Automation Interface, Add-Ins and Tools / Re: Close EA application
« on: September 04, 2014, 07:28:27 pm »
Thank you all for the efficient help!

5
Automation Interface, Add-Ins and Tools / Re: Close EA application
« on: September 03, 2014, 09:35:19 pm »
Quote
Check the Repository class. There are operations such as closeFile() and Exit()

Geert

Thank.
I've tried them both, but no result.
May it is since I do not use it via an addin?

This is how I get the opened EA application via my stand-alone application:  
Code: [Select]
EA.App EAApplication;
EA.Repository repository;
EAApplication = Microsoft.VisualBasic.Interaction.CreateObject("EA.App","") as EA.App;
if (EAApplication != null)
     repository = EAApplication.Repository;
  

6
Automation Interface, Add-Ins and Tools / Close EA application
« on: September 03, 2014, 06:56:13 pm »
Is it possible to close EA opened application, using c# and EA API?

Pages: [1]