September 4, 2014

August 8, 2014

Detect Which Web Page IE Is On – Keep It Simple

Filed under: Automation, Scripting — Marcus Tettmar @ 9:43 am

Today we had two different support requests asking how to have a Macro Scheduler macro determine which page IE is on.

One person was asking about using Image Recognition for that. You could also use the IE functions to examine the HTML or look for the existence of a specific HTML element.

You could do one of those, sure, but I think that’s over complicating things.

My motto is “keep things simple”.

IE’s Window Title adopts the page title of the web page it is displaying. IE also shows the URL in the address bar. So why not just look at one of those. Like this:

//Two simple methods to see which page IE is at.

//Method One - Just look at the window title
IfWindowOpen>Bing - Internet Explorer
  //Bing is open - do this
Else
  IfWindowOpen>Google - Internet Explorer
     //Google is open - do that 
  Endif
Endif

//Method Two - Look at the Actual URL in the URL bar - I used the Wizard to get this code and then altered the window title to make it a substring match
UIGetValue>- Internet Explorer*,{"Address"},curVals,Positions,nHeight
Position>google.co.uk,curVals,1,pGoogle
If>pGoogle>0
  //must be at google
Else
  //must be somewhere else
  Position>bing.com,curVals,1,pBing
  If>pBing>0
    //must be at bing
  Endif
Endif

August 7, 2014

Macro Scheduler Referral Program

Filed under: Announcements — Marcus Tettmar @ 2:08 pm

Want to earn a little extra cash? If you are a registered Macro Scheduler user, you can now recommend Macro Scheduler to your friends, colleagues, customers – or anyone else – and we’ll give you 20% of every sale you generate.

You’ll find details in your account at http://customer.mjtnet.com/

July 24, 2014

Success Story: Automating Certificate Exports for a Bank

Filed under: General, Macro Recorder, Success Stories — Marcus Tettmar @ 6:32 pm

My recent newsletter with the screen-cast of the old Windows 3.1 Macro Recorder prompted the following email from long time customer, Ian. In his email he reminisces about how he originally found and used Macro Scheduler to solve a thorny problem for his employer which had previously stumped Microsoft. It’s a good story so I thought I’d share:

Hi Marcus,

I wanted to take a moment to say thank you for the upgrade to Macro Scheduler you sent me this afternoon. I’ve installed it and had a look at the sample scripts – I think I’m going to have fun with the image stuff J

Since it’s been so long, I think I am now able (if you are not bored silly) to explain how I used Macro Scheduler to save the bank a bucket of money…

I joined [large well known international banking group – name removed] as a ‘technical discovery analyst’ in the XP roll out project. No one ever explained exactly what my job was, but it turned out to be ‘sh!t catcher’ – anything that couldn’t be sorted elsewhere ended up on my desk and I had to find a fix (often in less than a day!).

The bank used a well known credit checking agency to do credit checks. In those days [well known credit checking agency] used Security Certificates in Internet Explorer to track billing data – each cert was a unique valuable entity, and we had two options; export them from the machines prior to switching them out, or reissue 10,000 certs! This is the task that Microsoft came in to do (they left about a month before I joined). The problem was that the certs are designed not to be exportable automatically, so that they cannot be programmatically stolen. And so they arrived on my desk.

Since I knew that I had to get a lot of people to run through a complex export procedure (much clicking and saving in the right place), I thought back to the Macro Recorder in Win 3.1. I knew that it wasn’t in NT or 2000 (which was in use at the time) and a quick Google brought me to your site. I popped downstairs to ask my boss for a hundred pounds for a proof of concept (!) and she gave me her bank credit card :-).

Once I had the software installed on my workstation I began to hack through the samples and the manual. By the end of the first day I had a pretty good idea of what I had to do, and at close of play on the next day I had successfully exported and reimported certificates. I was able to go back downstairs and say that I had a viable solution. Much Brownie Points for that conversation!

The export script had 19 versions by the end, and the import one had 11 (the users ran the export first, then the import on their new machine). I’ll attach the last version so you can wince at my cludgy code!

I also wrote a script to find out how much file data was on local machines since it was going to be dumped onto FP servers. That one’s an even bigger bowl of spaghetti code J

Anyway, I’m sure that’s enough for now! Thanks again and I’ll continue to spread the word about Macro Scheduler.

Take care, Ian

July 23, 2014

July 16, 2014

Happy Customers

Filed under: General — Marcus Tettmar @ 4:12 pm

Don’t do this often but wanted to share with you a couple of emails we received recently which really made our day:

“Absolutely brilliant! This is the best customer support by far that I have experienced!:)” Madars Opelts, Owner of Giraffe Visual

“This is one of the best support experiences I’ve ever had. Thank you!” Chris Wahl, President Wahl Network, LLC

It’s good to know we have helped, and it really means a lot to receive messages like this. Thanks for sharing Madars and Chris and thanks for the permission to repost.

July 15, 2014

The Google Dance

Filed under: Macro Recorder, Uncategorized — Marcus Tettmar @ 2:45 pm

I’ve never really worried too much about SEO for mjtnet.com. We’ve certainly never done anything black hat or spammy.

All we’ve ever done really is made sure we have contextual content on the site that caters to human beings and does all the obvious things like make sure we have our important key phrases in the text of the page.

But earlier this year I became aware that our organic search traffic had declined. And looking at the trend over time I realised that our rankings for keywords like “Macro Recorder” had taken a tumble just after Google’s Panda update in 2011 and then again with Penguin in 2012.

I felt a little silly. I should have noticed at the time. But I guess I was focused on other things. I remember reading about Panda and Penguin and sniggering quietly to myself whenever I heard that someone who had employed dubious SEO methods had been penalised. Little did I know that somehow we’d suffered too!

I’m not really sure why this is. Like I said we’ve never done anything black hat. We’ve never bought links.

Our domain has existed since 1997. We’ve been around a long time in Internet terms. In the early days of the web there was no Google. There wasn’t even a proper search engine. If you sold software what you did was upload your trial (or shareware) versions to a number of download sites. That’s how people found our software.

Over the years we’ve continued to list our software on download sites but their importance has diminished while search engines, and more recently Google, have become the most important way to be found.

Many of the download sites have suffered as a result and have resorted to dubious means, such as forcing downloaders to use their own installers which bundle downloads with adware and browser extensions.

I wonder if we have been penalised for our association with these sites. Once our software is out in the wild, we have little to no control over who lists it, so it seems a bit unfair if it is the case that our rankings have suffered because of these sites.

In the mean time competitors have appeared who seem to rank better for some of our key phrases, despite having fewer back links, and less longevity and in some cases less context for the key terms.

We’re doing our best to fix that but there’s not a huge amount we can do other than keep writing content and keep helping our customers and hope that they share and bookmark our web pages and blog posts – hint hint ;-).

Frustrating. But that’s life these days I guess. We dance for the Google god.

July 3, 2014

Remember The Macro Recorder in Windows 3.1?

Filed under: General, Macro Recorder, Pointless but Fun — Marcus Tettmar @ 1:17 pm

Who even remembers Windows 3.1?  Yes, before Windows 95.  Yes, there was a Windows before Windows 95.  And it had a built in Macro Recorder.

Just for fun I dug out an old copy of Windows 3.1 and installed it into a VM.  Here I am recording and replaying a macro using the Windows 3.1 Macro Recorder:

As you can see it was pretty simple. Useful though. And then when Windows 95 came along the Macro Recorder was gone! Luckily along came Macro Scheduler with it’s own Macro Recorder 🙂

Yes I’m human. You’re paranoid.

Filed under: General, Macro Recorder — Marcus Tettmar @ 9:39 am

Remember the good old days of corner shops? Long before we went to enormous super markets. The days before aisles and aisles of products that we just help ourself to? Back then you’d walk into a store and the shop keeper, who was probably the owner, would be stood behind a counter and he’d greet you with a polite “Good morning? Anything I can help you with?”. Those were the days.

Things are a little different today aren’t they. In some ways. In others not so much.

Quite likely the majority of on-line stores and websites are run by small businesses. The owner of the business sat at a desk dealing with email enquiries and so forth. Why shouldn’t that person offer to help one of his website visitors? Just like the good old days.

We do exactly that. We run a live chat system on our web site. It has the ability to offer a proactive chat window to people who have spent some time on the page. This allows us to offer them a hand.

The majority of people we’ve spoken to absolutely LOVE this.  They love getting the proactive help, before they have to ask for it. It usually gets people what they need really fast. And we enjoy chatting to people. Overall it’s a win for everyone.

But a large minority of people appear to be very suspicious.

Notice the “Yes, I’m a human – try me!” statement in the window above.  I added this because people would often say something like “You’re a bot!”.

I’m not convinced it helps.  Some people either say “Ha ha, you’re not human!”, followed more often than not by something rude, or they’ll take the challenge and give us a Turing test, ask us a mathematical question or something.  This can be amusing some times but when you have lots of people to help it can also be a bit of a time sink.

Yesterday while Dorian was on live chat someone asked if he was an employee of the company. He said “Yes, can I help you?” and the response was “I don’t believe you”. Yet on our about page you’ll see his bio. Sigh.

I find this all quite sad, but I suppose it is a reflection of the world we live in today. Perhaps it is due to sneaky pop-ups and pop-unders which were often used to generate traffic or get you to sign up to something. Google has largely put paid to most of that now though. And anyway, I would have thought that a pretty clean looking window like the one above which appears INSIDE our web site and offers help would look far more legit than those sorts of things.  Or maybe it’s just because we sell automation software, so they think we’ve written a macro to talk to them!

You do get some funny things. The other day someone in Australia used the live chat window to ask me for a crack! I couldn’t believe it. I asked if him if he really though the founder of the business would give him a crack for Macro Scheduler. He then told me he thought it was a bot and was very embarrassed. Embarrassed? He wants a crack.  He appears happy to download something obtained using a stolen credit card (no one actually *cracks* software any more – it’s easier to buy stolen credit card numbers apparently – but that’s another rant) but feels uncomfortable asking the person who was defrauded. And I’m not sure what he thought a bot would tell him anyway.

It’s frustrating that a handful of people are so suspicious when all you want to do is help.  The way I see it we’re just doing what the old store keepers used to do.

What I don’t get is why people who think it’s a bot bother to write anything at all and don’t just ignore it or close it.  Wait, I get it – perhaps they WANT to talk to a robot! Maybe we should offer them a choice – “Do you want to talk to a human or a robot?”.  After all they are probably at our site because they are looking for a Macro Recorder! 🙂

Anyway most people love it. We love it. We’ll continue doing our old-school shop keeper routine. It’s all part of the service!

June 27, 2014

It’s a Macro Recorder, It’s a Windows Automation Tool. It’s Macro Scheduler!

Filed under: Macro Recorder, Uncategorized — Marcus Tettmar @ 8:22 am

I usually write about technical stuff here in this blog, but today I have my marketing hat on and I’m thinking about how we describe our favourite piece of software.

Up in the sky, look: It’s a bird. It’s a plane. It’s Superman!

A while ago I asked in the forums how people described Macro Scheduler. Do they call it a Macro Recorder, Windows Automation Tool, Scripting Language, or something else altogether?

Interestingly the winner was scripting language! followed closely by automation tool.

The forums are mostly read by existing users and those who responded to the question were mostly old hands.

I suspect if we asked relative newcomers, they would be more likely to answer Macro Recorder, or Windows Automation tool.

Does it matter? Well, to existing users, those of us already benefiting from the tool, what we call it probably doesn’t matter too much. Personally, I prefer the term Windows Automation Tool. But from a marketing perspective it matters more.

You see, far more people search Google for Macro Recorder (and similar terms) each month than Windows Automation based phrases. An order of magnitude more. Both terms describe a tool for performing automation, so both terms attract people who would benefit from the software.

And since more people search for Macro Recorder related terms it is important that we use those terms on our website. We all want more people to benefit from the software don’t we? We all want the community to grow. And we want the business to grow and be here in another 17 years (yes, we’ve been continuously improving and supporting Macro Scheduler since 1997 and we are still going strong).

We use an email support system called Help Scout (it’s brilliant by the way, if you’re looking for a way to support your customers we recommend it).

When Help Scout started out they wanted to build an email only, personalised support system which treated customers like people not numbers. So when they started out they didn’t use terms like Help Desk or Ticketing System. In their minds it was quite different. They didn’t think of it as a ticketing system.

However, when they started trying to get the word out and marketing it they realised they would have to use terms like help desk and ticketing system or no one would ever find them. And at the end of the day it IS a help desk. Just a different one. A better one.

Macro Scheduler, at its most basic level, is a macro recorder. Just a different one. A far more capable and flexible one with many more features to aid automation of software.

When it comes to marketing it seems it’s not how WE describe it that matters, it’s what people are looking for that is important. Assuming of course we have something that solves their problem.

I suspect that many of those who answered Windows Automation or Scripting Tool in the forum may well have originally found us way back by using more common terms like macro software or macro recorder.

What do you call it when you tell others about it? If you had to describe it in two or three words? And do you remember how you found us?