> For the complete documentation index, see [llms.txt](https://frangiordano96.gitbook.io/ae-expressions/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://frangiordano96.gitbook.io/ae-expressions/quick-tips/after-effects-dot-display.md).

# After Effects - Dot Display

Full Tutorial:

{% embed url="<https://www.youtube.com/watch?v=l4gSA8joy1c>" %}

Code for the scale of the Dots:

```javascript
var sample = thisComp.layer("MAIN ANIMATION").sampleImage(position, [1, 1]);
var sampleHSL = rgbToHsl(sample);

var newScale = linear(sampleHSL[2], 0, 1, 0, 100);

[newScale, newScale];
```
