About the camera when finishing a sketch

About the camera when finishing a sketch

Anonymous
Not applicable
540 Views
3 Replies
Message 1 of 4

About the camera when finishing a sketch

Anonymous
Not applicable

When a user finishes a sketch the camera moves to a location that, most of the time, is troublesome and must be adjusted. Is there a way to modify this camera adjustment after finishing a sketch?

0 Likes
Accepted solutions (1)
541 Views
3 Replies
Replies (3)
Message 2 of 4

bradeneuropeArthur
Mentor
Mentor
Accepted solution

does it help to uncheck the following options in the application options>

look at.PNG

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 3 of 4

Anonymous
Not applicable

Yes this worked great, thank you.

On a side note about customization, how difficult would it be for one to add the reorientation to face the camera at a sketch on creation but not on finishing?  Also the camera reorienting on completion wouldn't be so bad if it zoomed to fit instead of the default location, adding parameters to modify this default view.

I've tried setting the home view to something more comfortable but it doesn't seem to use the home view as the location.

0 Likes
Message 4 of 4

bradeneuropeArthur
Mentor
Mentor

This is possible with this kind of method..

Public Sub K()

Dim a As Application
Set a = ThisApplication

Dim b As PartDocument
Set b = a.ActiveDocument

Dim c As Camera
Set c = b.Views.Item(1).Camera
Do something with events here..........
c.Apply
End Sub

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes