A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
Is it possible to post BOTH a slide from the copied presentation and a slide from the presentation you are pasting into somewhere online (One Drive etc)? Real slides not images.
While this is not the real answer this macro should set all notes to black as a workaround for now.
Sub Notes_Black()
Dim osld As Slide
For Each osld In ActivePresentation.Slides
If osld.NotesPage.Shapes(2).Type = msoPlaceholder Then
If osld.NotesPage.Shapes(2).PlaceholderFormat.Type = 2 Then
osld.NotesPage.Shapes(2).TextFrame2.TextRange.Font.Fill.ForeColor.RGB = vbBlack
End If
End If
Next
End Sub