vpiterator - browse through viewports with hotkey
in the ribbon view-layout-viewportiterator the command is stored as "^V" - how do I activate this command to use it with a hotkey, for example? what means ^ ? thanks f. helping
Comments
-
The "^" is used to enter control characters when creating menu macros. For example, the menu macro for drawing a line is:
^c^c_line
The "^c" = Cancel. It is typical to include this at the start of any macro to make sure that you have cancelled out the current command before running the new command (Line).
More info on this in relation to BricsCAD can be found here:
You will find a detailed list of control characters and their meaning here:
About Special Control Characters in Command Macros
In terms of iterating through Viewports. The control character "^V" = iterate to next available viewport. However, the shortcut key sequence that you would press is to do this is "Ctrl + R'
You can find a list of these keyboard shortcuts here.
Jason Bourhill
CAD Concepts Ltd
cadconcepts.co.nz0 -
hello jason!
thanks a lot!
perfect!
0