Search found 1381 matches
- Thu Oct 27, 2005 11:34 am
- Forum: Beginners
- Topic: Auto sign on
- Replies: 7
- Views: 11313
- Thu Oct 27, 2005 11:32 am
- Forum: Beginners
- Topic: Clicking tag in web form
- Replies: 1
- Views: 4150
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...
- Thu Oct 27, 2005 7:43 am
- Forum: General Discussion
- Topic: Non-modal dialogs cause high CPU usage
- Replies: 2
- Views: 5223
- Wed Oct 26, 2005 9:25 pm
- Forum: Technical / Scripting
- Topic: Email Attachement
- Replies: 2
- Views: 4200
- Wed Oct 26, 2005 12:16 pm
- Forum: Technical / Scripting
- Topic: help with writing script for Abobe Premiere needed.
- Replies: 1
- Views: 3051
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...
- Wed Oct 26, 2005 12:10 pm
- Forum: Technical / Scripting
- Topic: Copy to clip board only whats between AAA and BBB
- Replies: 3
- Views: 5070
- Wed Oct 26, 2005 9:21 am
- Forum: Technical / Scripting
- Topic: Copy to clip board only whats between AAA and BBB
- Replies: 3
- Views: 5070
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...
- Mon Oct 24, 2005 8:33 am
- Forum: Technical / Scripting
- Topic: how to use flags
- Replies: 3
- Views: 4257
- Mon Oct 24, 2005 8:04 am
- Forum: Technical / Scripting
- Topic: how to use flags
- Replies: 3
- Views: 4257
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...
- Sat Oct 22, 2005 8:08 am
- Forum: General Discussion
- Topic: Info on INPUT_BROWSE system variable missing from Help File?
- Replies: 1
- Views: 4062
- Fri Oct 21, 2005 11:09 am
- Forum: Technical / Scripting
- Topic: MoveWindow / ResizeWindow - does not work on citrix ?
- Replies: 4
- Views: 6200
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...
- Fri Oct 21, 2005 8:45 am
- Forum: Technical / Scripting
- Topic: Encoding username and password in an ini file?
- Replies: 4
- Views: 5581
- Fri Oct 21, 2005 7:05 am
- Forum: Technical / Scripting
- Topic: Maximise IE window created in VB
- Replies: 1
- Views: 4978
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...
- Thu Oct 20, 2005 8:13 am
- Forum: Technical / Scripting
- Topic: MoveWindow / ResizeWindow - does not work on citrix ?
- Replies: 4
- Views: 6200
- Thu Oct 20, 2005 8:10 am
- Forum: Technical / Scripting
- Topic: Nested If> Loops
- Replies: 4
- Views: 7592
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...