Search found 1381 matches

by support
Thu Oct 27, 2005 11:34 am
Forum: Beginners
Topic: Auto sign on
Replies: 7
Views: 10683

Sounds more like the workstation has locked. There's no way around the security limitations of Windows I'm afraid.
by support
Thu Oct 27, 2005 11:32 am
Forum: Beginners
Topic: Clicking tag in web form
Replies: 1
Views: 3962

Hi, Building VBscript code to cause a tag to be "clicked" is not trivial at all and is fraught with difficulties and limitations. That's why we built WebRecorder which handles it at a lower level. The DLL that comes with WebRecorder has ClickTag function which will do what you need. http://www.mjtne...
by support
Thu Oct 27, 2005 7:43 am
Forum: General Discussion
Topic: Non-modal dialogs cause high CPU usage
Replies: 2
Views: 5029

Yes, surprise surprise, a tight loop uses CPU cycles. I'm sure I've said this many times on this forum. Force each iteration of a loop to yield to the processor by using a small Wait.
by support
Wed Oct 26, 2005 9:25 pm
Forum: Technical / Scripting
Topic: Email Attachement
Replies: 2
Views: 3881

You have a space before the path, after Body. You also have the wrong type of slashes (not sure it matters). Your SMTP line should be:

SMTPSendMail>recipients,mail.mymailserver.com,me,myname,subject,body,C:\Documents and Settings\User\Desktop\new_veh_%the_month%%the_day%%the_year%.csv
by support
Wed Oct 26, 2005 12:16 pm
Forum: Technical / Scripting
Topic: help with writing script for Abobe Premiere needed.
Replies: 1
Views: 2914

Hi, It may be easy for someone with a copy of Adobe Premiere. I'm afraid we don't have it here so I won't be able to help personally. But hopefully someone else out there has a copy and can give you some help. You may actually find you are the best person to do this as you understand the process and...
by support
Wed Oct 26, 2005 12:10 pm
Forum: Technical / Scripting
Topic: Copy to clip board only whats between AAA and BBB
Replies: 3
Views: 4730

Yes, I did understand you and my example works. The code I provided shows how to extract items between two placeholders. Please take another look at my example. You can use that code to achieve your goal.
by support
Wed Oct 26, 2005 9:21 am
Forum: Technical / Scripting
Topic: Copy to clip board only whats between AAA and BBB
Replies: 3
Views: 4730

I think the easiest way to do it is the other way around - think about this differently. It will be easier to make Macro Scheduler copy ALL the text but THEN remove just the bit you need. The following code will remove each item from between the AAA/BBB tags: Let>STARTTAG=AAA Let>ENDTAG=BBB //some t...
by support
Mon Oct 24, 2005 8:33 am
Forum: Technical / Scripting
Topic: how to use flags
Replies: 3
Views: 3987

BTW if running dos commands you will usually want the script to wait until the command completes. To do this add the following prior to the Run command:

Let>RP_WAIT=1

e.g.

Let>RP_WAIT=1
Run>cmd.exe /c dir >> dirlist.txt
by support
Mon Oct 24, 2005 8:04 am
Forum: Technical / Scripting
Topic: how to use flags
Replies: 3
Views: 3987

Hi, In exactly the same way as you would normally. Just use the Run command: Run>command /flag If running DOS commands it is usually best to run the command processor: Run>cmd.exe /c dir /p In Windows95/98 replace cmd.exe with command.com /c = Carries out the command specified by string and then ter...
by support
Sat Oct 22, 2005 8:08 am
Forum: General Discussion
Topic: Info on INPUT_BROWSE system variable missing from Help File?
Replies: 1
Views: 3942

That is correct. It should have been added to the help file of course. Will ensure it is added.
by support
Fri Oct 21, 2005 11:09 am
Forum: Technical / Scripting
Topic: MoveWindow / ResizeWindow - does not work on citrix ?
Replies: 4
Views: 5961

Macro Scheduler uses standard Windows API calls. It can only automate native Windows applications. So it needs to run natively to the system you want to automate. It therefore needs to be installed on the remote machine you are accessing via Citrix. Your Citrix client will let you see a remote sessi...
by support
Fri Oct 21, 2005 8:45 am
Forum: Technical / Scripting
Topic: Encoding username and password in an ini file?
Replies: 4
Views: 5273

The online version of the manual has been updated:

http://www.mjtnet.com/support.htm
by support
Fri Oct 21, 2005 7:05 am
Forum: Technical / Scripting
Topic: Maximise IE window created in VB
Replies: 1
Views: 4794

Since this method of automating IE doesn't even need to have IE visible I'm not sure why it is important to have it maximised. This method of automating IE works beneath the user interface and works directly with IE's scripting interface. I don't know of a way to maximise it per se but you can put I...
by support
Thu Oct 20, 2005 8:13 am
Forum: Technical / Scripting
Topic: MoveWindow / ResizeWindow - does not work on citrix ?
Replies: 4
Views: 5961

Instead of running Macro Scheduler against the Citrix client interface can't you run Macro Scheduler natively within the remote computer? Then it will be working natively to Windows within the machine you are connecting to remotely. Then there should be no problem.
by support
Thu Oct 20, 2005 8:10 am
Forum: Technical / Scripting
Topic: Nested If> Loops
Replies: 4
Views: 7179

JRL is correct. Your script is invalid as there are not enough EndIfs. Each If must have an Endif. Perhaps you meant: Remark>Pare MIT line down to fit 9 chars If>MITCNTLG=4 Let>MITLN=00090%MITCNT%%SPRFILE% Else If>MITCNTLG=3 Let>MITLN=000900%MITCNT%%SPRFILE% Else If>MITCNTLG=2 Let>MITLN=0009000%MITC...
Sign up to our newsletter for free automation tips, tricks & discounts