Skip to main content
ColdFusion Administrator Pause Button

It's the little things that count.  If you've ever been a ColdFusion Administrator, you probably have noticed what a pain in the ass the little "pause" button is when setting a Scheduled Process on hold.

The problem is the Pause button looks almost identical to the Resume button. When looking at a list of a hundred processes, it is hard to find those that are paused and those that are not.

Here's a tiny little gem to solve that.  This is a replacement Resume button made from the original button.  Just put this image in your "/CFIDE/administrator/images/" directory as "resume.gif".  If you are on Linux you might have to adjust the permissions to match those of the other images.

Two things about it.  This isn't a GIF file (pronounced JIF) it's a PNG file.  I don't know why they do it, but the images on the CF server are PNG files that have been renamed to GIF by Adobe.  I assume it is for backwards compatibility.  So you'll have to take this PNG file and rename it to GIF before uploading it.

Which leads to the second thing.  If you are worried about security (as you should be) and don't trust that this is just an image file, Go ahead and open it in a browser or an image editor.  Just make sure you rename it to ".gif" before uploading it.

Here's the image:



You should be able to just right-click on the image above and do a "Save Image As...".

Here's a sample screenshot of the final product:

Comments

Popular posts from this blog

Dride Zero - Dashcam on Steroids

I took part in a Kickstarter project to build "The ultimate Dashcam".  One with front and back cameras that would shoot in HD, was durable and low power, and would upload video clips to the cloud with the push of a button.  We'll after waiting more than a year, they did just that.  I received my Dride Zero a couple of days ago and, other than an initial rocky "Setup" process, it has been working fantastic. This post isn't so much to talk about the Dride, you can get that information from them at https://dride.io.   This is more for those people who might run into the same issues with Setup that I had.  Hopefully this will save them some of the time I wasted trying to figure it out. Dride Zero Getting Started 1) Unpack from the shipping box.   To get started all you need at first is the Dride Camera, the powercord that has the cigarette lighter connector, and a 16Gb type 10 Micro SD card. 2) Insert the 16Gb Micro SD card in the slot on th

IOTA - A Beginner's Guide to Why IOTA Matters

IOTA is not your typical cryptocurrency.  IOTA, which typically stands for the Internet Of Things is a completely new approach to managing a blockchain. Blockchain technology is what made coins like Bitcoin (BTC) possible.  BTC is just a coin that uses the blockchain technology.  As I've said many times before, the "real" invention here was coming up with a blockchain that works.  To show that it works they created BTC.  The success of BTC is a very good indication of how well blockchains can work. Blockchains are what provide the audit trail of each transaction.  It is what allows you to purchase a digital "product" and be assured that the product is authentic and that you are the only one who owns that particular product.  It is what allows us to use BTC as money because it protects against counterfeiting.  Blockchains do have their limitations, most notably transaction speed, and IOTA solves these limitations.  This is hugely important because almost

Sending SMS/MMS text messages via Twilio and ColdFusion in 5 minutes or less

Wow, almost exactly a year since my last post.   How some things change and other things don't. On the one hand my father has passed away almost a year ago and that has left a big hole in our lives.  On the other hand a year ago BitCoin was at it's peak and was days away from jumping off the cliff.  Well it fell from about $19,000 all the way to $6000 where it has held for many months...until yesterday when it jumped off the cliff again.  On to Twilio - I'm blown away with how easy it is to get communication components accomplished with Twilio.  We are using it for normal SMS text messages at TapCloud.  We also use it to send out our Authy based 2-Factor authentication tokens, and we are starting to use it for peer-to-peer and one-to-many video conferencing. One of the great things about Twilio is just how easy it is to use.  Here's an example of just a handful of code that will let you go from start to finish so you'll be sending out MMS messages in about 5 m