How to make changes inside a tool for example adobe

Hello, i have a task for which i should be able to make changes in adobe pro. The changes requires me to click on certain tabs in adobe pro document. Once the clicks’ are determined i want to make a loop so that each file in the folder can do the same cahnges

Buddy @Saad_rehman
1.Get the file name from folder like this buddy
out_filepath = Directory.GetFiles(“yourfolderpath”,“*.pdf”)
this would give use the array of strings ,where string is the file path
2. once after getting file path arry use a for each loop to iterate through each value in the array and open the application to click on some menu options
3. change the type argument of for each loop with string and pass the input as out_filepath to the for each loop
4. inside the for each loop use a start process activity and pass input as item to the start process ( the value from the for each loop)
5. this activity willopen the file with application open live on screen and you can use any activity like click and type into activity from here on to any tabs you want buddy @Saad_rehman
Thats all buddy you are done
Kindly try this and let know buddy
Cheers @Saad_rehman