Catia V5 - Power input list
Catia V5 - Power input list
(OP)
Hi,
Is there a Power input list available?
I want to develop for myself the habit of using them more often.
At the moment I know just a few......
Thanks
Is there a Power input list available?
I want to develop for myself the habit of using them more often.
At the moment I know just a few......
Thanks





RE: Catia V5 - Power input list
look thru the CATIA documentation, i.e search for "Using the Search Language"-string.
that will give you an idea of what you can do with the power-input-line.
I often use c: (c stands for command)
so "c:point" is equivalent to pressing the point-button.
t stands for type, so t:plane will select/highlight all planes in the part. if you perform "t:plane & vis:visible,all" you will highlight only the visible planes in your part (or assembly... (HINT!)--this way you can quickly hide all the planes in your assy.)
f stands for favourite, so if you've saved a search query under a favourite, you can call on it using the f:"name" command
regards,
LWolf
RE: Catia V5 - Power input list
RE: Catia V5 - Power input list
You will not be more productive simply using power input in this way. You have to assign shortcut keys to those commands used very often. Or even more quickly, create your own toolbar with macros combining (eventually) different commands.
A list with available commands in each workbench can be obtained from View pull-down menu - Commands List....or use next macro
Sub CATMain()
Dim strCurWbench as String
strCurWbench = CATIA.GetWorkbenchID
MsgBox "Current Workbench is: " & strCurWbench & (Chr(10)) & (Chr(10)) & "Available internal commands for this workbench are listed in next window." & (Chr(10)) & (Chr(10)) & "Select desired command and follow instructions in lower left corner of CATIA window."
CATIA.StartCommand "Commands List"
End Sub
Regards
Fernando
https://picasaweb.google.com/102257836106335725208
RE: Catia V5 - Power input list
RE: Catia V5 - Power input list
RE: Catia V5 - Power input list
Regards
Fernando
https://picasaweb.google.com/102257836106335725208