Search found 438 matches

by adroege
Mon Oct 31, 2011 7:36 pm
Forum: Technical / Scripting
Topic: Suggestion / Request
Replies: 6
Views: 7096

Very clever with the $1 syntax -- however I could find no mention
of this in my help file!
by adroege
Mon Oct 31, 2011 6:48 pm
Forum: Technical / Scripting
Topic: Help with stalled sctript
Replies: 1
Views: 3029

If>cs=22394858,Done Else Press ALT Send>R Release ALT Wait>sw Goto>waitforupdate EndIf The problem may lie in mixing the "If" syntax Try changing the "If" to this: If>cs=22394858 Goto>Done Else Press ALT Send>R Release ALT Wait>sw Goto>waitforupdate EndIf
by adroege
Mon Oct 31, 2011 5:55 pm
Forum: Technical / Scripting
Topic: Suggestion / Request
Replies: 6
Views: 7096

Here is a method to study.

Code: Select all

//replace only first instance of pattern in string

Let>text=The apple is red. The sky is blue.
Let>pattern=....(is)....
RegEx>pattern,text,0,matches,num,0
StringReplace>matches_1,is,was,r2
Let>pattern=%matches_1%
RegEx>pattern,text,0,matches,num,1,r2,r
MessageModal>r
by adroege
Fri Oct 14, 2011 6:59 pm
Forum: Technical / Scripting
Topic: FTP (v12.1.10) with Windows Firewall
Replies: 8
Views: 10280

mtettmar,

Can you confirm this behavior? Should I also be worried that V12 FTP behavior is not as good as V10?


Thanks!
by adroege
Fri Oct 14, 2011 6:56 pm
Forum: Technical / Scripting
Topic: Find a value within multiple variables?
Replies: 1
Views: 3268

So for example: B23 is Monday Morning in Studio 1 B24 is Monday Morning in Studio 2 B25 is Monday Morning in Studio 3 B26 is Monday Morning in Studio 4 B27 is Monday Morning in Studio 5 etc down to B48 is Monday Morning in PP1 In the cells B23:B48 a persons name will appear but that name can only a...
by adroege
Fri Oct 14, 2011 6:39 pm
Forum: Technical / Scripting
Topic: Has Mail Changed
Replies: 4
Views: 5627

Try following this test procedure:

Telnet to Port 25 to Test SMTP Communication
http://support.microsoft.com/kb/153119
by adroege
Fri Oct 14, 2011 6:33 pm
Forum: Technical / Scripting
Topic: Find Higest Number on Webpage
Replies: 3
Views: 4652

Try using HTTPRequest and parsing the resulting HTML. When this is
working it is usually very reliable.
by adroege
Thu Sep 22, 2011 1:17 pm
Forum: Beginners
Topic: Got to Text
Replies: 8
Views: 11146

From your screen shot it looks like you are running a terminal emulator program which is connected to a mainframe application. Many terminal emulator programs have the ability to capture the text which is displayed. Then macro scheduler could simply read this file and parse the ASCII text. Other ter...
by adroege
Fri Sep 09, 2011 2:27 pm
Forum: Beginners
Topic: Random Button Selection
Replies: 2
Views: 5131

Try this:

Code: Select all

Random>10,rand
If>rand=0
  Add>rand,1
Endif
PushButton>LCS,Camera %rand%
by adroege
Fri Aug 19, 2011 7:12 pm
Forum: Technical / Scripting
Topic: How to transform a long path to a URL path
Replies: 2
Views: 3897

Take a look at this link: http://www.permadi.com/tutorial/urlEncoding/ Then try this: VBStart VBEND Let>LongPath=H:\TEMP\New Folder\tes\1 2 3\xxx\New File.txt StringReplace>LongPath,\,/,LongPath Length>LongPath,len MidStr>LongPath,3,len,strSub MidStr>LongPath,1,2,drive VBEval>escape("%strSub%"),escS...
by adroege
Wed Aug 17, 2011 11:17 am
Forum: Beginners
Topic: About HTTPRequest command
Replies: 5
Views: 15949

Thanks. That should work but I'll have to wait for the system guys to actually install something whether its perl net or expect and TCL. I'm not allowed to do it myself. Can anyone think of a more direct way?
Thanks for the advice


I don't understand what is your problem?
by adroege
Tue Aug 16, 2011 8:29 pm
Forum: Beginners
Topic: Entering a file name in an Export window
Replies: 2
Views: 7462

SetFocus>Export* Let>SK_DELAY=10 What I might suggest is: on the SetFocus command try to use more of the window title and eliminate the asterisk (if possible) this avoids the issue of multiple windows matching and the focus being given to the wrong one. Also you may need to experiment with the WF_T...
by adroege
Fri Aug 12, 2011 1:53 am
Forum: Technical / Scripting
Topic: Come for the Buttons, Stay for the Scripts?
Replies: 2
Views: 3530

Yes, I believe Macro Scheduler could solve your problem. However it's not magic. Code needs to be written. Macro Scheduler is easier to learn then most other programming languages - however you are still programming if you are creating something non-trivial.
by adroege
Fri Aug 12, 2011 1:47 am
Forum: Technical / Scripting
Topic: text in a varable to a number?
Replies: 2
Views: 3655

Try the length command
by adroege
Fri Aug 12, 2011 1:44 am
Forum: Technical / Scripting
Topic: Help with If/else regarding text in a box.
Replies: 4
Views: 5298

convet how many characters are in stored
This doesn't sound useful......

stored=Bob

how many characters = 3 Is this what you want?

try the Length command
cron
Sign up to our newsletter for free automation tips, tricks & discounts