Recently Added

Water with Bubbles Free Background Image

Posted by thornyeternity in Freebies on 15. Dec, 2009 | Comments Off

Looping an FLV video

Posted by thornyeternity in ActionScript 3 Snippets, Code, Flash on 07. Dec, 2009 | Comments Off

FLV Playback component is named “myvideo”
myvideo.addEventListener(Event.COMPLETE, doLoop);
function doLoop(event:Event):void{
myvideo.autoRewind=true;
myvideo.play();
}

Broken Glass Seamless Tile – free download

Posted by thornyeternity in Freebies on 24. Nov, 2009 | Comments Off

1118 x 746 pixel abstract image made from broken glass to use as a seamless tiling background image, texture overlay or such.

Landscapes – free photos for download

Posted by Michele in Freebies on 24. Oct, 2009 | No Comments

We have found that a lot of the time you work on a design for a client and you need a photograph of a certain area, like a city or town. Here are some photos of landscapes and cityscapes that are available for download. You can use these in anything you like – web design, [...]

Useful CSS, Jquery & HTML references

Posted by Michele in Code on 29. Sep, 2009 | No Comments

I am always finding tutorials or references, but by the time I want to use them I can’t ever seem to find them.  I am starting this page so I can keep track of them, hopefully this way I will manage to find them again when I need them.
Smashing Magazine

50 useful new jquery techniques
45 new [...]

Preventing Text Field Blocking MouseClicks

Posted by Michele in ActionScript 3 Snippets on 16. Apr, 2009 | No Comments

A solution for text fields stopping mouse clicks.

Easy re-usable function to creat customisable text fields on the fly.

Posted by thornyeternity in ActionScript 3 Snippets on 16. Apr, 2009 | No Comments

Re-usable function allowing one to quickly create text fields dynamically as needed. Saves time.

3 Text Handling Methods – Input Text, Selecting Text, Returning text

Posted by thornyeternity in ActionScript 3 Snippets on 16. Apr, 2009 | No Comments

3 useful text tips – creating input text field, selecting all text in a field when user clicks it, returning a string value.

AS3 Form Validation – email address and filled field

Posted by thornyeternity in ActionScript 3 Snippets on 16. Apr, 2009 | No Comments

Checking if email address is valid and that fields are filled in (and not with spaces).

Animating Dynamic text onto the screen letter by letter

Posted by thornyeternity in ActionScript 3 Snippets on 16. Apr, 2009 | No Comments

Easy way to animate text with code.