Buy my work at:
Folio
This folio is for prospective clients. Curious visitors can view a small selection of my work by logging in with username guest and password user.
-
Recent Posts
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 = [...]
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 [...]
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 DIY web development, SEO, small business, SWFaddress
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 [...]
