Removing “Private” and “Protected” from WordPress post titles
Here is a great snippet of code that removes “Private” and “Protected” from your password protected posts in WordPress. Just drop it into your functions.php file. (more…)
Here is a great snippet of code that removes “Private” and “Protected” from your password protected posts in WordPress. Just drop it into your functions.php file. (more…)
I was looking around on Facebook today and after about 6 random links ended up on a website for a local marketing/media broker company. I was looking through the links…
Functions (aka methods) are the bread and butter of any application. Without them you can’t do much of anything. So I thought I would show you how to write one.
We were approached to create a new look for Veritas Canada a high-profile PR and Marketing company in Toronto. We had the interesting task of creating a website for a company with a series of distinct and very different divisions. (more…)
I am loving the stupid names I’ve been using for these posts. Pretty soon you’ll have no idea what I am talking about.
In my last post, I showed you have to create a new class and the topic of access modifiers was mentioned. I would like to expand on that topic and use it to introduce a new one for class creation.
As you can tell by the horribly cheesy name of this post, this one is about classes in AS3.
For me the move to AS3 also meant the move to doing everything in class files as opposed to writing it in the on a frame of the timeline.
This was very confusing and difficult for me as I was not only learning the new syntax of AS3 but also was thrown head first into event life cycle, display list issues and other things that come along with writing classes and class packages. Stuff that I had never dealt with before (or at least didn’t know I was dealing with it).
This will be the first in a series of posts on classes in Flash and I will be learning as much as you do I’m sure. So here we go.
My wife runs a very successful clothing store in beautiful Port Carling, Ontario called Ohm Life. She asked me to help her create a website that was simple, elegant and captured the feel of her store. We came up with the look by mixing cutout elements with splashes of watercolor texture
I am very proud of the logo I created for Ohm Life when the store was first opened. It has appeared in many different places and I have created all the print elements for them. We have done, awnings, door and window graphics, water bottles, business cards, and hang-tags. (more…)
Navigating to a URL in AS 2 was pretty straight forward.
getURL(“http://www.ryanwelcher.com”);
As with most things in AS3 that has changed a fair amount. It is no longer one line of code. I’ll show you everything and then walk you through it (more…)