Category: General

Code Wizard Ideas

November 18, 2011 by Marcus Tettmar in Announcements, General

Hopefully by now you’ve had a chance to check out the new code wizards in Macro Scheduler 13. I know some of you are already using them and we’ve had some fantastic feedback about how much they will simplify and speed up code creation. I forgot to mention in my newsletter that we’d like to […]

Read more »

What happened to good manners?

November 9, 2011 by Marcus Tettmar in General

We are trialling a new live chat support system. It seems to be really popular. People seem to love getting answers quickly. Of course it keeps us busy, but I do love talking to our software users and prospective customers. The majority of people are polite and courteous. But I am amazed at a small […]

Read more »

LinkedIn Products and Services Page

October 31, 2011 by Marcus Tettmar in General

I’ve only recently discovered that LinkedIn lets you create company profile pages. As if there’s not enough stuff to keep up with. Social Networking is becoming a full time job. Anyhow, not wanting to be left out, I’ve created a company profile for MJT Net Ltd and have added Macro Scheduler as a product. It’s […]

Read more »

13 – Lucky for Some?

September 22, 2011 by Marcus Tettmar in General

I’ve posted a poll over on the Macro Scheduler Facebook page to find out what people think about the next version of Macro Scheduler being v13. It’s a bit of fun really but I’d be interested to see what people think. Maybe you think it’s unlucky, maybe it’s lucky. But even if you’re not superstitious […]

Read more »

MJTNet YouTube Channel

September 2, 2011 by Marcus Tettmar in Announcements, General

We now have a YouTube Channel. And today I have uploaded all our current tutorials there. The videos are still available on our web site in the usual place but we will also add future videos to YouTube and if you subscribe you will then get a notification when a new video is added. Plus […]

Read more »

LinkedIn Anyone?

September 1, 2011 by Marcus Tettmar in General

Are you on LinkedIn? If you are, please connect with me there. My profile URL is http://uk.linkedin.com/in/marcustettmar. Make sure to add a note to say you’re a Macro Scheduler user so I know it isn’t a random request, and I’ll add you. See you there. 🙂

Read more »

Comparing Old and New – Why Upgrade?

August 25, 2011 by Marcus Tettmar in General

I was helping a customer out today who is still using Macro Scheduler version 9. I hadn’t looked at version 9 for a long while and using it made me realise how much of an improvement the current version (12) is, especially in regards to the debugger. Version 9 – released 5 years ago now […]

Read more »

Over 30,000 Forum Posts

July 14, 2011 by Marcus Tettmar in General

Quoting JRL on the forums this morning: Just noticed the forum recently surpassed 30,000 articles. That’s a lot of shared knowledge. Good job everyone It is indeed. What’s more is that forum posts almost always result in success for the original poster – i.e. they find out how to achieve their aims or learn something […]

Read more »

Calling Macro Scheduler Functions from PowerShell

June 13, 2011 by Marcus Tettmar in General, Scripting

Further to my post about the MacroScript SDK the other day, here’s an example of loading the MacroScript SDK COM object from PowerShell and running some Macro Scheduler code: $objMS = new-object -comobject “mscript.macroscript” $objMS.Init() $objMS.RunCode( “Run>notepad.exe” + [Environment]::NewLine + “WaitWindowOpen>Untitled – Notepad” + [Environment]::NewLine + “Wait>0.5” + [Environment]::NewLine + “Send>Hello World”, “”) $objMS.Cleanup() You […]

Read more »