Disable Engineers Notebook in Inventor

Disable Engineers Notebook in Inventor

TGibson7A8HD
Enthusiast Enthusiast
1,153 Views
15 Replies
Message 1 of 16

Disable Engineers Notebook in Inventor

TGibson7A8HD
Enthusiast
Enthusiast

Seriously, how do you disable it? 

Second forum post. 

0 Likes
1,154 Views
15 Replies
Replies (15)
Message 2 of 16

Gabriel_Watson
Mentor
Mentor

Right-click delete your note on the browser?

 

Gabriel_Watson_0-1685634793353.png

 

EDIT: to hide, see the solution in the comment below by @Frederick_Law 

0 Likes
Message 4 of 16

Frederick_Law
Mentor
Mentor

What happened?

Someone put notes everywhere?

0 Likes
Message 5 of 16

TGibson7A8HD
Enthusiast
Enthusiast

It prompts itself open all the time and crashes my system, its not the notes but the whole notebook. 

There is no key-binding listed in the customization panel to disable or unbind it anywhere. 

 

I have a long thread post where Autodesk employees confirmed a bunch of keyshort cut bugs, the engineering notebook being one of them. 

0 Likes
Message 6 of 16

TGibson7A8HD
Enthusiast
Enthusiast

I need to disable the notebook, not delete a note. 

0 Likes
Message 7 of 16

Frederick_Law
Mentor
Mentor

I can only find one way to open the Note, right click menu on the assembly name on top of tree.

EngNotebook-01.jpg

And shortcut is "C".

Can't find it anywhere else.

0 Likes
Message 8 of 16

Frederick_Law
Mentor
Mentor

I've addin that replace command on the ribbon.

Don't know if I can find command in drop down menu.

 

Notebook is not an addin.

0 Likes
Message 9 of 16

Frederick_Law
Mentor
Mentor

Maybe possible to block the command:

EngNotebook-02.jpg

Message 10 of 16

pcrawley
Advisor
Advisor

Which version of Inventor are you running?

 

Nb.dll is responsible for Engineers Notebook.  Disabling it, or not loading it through the use of options via the appropriate xml configuration file leaves Inventor effectively unusable.  @TGibson7A8HD - I've sent you a pm on the subject.

 

Blocking it looks like an option (Event Watcher is only installed with the developer tools). @Frederick_Law Have you tried it?  It's a feature of Inventor I can definately live without.

 

Have you identified what sequence of events lead up to "It prompts itself open all the time and crashes my system"?  It would be great to find a repeatable sequence of events the developers could block or at least fix the crash.

 

A few released back, Engineers Notebook was very close on the menus to something like "New Sketch" and I was forever creating unwanted notes - but it's certainly much harder to accidentally launch in 2023 or 2024.

Peter
Message 11 of 16

Frederick_Law
Mentor
Mentor

@pcrawley wrote:

 

Blocking it looks like an option (Event Watcher is only installed with the developer tools). @Frederick_Law Have you tried it?  It's a feature of Inventor I can definately live without.

 


Might need to catch OnActivateCommand event and cancel the command.

I was trying to replace it with another.

 

I don't understand how it can activate "accidentally".

Someone need to right click to bring the menu up and press C twice then Enter.

 

0 Likes
Message 12 of 16

Frederick_Law
Mentor
Mentor

I changes the Shortcut, it won't respond to it:

EngNotebook-03.jpg

0 Likes
Message 13 of 16

Frederick_Law
Mentor
Mentor

Oh $hit, see if this works:

 

 

 

Sub Main()
Dim controlDefs As ControlDefinitions
Dim IVEngVNotebookDef As ControlDefinition

controlDefs = ThisApplication.CommandManager.ControlDefinitions
For Each controlDef In ThisApplication.CommandManager.ControlDefinitions
	If (controlDef.InternalName = "NotebookCreateNoteCtxCmd") Then
		IVEngVNotebookDef = controlDef
		Logger.Info("Found!")
		Logger.Info(controlDef.DisplayName)
		Logger.Info(controlDef.InternalName)
		IVEngVNotebookDef.OverrideShortcut = "Disabled"
		IVEngVNotebookDef.Enabled = False
	End If
Next
End Sub

 

 

 

 

EngNotebook-04.jpg

Message 14 of 16

Frederick_Law
Mentor
Mentor

There are a few more related commands to disable:

NotebookAlignLeftCmd
NotebookAlignRightCmd
NotebookArrangeNotesPopupCmd
NotebookArrowCmd
NotebookArrowReverseCtxCmd
NotebookBoldCmd
NotebookBulletsCmd
NotebookCenterCmd
NotebookCreateNoteCtxCmd
NotebookCustomizeCmd
NotebookDefineNewNoteFolderCtxCmd
NotebookDisplayNoteCtxCmd
NotebookFinishNotebookCmd
NotebookFontCmd
NotebookFontSizeCmd
NotebookInsertCommentCmd
NotebookInsertFolderCmd
NotebookInsertNewObjectCmd
NotebookInsertViewCmd
NotebookItalicCmd
NotebookNextNoteCmd
NotebookPreviousNoteCmd
NotebookRestoreCamerasCmd
NotebookShowInstanceNotesCtxCmd
NotebookTextColorCmdImage
NotebookUnderlineCmd
NotebookViewFreezeCmd
Message 15 of 16

TGibson7A8HD
Enthusiast
Enthusiast

I am using 2021,

 I do use a lot of key binds, so my guess is if the mouse drifts over to the tree and I hit C, it prompts the switch to the ENG NB. For some reason that jumps the resources being used on the computer when it gets prompted.  Sometimes for constraint, sometimes for copy. 

Im not exactly sure when and where its happening, but my ENG NB opens up a lot when I'm trying to do something else and the aforementioned issue is caused. 

0 Likes
Message 16 of 16

Frederick_Law
Mentor
Mentor

BTW

Export setting won't save the "Notebook Disable".