;Copyright Allford Hall Monaghan Morris, 2017 ;Author: Oliver Green ; ;NOTES ; ;Shortcuts can be customised ;Run the script using AutoHotKey ;By default align nodes uses CTRL + SHIFT + ARROW KEY ^+Right::Align_Right() ^+Left::Align_Left() ^+Up::Align_Top() ^+Down::Align_Bottom() IfWinActive [ahk_class, Dynamo] { Align_Right(){ Send !e Send a Send r } Align_Left(){ Send !e Send a Send l } Align_Top(){ Send !e Send a Send t } Align_Bottom(){ Send !e Send a Send b } }