Tag Archives: flash

Finding a specific node in an AS3 XML object

Continuing with my updating an Actionscript 2 project to Actionscript 3 I’m really enjoying the optimisation possibilities.
For example, In my as2 code I had a recursive method for finding a node.

// recursive node search
private function findNode(n:XMLNode,name:String,attname:String,attdata:String):XMLNode{
var xNode:XMLNode;
if(n.hasChildNodes()){
for(var i = 0; i < n.childNodes.length; i++){
if(n.childNodes[i].nodeName == name){
if(n.childNodes[i].attributes[attname] == attdata){
xNode = n.childNodes[i];
}
}
if(xNode != undefined){
break;
}else if(n.childNodes[i].hasChildNodes()){
xNode = [...]

Posted in Code, flash | Also tagged , , 1 Comment

mp3 music player released on ActiveDen

Today my newest Flash file was released on ActiveDen.net. It is an mp3 player with an attached album and artist library. It is designed to be added to full flash web sites (like those built using my templates) and can handle a lot of music with an accordion style interface for collapsing and expanding artist [...]

Posted in projects | Also tagged , , , Leave a comment

SEO, small business and Flash

Whilst waiting for Google to discover my basic attempt at SEO for Flash I hav been scouring the web and getting a better idea of progress down this road. What I’ve discovered is:

There are already some great solutions out there (isn’t it always the way), but these are relatively recent – mid 2007 is the [...]

Posted in SEO, flash | Also tagged , , , Leave a comment

Where in the world is Sonia Kruschev?

I recently added a flash site template to my Flashden.net folio and it seems to be selling quite well which is great. However I can’t ignore the fact that like most Flash sites it probably won’t be easily discovered by Google. With SEO being forefront in peoples minds nowadays when creating even the most simple [...]

Posted in SEO, flash | Also tagged , , 3 Comments