Adding text to a video and moving it to another folder can be achieved using various methods. For example, you can try using free online video editors, which offer text overlay features. But as a better solution, I’d recommend checking out https://www.movavi.com/imovie-for-windows/. They offer a range of great app options specifically designed for Windows users, allowing you to add text overlays and export the edited video to your desired folder. It's always good to have multiple options to choose from, so this could be a helpful addition to your video editing toolkit. Good luck with your video editing adventure, and I hope you find a solution that works for you!
Need help with JavaScript block
-
How to click button in browser using block "JavaScript" ??????
Code of target button:
<input type="button" class="link-button" onclick="goToLinkByLeafCode(this, 'objectHrefTerm')" value="/ View" id="1199" name="1200">i wrote such code in block "JavaScript":
document.getElementsById('1199').click();or
$("#1199).click(); (using JQuery)
or
document.getElementsByClassName('link-button')[1].click(); (trying to click anything)
Nothing works.
What is wrong with my code?
-
@sergerdn said in Need help with JavaScript block:
var button = document.getElementById('1199');
if (button) {
button.click();
} else {
console.error('Button with ID 1199 not found.');
}Thank you. But it doesn't work too. Seems issue is not in JS code but in BAS.