I am trying to create a macro using adc(2) but in the macro list Adc(0) shows, how do i get ADC(2) to select

I have attached the file in question
Flowcode4 for AVR
Moderator: Benj
Tutorial:
Example Starting from a new Flowchart using ANA3 and ANA5
1) Select ADC from inputs menu
2) Right click on newly created pot on panel, click connections (note in properties panel shows ADC(0) since this 1st ADC component that's what you will be using) from drop down list select ADC3, then done. Now Component ADC(0) is associated with ANA3 of microcontroller.
3) Again Select ADC from inputs menu, this will created another Pot on panel, so now you should have 2 pots. Right click on this 2nd pot on panel, click connections (note in properties panel shows ADC(1) since this 2nd created ADC component). From drop down list select ADC5, then done.
4) Drag component macro onto your flowchart, then double click it to bring its properties box up Select ADC(0), then ReadAsByte etc. At this stage you can create a new variable , or use an existing variable.
5) Drag another component macro onto your flowchart, then double click it to bring its properties box up Select ADC(1), then ReadAsByte etc. At this stage you can create a new variable , or use an existing variable.
Now you have 1st pot connected to ANA3 of microcontroller and 2nd pot connected to ANA5 of microcontroller.