Search found 30 matches

by kunkel321
Sun Apr 12, 2020 11:55 pm
Forum: General Discussion
Topic: Assign test back to clipboard?
Replies: 4
Views: 8077

Re: Assign test back to clipboard?

To set new clipboard content use Put Text action That makes sense. Thanks Oleg. Hey can you (or somebody) please test this script? I think I might not be using Put Text correctly(?) Assign a hotkey for a trigger. Then before running the Task, makes sure some original text is on your Windows clipboa...
by kunkel321
Sun Apr 12, 2020 1:40 am
Forum: General Discussion
Topic: Assign test back to clipboard?
Replies: 4
Views: 8077

Assign test back to clipboard?

It looks like I can assign the text contents to a variable by way of Set Variable OldClipBrd with {ClipBoardContent}.
But then later can I put that text back on the clipboard?
I tried it like in the img, but it didn't seem to work.

Image
by kunkel321
Tue Apr 07, 2020 1:42 am
Forum: General Discussion
Topic: Local vs. Global Variables?
Replies: 1
Views: 4448

Local vs. Global Variables?

How do I know if a variable is global or local? For example in my "Logic and RegEx Sample" post https://robotask.com/forum/viewtopic.php?f=1&t=2737 those are all "local" variables, correct? They are not ones from the list of "RoboTask Variables" this in Menu>Options...
by kunkel321
Mon Apr 06, 2020 7:37 pm
Forum: General Discussion
Topic: VBS question: Get Outlook item property?
Replies: 2
Views: 5375

Re: VBS question: Get Outlook item property?

Ah yes... I see now that the code is VBA. That's okay. No worries. Thanks for the reply.
by kunkel321
Mon Apr 06, 2020 6:03 pm
Forum: General Discussion
Topic: VBS question: Get Outlook item property?
Replies: 2
Views: 5375

VBS question: Get Outlook item property?

I might be "biting off more than I can chew" with this project, but I'd like to determine the sender of an email. I guess this is probably possible with VBScript(??) I'm using an installed version of Outlook. It is Outlook Version 1920 and it syncs with an Exchange Server at the public sch...
by kunkel321
Mon Apr 06, 2020 3:22 pm
Forum: General Discussion
Topic: STR Replace `n
Replies: 2
Views: 4889

Re: STR Replace `n

Ah yes! Now that I think of it, the corresponding character in Excel is CHAR(13), so this makes sense. Thanks Oleg!

EDIT: Strange how is takes two steps. Chr(13) to Chr(10) to "|." A bit kludgy, but that's okay--It seems to work fine. :geek:
by kunkel321
Mon Apr 06, 2020 3:19 pm
Forum: General Discussion
Topic: Refresh bug?
Replies: 3
Views: 6761

Re: Refresh bug?

Yes, fixed. Many thanks!
by kunkel321
Mon Apr 06, 2020 1:43 am
Forum: General Discussion
Topic: STR Replace `n
Replies: 2
Views: 4889

STR Replace `n

Hi There, I'd like to find-and-replace a "new line character" in a string of text. I think that's what you call it? For example given this Fib Wap Ding Bar I'd like to find `n and replace it with | and the result would be: Fib|Wap|Ding|Bar I tried `n \n <New Line> <Enter> None of them work.
by kunkel321
Sat Apr 04, 2020 11:37 pm
Forum: General Discussion
Topic: Refresh bug?
Replies: 3
Views: 6761

Refresh bug?

Maybe a bug, or maybe I'm doing something wrong... If I have a Task with so many steps that they do not all fit vertically in the window, then I have to scroll up and down to access the top and bottom steps. This is normal. However I think that whenever the list "refreshes" (redraws?) it a...
by kunkel321
Wed Apr 01, 2020 4:34 pm
Forum: General Discussion
Topic: Logic Help Needed
Replies: 2
Views: 5119

Re: Logic Help Needed

Thanks for the reply. I think I figured it out... I didn't have curly bracks {} on the First Operand of my IF statements. Fixing that took care of it. I did go ahead and change it so my IF statements are looking at the {found} variable though. Below is the script, with that one change. Some of the d...