Announcements

Announcement: We’re aware of an issue affecting starting a new topic from category pages and creating new blog posts. New topics can still be started directly from the relevant board. Learn more here.

"Connect Into" Revit Shortcut doesn't exist for Revit 2026

"Connect Into" Revit Shortcut doesn't exist for Revit 2026

Sefanja_Verkaik
Enthusiast Enthusiast
1,363 Views
7 Replies
Message 1 of 8

"Connect Into" Revit Shortcut doesn't exist for Revit 2026

Sefanja_Verkaik
Enthusiast
Enthusiast

Hello,

Does anyone know why the Shortcut for "Connect Into" is removed in Revit 2026?
Or is it renamed? And if so what is the new name for the shortcut? I cannot find it anymore.

1,364 Views
7 Replies
Replies (7)
Message 2 of 8

blank...
Advisor
Advisor

Yup, I already reported it, forwarded to development team for a fix in update. Update .2 came and went... No shortcut.

Message 3 of 8

blank...
Advisor
Advisor

Update .2 came and went... No shortcut.

Update .3 came and went... No shortcut.

0 Likes
Message 4 of 8

wlentz5RNA5
Community Visitor
Community Visitor

Any update to this issue? It's messing with my work flow and taking longer to pipe up heads. 

0 Likes
Message 5 of 8

rcrdzmmrmnn
Advocate
Advocate

I know this is a MEP forum but if it can help anyone this is a sample command in C# that will create a button in a addin tab that will simulate the click on connect into, then you can assign this button to a shortcut command... You will need to understand a bit of revit API and programming but there are plenty of tutorials out there.

using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using System.Windows.Automation;

namespace RTG.Addin.DISCIPLINAS.HID;
[Transaction(TransactionMode.Manual)]
public class ConnectInto26 : IExternalCommand
{
	private UIApplication Uiapp;
	private UIDocument Uidoc;
	private Document Doc;
	private View VistaAtiva;

	public Result Execute(ExternalCommandData commandData,ref string message,ElementSet elements)
	{
		Uiapp = commandData.Application;
		Uidoc = Uiapp.ActiveUIDocument;
		Doc = Uidoc.Document;
		VistaAtiva = Doc.ActiveView;




		using (Transaction tx = new(Doc,"Transaction"))
			try
			{
				tx.Start();

				try
				{
					ClickConnectInto(Uiapp);
				}
				catch
				{
				}
				tx.Commit();
				tx.Dispose();
			}
			catch
			{
				tx.RollBack();
			}
		return Result.Succeeded;
	}
	public static bool ClickConnectInto(UIApplication uiapp,int timeoutMs = 3000)
	{
		var hwnd = uiapp.MainWindowHandle;
		if (hwnd == IntPtr.Zero) return false;

		var main = AutomationElement.FromHandle(hwnd);
		if (main == null) return false;

		var t0 = Environment.TickCount;

		while (Environment.TickCount - t0 < timeoutMs)
		{
			var connectBtn = main.FindFirst(
				TreeScope.Descendants,
				new AndCondition(
					new PropertyCondition(AutomationElement.ControlTypeProperty,ControlType.Button),
					new PropertyCondition(AutomationElement.NameProperty,"Connect\r\nInto",PropertyConditionFlags.IgnoreCase)
				));

			if (connectBtn != null)
			{
				if (connectBtn.GetCurrentPattern(InvokePattern.Pattern) is InvokePattern invoke)
				{
					invoke.Invoke();
					return true;
				}
				return false;
			}
			Thread.Sleep(100); // wait a bit and retry
		}
		return false;
	}
}
Message 6 of 8

Sefanja_Verkaik
Enthusiast
Enthusiast

Hello and thanks for the Tip,

Personally I will not be able to use this as a solution due to IT restrictions. But I think its a great tip for those who can.

Message 7 of 8

design587TZG
Explorer
Explorer

Apparantly fixed in Revit 2027 according to incident 
236454 (https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/Unable-to-assign-k...).
Autodesk says "We recommend access the CONNECT INTO command from the Ribbon in Revit 2026.".
I wish they'd fix it with an update to Revit 2026. 

0 Likes
Message 8 of 8

Sefanja_Verkaik
Enthusiast
Enthusiast

Yes it is fixed in Revit 2027, However in Revit 2027 they removed the option to select a large group of pipes and fittings of the same size and change the size. This is an even more "Core" function of MEP modelling. So be cautious with upgrading Revit models to Revit 2027.

Revit 2027 Pipe Options Tab - Autodesk Community