2

I want to dig into what this cell is doing:

i button cell

It's clearly an attached cell but I can't get at it. Here's what I've tried:

Cells (pretty obviously not gonna work, but worth the try

Dynamic[
 cellsAll =
  Nest[
   Cases[
     Union[#,
      Flatten@Map[FrontEndExecute@*FrontEnd`ObjectChildren, #]
      ],
     _CellObject
     ] &,
   FrontEndExecute@FrontEnd`ObjectChildren[$FrontEnd],
   15
   ];
 Select[cellsAll,
   ParentNotebook[#] =!= $Failed &&

     FrontEndExecute@FrontEnd`AttachedCellParent[#] =!= $Failed &
   ] // Length,
 UpdateInterval -> 5,
 TrackedSymbols :> {}
 ]

Obviously I waited for a round of the i button to pop up. Still nothing.

So... is there any way to get at these? (if you didn't get it when it was created)

b3m2a1
  • 46,870
  • 3
  • 92
  • 239

1 Answers1

3

That drop down menu is not an AttachedCell.

ihojnicki
  • 3,026
  • 1
  • 16
  • 11