Tag: denverapps


Ipoint interface | ActionScript 3.0 AS3

It amazes me that ActionScript (AS3) does not have interfaces listed for all its classes. Often you want to create a class that inherits from something like MovieClip and MovieClip inherits all the way down a long list of classes. So you are left with ...

Comment guerrilla activism

Published originally on flash-actionscript-guru.com in 2008. This article is quite dated and is now standard practice for what is today called "activist trolling." Internet Guerrilla Activism: Using Internet Reviews and Comments to Hit Them Where It...

Reset Drupal MySQL password | Drupal 6 | SQL

If you have access to mysql through the root user and want to just change the drupal database user this will work for you. Otherwise check out [http://www.thegeekstuff.com/2009/07/how-to-reset-forgot-mysql-root-password-on-unix-linux-windows/](http...

Hide a block on all admin pages | Drupal 6

There are two main ways to do disable a certain block on all admin pages. The first way involves using the administrative tools provided in the backend. The second uses custom script. -----------------------------------option 1 -----------------------...

Merge documentation | Mailchimp | Drupal

If anyone has more complete information on this subject please comment below. If you installed the drupal MailChimp Module you might want to know how to "Merge Variables" If you were like me you created a list on mailchimp Added the Drupal Mai...

Multiple row ul | Multi-line list | CSS | HTML

I wanted to have a list where each element wrapped according to its containers dimensions. Lets start first with the problem I had, then move on to the solution. So if you want the list to conform to the box and put as many list elements (LI) on each ...

Bare bones Drupal theme | Custom Drupal theme

If you have ever tried to develop a Drupal theme from scratch or used the Garland theme or any other standard theme that comes with Drupal to build a custom theme, then we share the same pain. The first site I developed I customized a template but the ...

Detecting an iframe with JavaScript

How do you tell if your content has loaded into an IFRAME container? I use a very simple JavaScript to detect an IFRAME. This can be used to determine if some one is loading your content into their external page without cross domain permisions...

How to recursively traverse an XML object in AS3

I found lots of examples on how to recusively parse through an XML object using E4X in ActionScript 3 (AS3). None of these examples were very simple or to the point. Most relied on the specifics of the XML instead of making general code that could acce...

Tree menu with ActionScript AS3

##An Example of How to Customize a Tree Component## I came across some open source code developed by Yahoo! called the Yahoo Atra components. VERY HARD TO CUSTOMIZE! I found the documentation to be particularly inadequate for the degree that I wanted t...

Code for a resizable window in AS3

Flex handles window resizing really well so there is little need anymore to program your own custom window code. But for those of you who want a manually resizable window without loading some massive amount of flex code just to get resizable window cod...