Hello Tomas
I tried but I just get a warning that the Flat pattern drawing is not up to date. But it works if I delete the sub assemblies I have. Also it works perfectly if I do it in NX 12 but not in NX 11.
Hello Everyone
When I try to make a drawing of my flat pattern it would not show the flat pattern, only when I delete all of my sub assemblies. I tried to make a random part as sub assembly, but does not work as long as there is any sub assemblies. I have made a master drawing but when I try to...
Hello everyone
I am making a KF checker, which should find specific names, such as finding a UDF with the name 9. The code right now looks like this, does anyone know how to do this?
$feats << mqc_askFeaturesByType( "SKETCH" );
$browseable_features << mqc_askBrowseableFeatures(...
Do anyone know how to restrict the mqc_askSketchConstrainStatus2() to only look at layers from 1-199? Have tried to do it with:
$sketch_tag << mqc_askEntities( sketch);
$old_sketches << mqc_sort_entities_by_layer( $sketch_tag, 1-199 );
and
( List Parameter ) filter: {}...
Hello everyone
How it is possible to filter out UDF in for examble the checker, that checks if a drawing is fully constrained, when making a custom checker in NX 11.
Thank you
But do anyone know why, when using mqc_askFeaturesByType("FACE_BLEND"), with the mqc_askBlendRadius() the face blend would give me a value of -1 in the radius, but with the edge blend it gives me the right value of the radius.
The answer that is found to anyothers who wants to know is:
If ( -Member( log_type:, { 1, 2, 3 } ) )
Then
ug_mqc_empty_param_warning( )
Else
@{
$usr_msg << If ( "" = log_msg: ) Then "" Else log_msg: + "~n" ;
$part_unit << ug_askPartUnits( "" );
$check_ble...
Hello all
Is it possible to insert two features in the mqc_askFeaturesByType code? As for example blend and a face blend, as they both are blend types.
The code now passes the test as long as there is one blend radius under the first_input, but I want to know what blend radiuses that do not pass the test (which ones that is over the first_input if there is any). How do you do this? I know you can use != to find everthing that is not equal to...
Thank you for you're answer! Helped with the problem at hand.
The mqc_askBlendRadius() but needs a integer, which integer can be used? becuase the one i used before does not work.
Regards
Christian
Hello all
I cannot find a way to make two inputs so first_input finds every blend less than the number put in and the second_input finds the every blend greater than the number put in. Does anyone know how to do this?
The code looks like:
If ( ( first_input: < 0.0 ) )
Then
@{...