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.

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

Posted by thornyeternity in ActionScript 3 Snippets on 16. Apr, 2009 | 0 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 | 0 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 | 0 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 | 0 Comments

Easy way to animate text with code.

Implementing Double_Click Event with AS3

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

The missing detail from Adobe’s ‘help”.

Html tags in Xml for Flash (AS2)

Posted by thornyeternity in Flash on 14. Apr, 2009 | 0 Comments

Formatting xml with html tags with ActionScript 2.

StageListeners – Fluid Layout (fill class as basis to position items)

Posted by thornyeternity in ActionScript 3 Snippets on 06. Apr, 2009 | 0 Comments

Full class to use for creating liquid layouts (AS3).