RoboFont › Forums › Enhancements › Anchor behaviour
Tagged: selection component
This topic contains 10 replies, has 4 voices, and was last updated by Mathieu Christe 7 years, 4 months ago.
- 
		AuthorPosts
- 
		
			
				
September 24, 2012 at 14:41 #4365hi, 
 I am not sure if I missed that feature, but is there a way to lock anchors? So they don’t get selected when cmd + a is hit (and then copy pasted or moved).Also when an anchor is further left or right than any outline the margins are counting from that anchor. 
 Shouldn’t the margins ignore any anchors?thanks and best, 
 joSeptember 24, 2012 at 14:45 #4366the upcoming version has different behavior toward anchor selection: 
 cmd+a: select all contours
 cmd+alt+a: select all object in the glyph, contours, anchors, componentsmarque sélection + alt + command: select anchors only and the anchors – margin bug will also be fixed September 24, 2012 at 14:53 #4367thanks for super fast reply ! 
 looking forward to v 1.3June 14, 2013 at 20:34 #5584Thank you for the very useful shortcuts! I’ve realised by using the Cmd-click to select component, that the pointer needs to be on top of the component, which often makes the component slightly move (in my experience). I’ve looked through the documentation but couldn’t find a shortcut to only select components. If this is useful to other users and if I’m not missing a trick, may I suggest Alt-click? Thanks for reading and listening. June 18, 2013 at 23:53 #5587Hi Mathieu, I’ve been wanting to do the same. I just spotted this in the 1.4 release notes: • page begin, page end jump through anchor selection (they’re the home and end keys on my keyboard) Perfect for my needs. Thanks Frederik! June 19, 2013 at 15:15 #5592Hello Dan, Now that you point it out, I remember reading it in the Version History. It’s very handy indeed. 
 Only component related, how do you proceed if you want to select all components at once?M June 19, 2013 at 15:31 #5593hey mathieu, 
 cmd+alt+A gives you a selection of everything (outlines, components, anchors) in the glyph. so if you only have components in your glyph that could work?cheers, 
 joJune 19, 2013 at 15:37 #5594Hey Jo, Thank you for your answer but I’d like to be able to only select components, which means in the case of a glyph with both parts (components and non components). Yep, M June 19, 2013 at 16:02 #5595hmhm how about this and assigning a short/hot key to it: # Selects all components of currentGlyph g = CurrentGlyph() g.prepareUndo("Select Components") for cont in g.contours: cont.selected = False for anchor in g.anchors: anchor.selected = False for comp in g.components: comp.selected = True g.update() g.performUndo()June 20, 2013 at 10:14 #5602next update will have a cmd+ctrl+A to select all components in one go…. June 20, 2013 at 12:51 #5604Jo, thanks for the script which I’ll use in the meantime. Frederik, thank you for listening and offering a built-in solution. 
- 
		AuthorPosts
You must be logged in to reply to this topic.