Asset Grid - Item In Focus

That’s the solution I had in mind and it works quite well and easily. I bound the index of my asset flow to the scroll offset of the asset grid using the following custom script: Math.floor(INPUT / (300 + 15)) +1

  • 300 is the item width of the asset grid
  • 15 is the item spacing
  • +1 is because index starts at one
  • Math.floor() returns the lower integer of the division.

1 Like