# parameterChanged - attachment

**URL:** https://forum.juce.com/t/parameterchanged-attachment/55821
**Category:** General JUCE discussion
**Created:** [April 17, 2023, 1:27pm UTC](https://forum.juce.com/t/parameterchanged-attachment/55821 "2023-04-17T13:27:47Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Ayra](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.juce.com/ayra/32/5775_2.png) [@Ayra](https://forum.juce.com/u/Ayra)
#### Post date: [April 17, 2023, 1:27pm UTC](https://forum.juce.com/t/parameterchanged-attachment/55821/1 "2023-04-17T13:27:47Z")

</div>

I’m working with attachments and I notice that when I connect a slider to an AudioParameter functions inside “AudioProcessorValueTreeState::Listener” are not called… is it right?

---

<div class="post-metadata">

### Author: ![daniel](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.juce.com/daniel/32/790_2.png) [@daniel](https://forum.juce.com/u/daniel)
#### Post date: [April 17, 2023, 2:29pm UTC](https://forum.juce.com/t/parameterchanged-attachment/55821/2 "2023-04-17T14:29:10Z")

</div>

ListenerLists will call ALL added Listeners, so adding an additional Listener or Attachment (which is just a ParameterListener and SliderListener) will not block the execution of the SliderAttachment. There must be something else going on, but impossible to guess with that little information.

(\*) replace Slider with Button/ComboBox/… it works the same for all Attachment classes

---

<div class="post-metadata">

### Author: ![Ayra](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.juce.com/ayra/32/5775_2.png) [@Ayra](https://forum.juce.com/u/Ayra)
#### Post date: [April 18, 2023, 12:34pm UTC](https://forum.juce.com/t/parameterchanged-attachment/55821/3 "2023-04-18T12:34:40Z")

</div>

You’re right… It was my mistake on other lines of code… The tiredness… 🙏 Thank you for help… ❤🙏
