Archive: August 2008

Get free publicity – help with a press release or case study

August 7, 2008 by Marcus Tettmar in General

We’re currently putting together a press release which will outline how different customers of our software are saving money through software automation. If you are interested in being featured please let me know. We’ll need a short quote and we will provide a link back to your site. We would need savings translated to monetary […]

Read more »

Extract Filename and Folder from Path

July 31, 2008 by Marcus Tettmar in Scripting

Here’s a quick way to extract just the filename from a full path: Let>file_path=C:\Program files\Skype\Phone\Skype.exe //get the file name on its own Separate>file_path,\,parts Let>exe_name=parts_%parts_count% //now get just the folder path MidStr>file_path,1,{length(%file_path%)-length(%exe_name%)},folder_only This uses Separate to explode the path into an array using the ‘\’ character as the delimiter. We’ve called the array “parts”. “parts_count” contains […]

Read more »

Quoting Quotes

July 24, 2008 by Marcus Tettmar in Scripting

VBScript and Complex Expressions use the ” (double quote) character to delimit strings. Native MacroScript code doesn’t need delimited strings. But if you need to use Complex Expressions or VBScript you need to remember that strings must be delimited in quotes. One implication of this is that if the string already has a ” character […]

Read more »

Using Variables and When to use Percent Symbols (%variable%)

July 4, 2008 by Marcus Tettmar in Scripting

By default in Macro Scheduler you do not have to do anything special to refer to a variable. The following will create a variable called Name: Let>Name=Freddy Name is now assigned the value of Freddy. Referring to Variables: The following will display a message box containing the word “Freddy”: MessageModal>Name Macro Scheduler knows that Name […]

Read more »

TrustWatch?

May 29, 2008 by Marcus Tettmar in General

Received an email today from a longstanding customer who is using Comcast as his ISP. Today he tried to access www.mjtnet.com and received this message: WARNING! This site is rated potentially unsafe by TrustWatch! You have been redirected to this page as a service of Comcast High-Speed Internet, which includes the Comcast Toolbar. TrustWatch, a […]

Read more »

Macro Scheduler 10.1.15 is 40 Times Faster!

May 23, 2008 by Marcus Tettmar in Announcements, Automation, Scripting

With the latest release (10.1.15) we worked on optimizing the way variables are stored internally and were able to dramatically improve performance. Dick Lockey did some tests and writes that the latest version is 40 times faster than earlier versions! If you’re working with scripts that create and process a large number of variables – […]

Read more »

In the News: Internal Efficiency Improves Customer Service

May 19, 2008 by Marcus Tettmar in General

Internal Efficiency Improves Customer Service"Initially the IT division was on a theoretical ‘25th floor’ and everyone was taking the stairs," says Garry Petzold, the chief IT officer at First State of Altus, Okla. "To better serve our customer base, while also meeting the needs of our bank’s technology infrastructure, I started researching solutions that would […]

Read more »

Attaching to an existing Internet Explorer instance

May 7, 2008 by Marcus Tettmar in Automation, Scripting

There are various scripts on the forums demonstrating how to automate Internet Explorer via VBScript and IE’s Document Object Model. Such as this one: Automate web forms with IE These require that the script creates the Internet Explorer instance via a CreateObject call. The script then has access to the IE object and can access […]

Read more »

Great Marketing Vid

May 1, 2008 by Marcus Tettmar in General

I saw a link to this great video on a forum this morning. Great marketing. Not unique – remember the Honda advert? – but still very impressive and it is clearly working because I’m linking to it here: http://www.clustarack.co.uk/ There’s also a great “behind the scenes” video here, explaining how they did it: http://www.clustarack.co.uk/video.html Just […]

Read more »