February 9, 2007

New Direct Access Beta

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

There’s a new beta version of Direct Access available from our friends at Nagarsoft. Regular readers will probably know how much I love this productivity tool. Direct Access lets you define keyboard abbreviations for commands, applications and folders etc. Once an abbreviation is set up you can type it wherever you are, whatever application is active. It’s great – I no longer wade through long lists of shortcuts in my Start menu, and I no longer have to switch from my open windows to the desktop and scan through desktop icons. All I do when I need to start something, or open my Documents folder is type in the abbreviation and hit F12. Doesn’t matter what window happens to be in front of me. It works like a dream. And it complements Macro Scheduler nicely too. I have a number of important macros that I run several times a day. With them set up to run from a Direct Access abbreviation I just type the macro name on my keyboard and it fires up. Really very handy.

Nagarsoft want your feedback on this new beta. Details here. This version is fully compatible with Microsoft Vista.

And don’t forget that Macro Scheduler customers can get 25% off Direct Access. Log into your account to get a coupon code and find out more.

February 8, 2007

Skunkworks = Paul

Filed under: Announcements, General — Marcus Tettmar @ 3:02 pm

Some regular mjtnet.com forumites may have noticed that forum member SkunkWorks has recently become pgriffin. For those of you that don’t know, Skunkworks, according to Wikipedia, “is a term used in engineering and technical fields to describe a group within an organisation given a high degree of autonomy and unhampered by bureaucracy, tasked with working on advanced or secret projects.” Yes, SkunkWorks is actually none other than our very own Paul Griffin.

Paul started using Macro Scheduler some years ago as a customer of ours and has become a bit of an expert. For the last few years he has specialised in providing Macro Scheduler consultancy and has made his living from developing Macro Scheduler code for his clients. Under his SkunkWorks persona he has been active in our forums, providing help to other members. About a year ago Paul joined us to help out with customer support. About that time Paul had the idea for AppNavigator, and the SkunkWorks operation began developing in earnest. As you probably know from recent announcements, AppNavigator was officially unveiled a few days ago.

So Paul is now VP for AppNavigator and has cast off the SkunkWorks forum persona. So for all you forumites, pgriffin = Skunkworks. And congratulations to Paul for the official launch of AppNavigator!

February 6, 2007

Buying Macro Scheduler in Romania

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

Did you know it is now possible to purchase Macro Scheduler in Romania? Selling software in some Eastern European countries is difficult for two main reasons:

1) The local USD exchange rate means the regular USD price is much more than most can afford.
2) Credit card penetration is low.

These factors have lead to a high rate of piracy in places like Romania, where people either cannot afford, or simply don’t have the means to pay for software.

So we have teamed up with SoftMall.ro to sell Macro Scheduler in Romania. They are able to take local payment methods and Macro Scheduler is available from SoftMall.ro at 49 RON which equates to approximately $20 USD.

January 19, 2007

AppNavigator – Point and Click Enterprise Automation

Filed under: Announcements, Automation — Marcus Tettmar @ 3:07 pm

AppNavigator is a powerful new tool that lets you create automation routines graphically, without any need to write code. With this software you can create processes by highlighting screen objects and assigning actions to them. Any process can be automated based on simple graphics – by “seeing” the screen. Just show AppNavigator what to watch for, and what to click on, and build up a process based on visual cues. You can read more information here. We also have some Flash video demos available:

Creating an AppNavigator Process
Playing back an AppNavigator Process

January 11, 2007

Restart Aero Glass

Filed under: Vista — Marcus Tettmar @ 2:56 pm

Sometimes Vista appears to lose Aero Glass. Aero Glass is the fancy effect that gives windows a semi-transparent border and adds a certain gloss to the desktop. Purely aesthetic but very pleasing. But very occasionally my screen flickers and then Aero Glass gets disabled. I’m not sure why – my best guess is the memory somehow gets maxed out so Vista downgrades the display. Trouble is it doesn’t come back again automatically. I’ve always had to reboot the machine, which is annoying. But I’ve just discovered this little trick to get it back: Stop and restart the “Desktop Window Manager Session Manager” service using these commands in an elevated DOS prompt:

net stop uxsms
net start uxsms

And back comes the lovely shine! 🙂

January 3, 2007

2007 – 10 years of Macro Scheduler!

Filed under: General — Marcus Tettmar @ 3:23 pm

MJT Net Ltd, and Macro Scheduler, will be 10 years old this year. The company was officially incorporated on 15th August 1997, though Macro Scheduler itself was launched sometime in March. So 2007 will be a special year for us. When I first created Macro Scheduler back in 1997 I never imagined that it would evolve into the product it has become. The evolution of the product is largely thanks to the many wonderful users who have always offered valuable suggestions and ideas for new features. Development has always been extremely user-driven and here we are today with a superb product I can be very proud of. So, many, many thanks to everyone who has contributed with suggestions and feedback over the last ten years. It has been an amazing ride. Thanks to all who have contributed to our success so far with your custom and loyalty.

Here’s to another ten years, and more, of Macro Scheduler!

January 1, 2007

December 11, 2006

Works with Vista – Official

Filed under: Vista — Marcus Tettmar @ 2:17 pm

Works with Windows Vista We’ve recently entered the Microsoft Windows Logo Program and just obtained the Works with Vista logo for Macro Scheduler 9.0 🙂

December 7, 2006

Mindless, illogical bureaucracy

Filed under: General — Marcus Tettmar @ 10:50 am

My sister and her partner are emigrating to New Zealand. Her partner went out there a few weeks ago. In order to ensure his legal and financial affairs could be easily dealt with he gave his mother power of attorney. So he gets to New Zealand and opens a bank account, then asks his mother to transfer some money from his UK bank account to his new NZ one. His mother goes to the bank to sort this out but is told that they can’t do it because they don’t know her – she’s not the account holder. But she has power of attorney. She shows them the power of attorney papers and demonstrates that all is in order legally. Nope they won’t budge. They won’t authorise the transfer. So she has an idea – can she transfer some money from her UK account to his NZ account instead? Yes, no problem. And, as power of attorney, can she transfer money from his UK account to her UK account? Yes, no problem. Ok, job done then. Seriously. I’m not making this up.

December 5, 2006

Web Automation in Vista

Filed under: Announcements, Automation, Scripting, Vista — Marcus Tettmar @ 1:51 pm

To run WebRecorder, or VBScript macros which automate Internet Explorer in Vista (IE7), you will first need to disable “Protected Mode”. Consider this simple VBScript code:

Dim IE
Set IE = CreateObject(“InternetExplorer.Application”)
IE.Visible=1
IE.Navigate “http://www.mjtnet.com”

In IE6 and in IE7 under XP this code would create a new IE instance and then navigate it to mjtnet.com. But Vista adds something to IE called “Protected Mode” and for some reason Protected Mode causes the Navigate method to open up a new IE window. This is most annoying because it means any subsequent code in a script like the one above would fail because IE object refers to the instance created with the CreateObject call, but the page is now in the second instance.

You can disable “Protected Mode” in IE under Tools/Internet Options/Security. This puts things back to normal and means code like the above will continue to work.

One known issue with WebRecorder’s IEAuto.DLL is that the WaitNewIE function hangs when using IE7. We’re working on this now. This function is only used when an action in IE causes a new window/tab to appear. Apart from that, once you have disabled “Protected Mode” WebRecorder/IEAuto works fine with IE7/Vista.

Update: Version 1.78 is now available, fixing the issue with WaitNewIE on IE7.