Tekla Structure - Customization

Tekla Structures


Tekla Structure Issue: Macro Recording Problem

I need to do a macro that select some assemblies in model to export then by dgn file, but when i record macro selecting those assemblies I gold down alt key and click at the point, but macro record only the click. How i do to tekla "hold down alt" before click?


Macro look likes this

namespace Tekla.Technology.Akit.UserScript
{
public class Script
{
public static void Run(Tekla.Technology.Akit.IScript akit)
{
akit.MouseDown("View_01 window_1", "View_01 window_1", 497, 521, 1);
akit.MouseUp("View_01 window_1", "View_01 window_1", 497, 521, 0);
}
}
}


Enter the forum for further discussion about this issue.