Недавний контент cesario678

  1. C

    How to hide options in the bot interface? (doubts)

    I want to do the following with input options would like the following: when I start my maker project, I have input settings. Let's say I have languages — English, Portuguese, and French — in a dropdown. Let's say I select the Portuguese option in this dropdown; automatically, other options...
  2. C

    How to hide options in the bot interface? (doubts)

    This HTML code that creates something which shows some options and hides others when certain choices are made — what would that code look like? Can you give me an idea of how it would work, and where I would place it?
  3. C

    How to hide options in the bot interface? (doubts)

    I would like to include some options, such as health, cinema, and prosperity. When one of them is selected, the others should disappear and specific options for the selected category should appear. When switching to another category, all fields should disappear and new options for the chosen...
  4. C

    How to resolve table errors after an update? (HELP)

    and it works. The question is: when initializing the table, what do I put there? Nothing? And how do I save the table at the end of the bot's execution? Because I initialize the table, ask it to read the data, and only delete part of the table's data at the end, after it has done everything I...
  5. C

    How to resolve table errors after an update? (HELP)

    I started noticing in all my bots that were working normally that, after updating, they began showing errors that weren't there before. Now my table doesn't reload, and the data disappears from the table. I will create a video demonstrating this. As you can see, no matter what I do, my data...
  6. C

    How to select multiple images at once?

    I have a folder with more than 2,000 images, and my bot always selects between 150 and 200 of these images and moves each one of them into a folder. However, it does this one by one. Is there any way for it to pick 200 random images and move them all to that folder at once?
  7. C

    Download multiple images and videos at the same time in the same bot? (Help)

    I have a script that downloads images and videos, but before downloading them, it reads an article of mine and downloads based on what each paragraph says. I’d like an idea of how I can modify it so that instead of downloading one by one, it downloads multiple at once. I thought about running...
  8. C

    How do I delete everything to the right (help)?

    I understand, and thank you for the help. But it also doesn't solve the issue, because the data that needs to be deleted will always be in different locations, and even if I get the location of a specific point, it wouldn't work. I tried the "rise drag-and-drop" function, and it also didn’t work...
  9. C

    How do I delete everything to the right (help)?

    With C#, do you think I can achieve this? Since I'm a beginner, I'll ask Chat GPT for help
  10. C

    How do I delete everything to the right (help)?

    This is the CapCut website, and it’s not possible to do this there. Is there another way?
  11. C

    How do I delete everything to the right (help)?

    In the image I am going to send, there is a black cursor. Its XPath is //*[@id="TIMELINE_CURSOR_ID"]/div[@class='timeline-play-cursor-bd-rnlSbv'] or //*[@id="TIMELINE_CURSOR_ID"]. Both move this cursor. I would like to know how to create a function that deletes everything to the right of it...
  12. C

    How to download from a URL in JSON? Or others? (Help)

    I created a function with an API where it fetches multiple image URLs and stores them in JSON. Now I have doubts about how to download these URLs. Could someone help me? Remember that these image files are actually MP4 videos, and even when downloading them with the .mp4 extension, the file...
  13. C

    Error in GET method to fetch images (Help)

    curl -H "Authorization: SUA_CHAVE_API" \ "https://api.pexels.com/v1/search?query=termo_de_busca" This is for Pexels, but Freepik is identical. Only the URL changes, and neither works.
  14. C

    Error in GET method to fetch images (Help)

    Yes, I am in the process of learning, and I have already created some, but I am struggling with this one. I added it to the article above, and in the header, I did it just as it appears on the API website, and ChatGPT Pro suggested the same thing, yet it still doesn't work. Here is the header I...