Help!

I'mnoob

Member
Hi, I'm trying to automate some text copy paste!

I need some help in figuring out which actions can help to do this!

I want the macrodroide to
1.) Paste (custom text) with UI interaction again and again for example my text is something "todo xyz".

The "xyz" should be changed the very next time it repeat the process.

Also "xyz" will be from my clipboard.

For example let's say my clipboard content is:
Haisidh, aodhsk, aodjdks, skdjdk, woejdn, eodidy, sodhdu, woeirn, rodixu, ebbexi These are 10 random letters.

So macrodroide should paste the text "todo Haisidh" then again "todo aodhsk" until all the text from clipboard gets finished.


Let me know if you can help to build this!
 

MacroDroidDev

Administrator
Staff member
Use the text manipulation option with split to array option and then split on , character. This will give you the elements within an array and then you can use the iterate dictionary/array action to loop over each item within the array and do what you want with it.
 
Top