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!
hello need a little help :)
-
Hi, So im using 2 threads and whenever I use CLIPBOARD its a global and something things gets mixed up with 2 threads
they copy each other and the result is wrong
how to do COPY TEXT / CLIPBOARD for individual thread, not GLOBAL?
-
Please do anybody have solution to this? It will be very helpful... I need it badly.
-
On set clipboard and get clipboard it says "Clipboard is global to whole system and should be locked in multithreaded mode."
How can it locked in multithreaded mode?
Will this solve the issue? and how do i lock it in multithreaded mode? -
how do i lock it in multi-threaded mode, so it doesn't mix-up copied contents with other threads?
-
@bobbyonforum said in hello need a little help :):
how do i lock it in multi-threaded mode, so it doesn't mix-up copied contents with other threads?
Use a global variable
test script
-
@Fox does this locking mode works with different BAS running? say I lock it on 1 BAS program using CLIPBOARD and I lock it on another BAS PROGRAM using clipboard, do the DATA get mixed? cuz I noticed when using CLIPBOARD in BAS its the entire COMPUTER CLIPBOARD. so I wonder if this will mix things up when using clipboard with 2 BAS program
does GLOBAL variable works for ALL BAS PROGRAMS or just 1 BAS program?
-
@stephenperry18 said in hello need a little help :):
@Fox does this locking mode works with different BAS running? say I lock it on 1 BAS program using CLIPBOARD and I lock it on another BAS PROGRAM using clipboard, do the DATA get mixed? cuz I noticed when using CLIPBOARD in BAS its the entire COMPUTER CLIPBOARD. so I wonder if this will mix things up when using clipboard with 2 BAS program
does GLOBAL variable works for ALL BAS PROGRAMS or just 1 BAS program?
The global variable is of course limited to a single BAS script
-
@stephenperry18 said in hello need a little help :):
@Fox ohh okay, so if I schedule 2 BAS script. the clipboard data will get mix. :( is there a solution for this? Im using clipboard for posting Emoticons
You can use a shared database or text file
-
@Fox ahhh i think thats the best solution, im getting the content from a big spintax template so I guess i just need to spin 1000 data from it and store it on textfiles.
thank you
ohh one more, I thought emoricons only work with COPY PASTE? does it work with TYPE TEXT?
ohh confirmed. posting emoticons will only work with COPY PASTE using clipboard in BAS. but not TYPE TEXT :(