How to change "include in" in a bunch of methods?

Hi guys!

is there a way to change “include in” in a bunch of methods in “one click”, and not one by one?

Alex

Replace All ?

You should be able to select them all and then go to the advanced tab on the inspector to make that change. If not, it’s been broken recently and a bug report should be filed.

Otherwise you can do it in a text project with a text editor and search and replace.

1 Like

well, i removed all from xml, but it still shows active on xojo…

and the html code…

maybe older methods don’t have this set…

so a had to replace all

image

to
(TargetConsole and (Target32Bit or Target64Bit)) or (TargetWeb and (Target32Bit or Target64Bit)) or (TargetDesktop and (Target32Bit or Target64Bit))

and worked

another issue after i did this…

the “alemac_delay” method is there, and it’s enabled for iOS…

image

why i’m getting this error?

Make sure the container that method is in (the class or module) is also marked as available on iOS.

1 Like

that’s it. thanks!