Search found 15 matches
- Fri Mar 07, 2025 1:56 pm
- Forum: General Discussion
- Topic: Paste text from clipboard
- Replies: 9
- Views: 16946
Re: Paste text from clipboard
I'm using the method suggested here: GetClipBoard>result Wait>0.5 Send>result This works "most" of the time however there have been a few times it didnt copy correctly or something and actually sent the word "result" to the intended target. Is there a way to check the clipboard and if theres nothing...
- Thu Jan 30, 2025 5:23 pm
- Forum: Beginners
- Topic: Paste into website page
- Replies: 3
- Views: 10296
Re: Paste into website page
Have you tried
[snippet=]
GetClipBoard>result
Send>result
[/snippet]
I found the topics here:
https://www.mjtnet.com/manuals/b/v15/in ... ontext=950
viewtopic.php?t=6176
[snippet=]
GetClipBoard>result
Send>result
[/snippet]
I found the topics here:
https://www.mjtnet.com/manuals/b/v15/in ... ontext=950
viewtopic.php?t=6176
- Thu Jan 30, 2025 4:49 pm
- Forum: Beginners
- Topic: Help with adding/subtracting numbers
- Replies: 1
- Views: 6317
Help with adding/subtracting numbers
I have to log in to multiple site (same sites every day) and enter data from csv files. It's a lot of copy/paste, but these annoying math "captchas" really slow the process down. If I could find a way to scrap the numbers and have MS input the sum into the field, then I could automate the entire pro...
- Thu Jan 30, 2025 4:28 pm
- Forum: Beginners
- Topic: Help with Dates
- Replies: 3
- Views: 1944
Re: Help with Dates
Thank you!!! This worked perfectly! Have you considered just using "specific dates/times" at in the scheduler? (Run When). That seems like the simplest option (Added in Version 14.0.2 31/01/2013) Alternatively, set it to run every day and let the script check the dates and exit if the dates don't ma...
- Mon Jan 06, 2025 7:23 pm
- Forum: Beginners
- Topic: Help with Dates
- Replies: 3
- Views: 1944
Re: Help with Dates
thank you! I will give this a try.
- Sat Jan 04, 2025 9:28 pm
- Forum: Beginners
- Topic: Help with Dates
- Replies: 3
- Views: 1944
Help with Dates
I found this in the help section [snippet=]//get today's date GetDate>today //Add 5 days to it DateAdd>today,D,5,new_date //get the bits DatePart>new_date,D,day_part DatePart>new_date,M,month_part DatePart>new_date,Y,year_part //year_part is 4 digits, so we want only last 2 MidStr>year_part,3,2,year...
- Tue Oct 29, 2024 5:39 pm
- Forum: Technical / Scripting
- Topic: Selecting File # According to Day of month
- Replies: 2
- Views: 3153
Re: Selecting File # According to Day of month
I tried this, but Its not working //Get the date GetDate>TheDate //Separate out all the parts Separate>TheDate,/,DateParts //Get the mm,dd, and yyyy Let>dd=DateParts_1 Let>DateString=%dd% //Set the path to your file Let>FilePath=C:\receipts\%DateString%.jpg * Yes! Im in over my head. My brain is not...
- Tue Oct 29, 2024 5:34 pm
- Forum: Technical / Scripting
- Topic: Selecting File # According to Day of month
- Replies: 2
- Views: 3153
Selecting File # According to Day of month
Non-techie here, learning as I go.
1) My files are in C:/Receipts/
2) Each file is numbered 1-31
I need ms to go into the folder, select the numbered file according to todays date and upload it to my main backup. Can anyone show me what that would look like? Please and Thank you
1) My files are in C:/Receipts/
2) Each file is numbered 1-31
I need ms to go into the folder, select the numbered file according to todays date and upload it to my main backup. Can anyone show me what that would look like? Please and Thank you
- Mon Aug 21, 2023 7:57 pm
- Forum: Technical / Scripting
- Topic: select todays dated image
- Replies: 3
- Views: 8893
Re: select todays dated image
thanks, Ill work on this! Appreciate the reply!
- Mon Aug 21, 2023 6:55 pm
- Forum: Technical / Scripting
- Topic: Select Random image from Computer Folder to upload to Social Media
- Replies: 6
- Views: 10616
Re: Select Random image from Computer Folder to upload to Social Media
Accomplished with Python.
Thanks
Thanks
- Mon Aug 21, 2023 6:54 pm
- Forum: Technical / Scripting
- Topic: select todays dated image
- Replies: 3
- Views: 8893
select todays dated image
My friend has a hair salon website where she wants to upload an image to the gallery each day automatically from a folder of dated hair style images. https://silverscissorsfamilysalon.com/silver-scissors-gallery/ The images are located in a folder on the computer. Each image is labeled with the date...
- Sun Jul 23, 2023 6:31 pm
- Forum: Technical / Scripting
- Topic: Select Random image from Computer Folder to upload to Social Media
- Replies: 6
- Views: 10616
- Sun Jul 23, 2023 6:31 pm
- Forum: Technical / Scripting
- Topic: Select Random image from Computer Folder to upload to Social Media
- Replies: 6
- Views: 10616
Re: Select Random image from Computer Folder to upload to Social Media
Thank you Dorian for such a prompt reply. I'm failing to understand how using the code examples will "select" the image. I'm using image rec to select the "upload now" or "select image" buttons, but then after that - using the examples given - it gives me a message of how many are in that given fold...
- Sun Jul 23, 2023 6:05 pm
- Forum: Technical / Scripting
- Topic: Select Random image from Computer Folder to upload to Social Media
- Replies: 6
- Views: 10616
Re: Select Random image from Computer Folder to upload to Social Media
Dorian, Thank you for your extremely prompt reply! I am not understanding how this "selects" one of the random images to upload. It pops up a message that tells me how many are available, and another message giving me the location of one of the random images from the folder, but I need it to select ...
- Sun Jul 23, 2023 5:17 pm
- Forum: Technical / Scripting
- Topic: Select Random image from Computer Folder to upload to Social Media
- Replies: 6
- Views: 10616
Select Random image from Computer Folder to upload to Social Media
I'm wanting to automate some of my daily image uploads. Each day I try to find time to upload various photos to my social media, but its time consuming. It's my way of sharing the things in my life that matter to me, and to keep my accounts active. I can not figure out how to do this in MS. I've sea...